/usr/share/pyshared/smart/util/strtools.py is in python-smartpm 1.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | #
# Copyright (c) 2004 Conectiva, Inc.
#
# Written by Gustavo Niemeyer <niemeyer@conectiva.com>
#
# This file is part of Smart Package Manager.
#
# Smart Package Manager is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# Smart Package Manager is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Smart Package Manager; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
from smart import _
from smart.util.distance import *
import posixpath
import string
import sys
class ShortURL(object):
def __init__(self, maxlen):
self._cache = {}
self._maxlen = maxlen
def reset(self):
self._cache.clear()
def get(self, url):
shorturl = self._cache.get(url)
if not shorturl:
if len(url) > self._maxlen and url.count("/") > 3:
dir, base = posixpath.split(url)
while len(dir)+len(base)+5 > self._maxlen:
if dir.count("/") < 3:
break
dir, _ = posixpath.split(dir)
shorturl = posixpath.join(dir, ".../", base)
else:
shorturl = url
self._cache[url] = shorturl
return shorturl
def sizeToStr(bytes):
if bytes is None:
return _("Unknown")
if bytes < 1024:
return "%dB" % bytes
elif bytes < 1024000:
return "%.1fkB" % (bytes/1024.)
else:
return "%.1fMB" % (bytes/1024000.)
def speedToStr(speed):
if speed < 1:
return _("Stalled")
elif speed < 1024:
return "%dB/s" % speed
elif speed < 1024000:
return "%.1fkB/s" % (speed/1024.)
else:
return "%.1fMB/s" % (speed/1024000.)
def secondsToStr(time):
if not time:
return _("Unknown")
elif time == 0:
return "0s"
elif time < 1:
return "1s"
else:
minutes, seconds = divmod(time, 60)
hours, minutes = divmod(minutes, 60)
if hours > 99:
return _("Stalled")
elif hours > 0:
return "%02ih%02im%02is" % (hours, minutes, seconds)
elif minutes > 0:
return "%02im%02is" % (minutes, seconds)
else:
return "%02is" % seconds
_nulltrans = string.maketrans('', '')
def isRegEx(s):
return s.translate(_nulltrans, '^{[*') != s
def isGlob(s):
return s.translate(_nulltrans, '*?') != s
def strToBool(s, default=False):
if type(s) in (bool, int):
return bool(s)
if not s:
return default
s = s.strip().lower()
if s in ("y", "yes", "true", "1", _("y"), _("yes"), _("true")):
return True
if s in ("n", "no", "false", "0", _("n"), _("no"), _("false")):
return False
return default
def printColumns(lst, indent=0, spacing=2, width=80, out=None):
maxstrlen = 0
for item in lst:
strlen = len(str(item))
if strlen > maxstrlen:
maxstrlen = strlen
perline = (width-indent)/(maxstrlen+spacing)
if perline == 0:
perline = 1
columnlen = (width-indent)/perline
numitems = len(lst)
numlines = (numitems+perline-1)/perline
blank = " "*columnlen
if out is None:
out = sys.stdout
for line in range(numlines):
out.write(" "*indent)
for entry in range(perline):
k = line+(entry*numlines)
if k >= numitems:
break
s = str(lst[k])
out.write(s)
out.write(" "*(columnlen-len(s)))
print
|