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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
|
# Miro - an RSS based video player application
# Copyright (C) 2005-2008 Participatory Culture Foundation
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
#
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
"""util.py -- Utility functions.
This module contains self-contained utility functions. It shouldn't import
any other Miro modules.
"""
import os
import random
import re
import sys
import sha
import time
import string
import urllib
import socket
import logging
from miro import filetypes
import tempfile
import threading
import traceback
import subprocess
from types import UnicodeType, StringType
# Should we print out warning messages. Turn off in the unit tests.
chatter = True
# Perform escapes needed for Javascript string contents.
def quoteJS(x):
x = x.replace("\\", "\\\\") # \ -> \\
x = x.replace("\"", "\\\"") # " -> \"
x = x.replace("'", "\\'") # ' -> \'
x = x.replace("\n", "\\n") # newline -> \n
x = x.replace("\r", "\\r") # CR -> \r
return x
def getNiceStack():
"""Get a stack trace that's a easier to read that the full one. """
stack = traceback.extract_stack()
# We don't care about the unit test lines
while (len(stack) > 0 and
os.path.basename(stack[0][0]) == 'unittest.py' or
(isinstance(stack[0][3], str) and
stack[0][3].startswith('unittest.main'))):
stack = stack[1:]
# remove after the call to signals.system.failed
for i in xrange(len(stack)):
if (os.path.basename(stack[i][0]) == 'signals.py' and
stack[i][2] in ('system.failed', 'system.failedExn')):
stack = stack[:i+1]
break
# remove trapCall calls
stack = [i for i in stack if 'trapCall' in i]
return stack
# Parse a configuration file in a very simple format. Each line is
# either whitespace or "Key = Value". Whitespace is ignored at the
# beginning of Value, but the remainder of the line is taken
# literally, including any whitespace. There is no way to put a
# newline in a value. Returns the result as a dict.
def readSimpleConfigFile(path):
ret = {}
f = open(path, "rt")
for line in f.readlines():
# Skip blank lines
if re.match("^[ \t]*$", line):
continue
# Otherwise it'd better be a configuration setting
match = re.match(r"^([^ ]+) *= *([^\r\n]*)[\r\n]*$", line)
if not match:
print "WARNING: %s: ignored bad configuration directive '%s'" % (path, line)
continue
key = match.group(1)
value = match.group(2)
if key in ret:
print "WARNING: %s: ignored duplicate directive '%s'" % (path, line)
continue
ret[key] = value
return ret
# Given a dict, write a configuration file in the format that
# readSimpleConfigFile reads.
def writeSimpleConfigFile(path, data):
f = open(path, "wt")
for (k, v) in data.iteritems():
f.write("%s = %s\n" % (k, v))
f.close()
# Called at build-time to ask Subversion for the revision number of
# this checkout. Going to fail without Cygwin. Yeah, oh well. Pass the
# file or directory you want to use as a reference point. Returns an
# integer on success or None on failure.
def queryRevision(f):
try:
p = subprocess.Popen(["svn", "info", f], stdout=subprocess.PIPE)
info = p.stdout.read()
p.stdout.close()
url = re.search("URL: (.*)", info).group(1)
url = url.strip()
revision = re.search("Revision: (.*)", info).group(1)
revision = revision.strip()
return (url, revision)
except KeyboardInterrupt:
raise
except:
# whatever
return None
# 'path' is a path that could be passed to open() to open a file on
# this platform. It must be an absolute path. Return the file:// URL
# that would refer to the same file.
def absolutePathToFileURL(path):
if isinstance(path, unicode):
path = path.encode("utf-8")
parts = string.split(path, os.sep)
parts = [urllib.quote(x, ':') for x in parts]
return "file://" + '/'.join(parts)
# Shortcut for 'failed' with the exception flag.
def failedExn(when, **kwargs):
failed(when, withExn = True, **kwargs)
# Puts up a dialog with debugging information encouraging the user to
# file a ticket. (Also print a call trace to stderr or whatever, which
# hopefully will end up on the console or in a log.) 'when' should be
# something like "when trying to play a video." The user will see
# it. If 'withExn' is true, last-exception information will be printed
# to. If 'detail' is true, it will be included in the report and the
# the console/log, but not presented in the dialog box flavor text.
def failed(when, withExn = False, details = None):
logging.warn("util.failed is deprecated. Use system.signals.failed\n"
"stack:\n%s" % ''.join(traceback.format_stack()))
from miro import signals
signals.system.failed(when, withExn, details)
class AutoflushingStream:
"""Converts a stream to an auto-flushing one. It behaves in exactly the
same way, except all write() calls are automatically followed by a
flush().
"""
def __init__(self, stream):
self.__dict__['stream'] = stream
def write(self, data):
if isinstance(data, unicode):
data = data.encode('ascii', 'backslashreplace')
self.stream.write(data)
self.stream.flush()
def __getattr__(self, name):
return getattr(self.stream, name)
def __setattr__(self, name, value):
return setattr(self.stream, name, value)
def makeDummySocketPair():
"""Create a pair of sockets connected to each other on the local
interface. Used to implement SocketHandler.wakeup().
"""
dummy_server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
dummy_server.bind( ('127.0.0.1', 0) )
dummy_server.listen(1)
server_address = dummy_server.getsockname()
first = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
first.connect(server_address)
second, address = dummy_server.accept()
dummy_server.close()
return first, second
def getTorrentInfoHash(path):
import miro.libtorrent as lt
f = open(path, 'rb')
try:
data = f.read()
metainfo = lt.bdecode(data)
infohash = sha.sha(lt.bencode(metainfo['info'])).digest()
return infohash
finally:
f.close()
class ExponentialBackoffTracker:
"""Utility class to track exponential backoffs."""
def __init__(self, baseDelay):
self.baseDelay = self.currentDelay = baseDelay
def nextDelay(self):
rv = self.currentDelay
self.currentDelay *= 2
return rv
def reset(self):
self.currentDelay = self.baseDelay
# Gather movie files on the disk. Used by the startup dialog.
def gatherVideos(path, progressCallback):
from miro import prefs
from miro import config
keepGoing = True
parsed = 0
found = list()
try:
for root, dirs, files in os.walk(path):
for f in files:
parsed = parsed + 1
if filetypes.isVideoFilename(f):
found.append(os.path.join(root, f))
if parsed > 1000:
adjustedParsed = int(parsed / 100.0) * 100
elif parsed > 100:
adjustedParsed = int(parsed / 10.0) * 10
else:
adjustedParsed = parsed
keepGoing = progressCallback(adjustedParsed, len(found))
if not keepGoing:
found = None
raise
if config.get(prefs.SHORT_APP_NAME) in dirs:
dirs.remove(config.get(prefs.SHORT_APP_NAME))
except KeyboardInterrupt:
raise
except:
pass
return found
def formatSizeForUser(bytes, zeroString="", withDecimals=True, kbOnly=False):
"""Format an int containing the number of bytes into a string suitable for
printing out to the user. zeroString is the string to use if bytes == 0.
"""
from miro.gtcache import gettext as _
if bytes > (1 << 30) and not kbOnly:
value = (bytes / (1024.0 * 1024.0 * 1024.0))
if withDecimals:
format = _("%1.1fGB")
else:
format = _("%dGB")
elif bytes > (1 << 20) and not kbOnly:
value = (bytes / (1024.0 * 1024.0))
if withDecimals:
format = _("%1.1fMB")
else:
format = _("%dMB")
elif bytes > (1 << 10):
value = (bytes / 1024.0)
if withDecimals:
format = _("%1.1fKB")
else:
format = _("%dKB")
elif bytes > 1:
value = bytes
if withDecimals:
format = _("%1.1fB")
else:
format = _("%dB")
else:
return zeroString
return format % value
def formatTimeForUser(seconds, sign=1):
"""Format a duration in seconds into a string suitable for display, using
the minimum amount of digits. Negative durations used for remaining times
display a '-' sign.
"""
_, _, _, h, m, s, _, _, _ = time.gmtime(seconds)
if sign < 0:
sign = '-'
else:
sign = ''
if int(seconds) in range(0, 3600):
return "%s%d:%02u" % (sign, m, s)
else:
return "%s%d:%02u:%02u" % (sign, h, m, s)
def makeAnchor(label, href):
return '<a href="%s">%s</a>' % (href, label)
def makeEventURL(label, eventURL):
return '<a href="#" onclick="return eventURL(\'action:%s\');">%s</a>' % \
(eventURL, label)
def clampText(text, maxLength):
if len(text) > maxLength:
return text[:maxLength-3] + '...'
else:
return text
def print_mem_usage(message):
pass
# Uncomment for memory usage printouts on linux.
# print message
# os.system ("ps huwwwp %d" % (os.getpid(),))
class TooManySingletonsError(Exception):
pass
def getSingletonDDBObject(view):
view.confirmDBThread()
viewLength = view.len()
if viewLength == 1:
view.resetCursor()
return view.next()
elif viewLength == 0:
raise LookupError("Can't find singleton in %s" % repr(view))
else:
msg = "%d objects in %s" % (viewLength, len(view))
raise TooManySingletonsError(msg)
class ThreadSafeCounter:
"""Implements a counter that can be access by multiple threads."""
def __init__(self, initialValue=0):
self.value = initialValue
self.lock = threading.Lock()
def inc(self):
self.lock.acquire()
try:
self.value += 1
finally:
self.lock.release()
def dec(self):
self.lock.acquire()
try:
self.value -= 1
finally:
self.lock.release()
def getvalue(self):
self.lock.acquire()
try:
return self.value
finally:
self.lock.release()
def setupLogging():
logging.addLevelName(25, "TIMING")
logging.timing = lambda msg, *args, **kargs: logging.log(25, msg, *args, **kargs)
logging.addLevelName(26, "JSALERT")
logging.jsalert = lambda msg, *args, **kargs: logging.log(26, msg, *args, **kargs)
# Returned when input to a template function isn't unicode
class DemocracyUnicodeError(StandardError):
pass
# Raise an exception if input isn't unicode
def checkU(text):
if text is not None and type(text) != UnicodeType:
raise DemocracyUnicodeError, (u"text \"%s\" is not a unicode string" %
text)
# Decorator that raised an exception if the function doesn't return unicode
def returnsUnicode(func):
def checkFunc(*args, **kwargs):
result = func(*args,**kwargs)
if result is not None:
checkU(result)
return result
return checkFunc
# Raise an exception if input isn't a binary string
def checkB(text):
if text is not None and type(text) != StringType:
raise DemocracyUnicodeError, (u"text \"%s\" is not a binary string" %
text)
# Decorator that raised an exception if the function doesn't return unicode
def returnsBinary(func):
def checkFunc(*args, **kwargs):
result = func(*args,**kwargs)
if result is not None:
checkB(result)
return result
return checkFunc
# Raise an exception if input isn't a URL type
def checkURL(text):
if type(text) != UnicodeType:
raise DemocracyUnicodeError, (u"url \"%s\" is not unicode" %
text)
try:
text.encode('ascii')
except:
raise DemocracyUnicodeError, (u"url \"%s\" contains extended characters" %
text)
# Decorator that raised an exception if the function doesn't return a filename
def returnsURL(func):
def checkFunc(*args, **kwargs):
result = func(*args,**kwargs)
if result is not None:
checkURL(result)
return result
return checkFunc
# Returns exception if input isn't a filename type
def checkF(text):
from miro.platform.utils import FilenameType
if text is not None and type(text) != FilenameType:
raise DemocracyUnicodeError, (u"text \"%s\" is not a valid filename type" %
text)
# Decorator that raised an exception if the function doesn't return a filename
def returnsFilename(func):
def checkFunc(*args, **kwargs):
result = func(*args,**kwargs)
if result is not None:
checkF(result)
return result
return checkFunc
def unicodify(d):
"""Turns all strings in data structure to unicode.
"""
if isinstance(d, dict):
for key in d.keys():
d[key] = unicodify(d[key])
elif isinstance(d, list):
for key in range(len(d)):
d[key] = unicodify(d[key])
elif type(d) == StringType:
d = d.decode('ascii','replace')
return d
def stringify(u, handleerror="xmlcharrefreplace"):
"""Takes a possibly unicode string and converts it to a string string.
This is required for some logging especially where the things being
logged are filenames which can be Unicode in the Windows platform.
Note that this is not the inverse of unicodify.
You can pass in a handleerror argument which defaults to "xmlcharrefreplace".
This will increase the string size as it converts unicode characters that
don't have ascii equivalents into escape sequences. If you don't want to
increase the string length, use "replace" which will use ? for unicode
characters that don't have ascii equivalents.
"""
if isinstance(u, unicode):
return u.encode("ascii", handleerror)
if not isinstance(u, str):
return str(u)
return u
def quoteUnicodeURL(url):
"""Quote international characters contained in a URL according to w3c, see:
<http://www.w3.org/International/O-URL-code.html>
"""
checkU(url)
quotedChars = list()
for c in url.encode('utf8'):
if ord(c) > 127:
quotedChars.append(urllib.quote(c))
else:
quotedChars.append(c)
return u''.join(quotedChars)
def no_console_startupinfo():
"""Returns the startupinfo argument for subprocess.Popen so that we don't
open a console window. On platforms other than windows, this is just
None. On windows, it's some win32 sillyness.
"""
if subprocess.mswindows:
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
return startupinfo
else:
return None
def call_command(*args, **kwargs):
"""Call an external command. If the command doesn't exit with status 0,
or if it outputs to stderr, an exception will be raised. Returns stdout.
"""
ignore_stderr = kwargs.pop('ignore_stderr', False)
if kwargs:
raise TypeError('extra keyword arguments: %s' % kwargs)
pipe = subprocess.Popen(args, stdout=subprocess.PIPE,
stdin=subprocess.PIPE, stderr=subprocess.PIPE,
startupinfo=no_console_startupinfo())
stdout, stderr = pipe.communicate()
if pipe.returncode != 0:
raise OSError("call_command with %s has return code %s\nstdout:%s\nstderr:%s" %
(args, pipe.returncode, stdout, stderr))
elif stderr and not ignore_stderr:
raise OSError("call_command with %s outputed error text:\n%s" %
(args, stderr))
else:
return stdout
def getsize(path):
"""Get the size of a path. If it's a file, return the size of the file.
If it's a directory return the total size of all the files it contains.
"""
if os.path.isdir(path):
size = 0
for (dirpath, dirnames, filenames) in os.walk(path):
for name in filenames:
size += os.path.getsize(os.path.join(dirpath, name))
size += os.path.getsize(dirpath)
return size
else:
return os.path.getsize(path)
def partition(list, size):
"""Partiction list into smaller lists such that none is larger than
size elements.
Returns a list of lists. The lists appended together will be the original
list.
"""
retval = []
for start in range(0, len(list), size):
retval.append(list[start:start+size])
return retval
def directoryWritable(directory):
"""Check if we can write to a directory."""
try:
f = tempfile.TemporaryFile(dir=directory)
except OSError:
return False
else:
f.close()
return True
def random_string(length):
return ''.join(random.choice(string.ascii_letters) for i in xrange(length))
def getFirstVideoEnclosure(entry):
"""Find the first video enclosure in a feedparser entry. Returns the
enclosure, or None if no video enclosure is found.
"""
try:
enclosures = entry.enclosures
except (KeyError, AttributeError):
return None
for enclosure in enclosures:
if filetypes.isVideoEnclosure(enclosure):
return enclosure
return None
def import_last(module_name):
"""Handles runtime importing when you want to import the last module in
a list of modules.
The difference between this function and __import__ is if you do
__import__('foo.bar.baz') it will return the foo package. If you use
import_last, it will return baz.
"""
components = module_name.split('.')
mod = __import__(module_name)
for comp in components[1:]:
mod = getattr(mod, comp)
return mod
def quoteattr(orig):
orig = unicode(orig)
return orig.replace(u'"',u'"')
# Takes a string and do whatever needs to be done to make it into a
# UTF-8 string. If a Unicode string is given, it is just encoded in
# UTF-8. Otherwise, if an encoding hint is given, first try to decode
# the string as if it were in that encoding; if that fails (or the
# hint isn't given), liberally (if necessary lossily) interpret it as
# defaultEncoding, as declared on the next line:
defaultEncoding = "iso-8859-1" # aka Latin-1
_utf8cache = {}
def toUTF8Bytes(s, encoding=None):
global _utf8cache
try:
return _utf8cache[(s, encoding)]
except KeyError:
result = None
# If we got a Unicode string, half of our work is already done.
if isinstance(s, UnicodeType):
result = s.encode('utf-8')
elif not isinstance(s, StringType):
s = str(s)
if result is None and encoding is not None:
# If we knew the encoding of the s, try that.
try:
decoded = s.decode(encoding,'replace')
except (UnicodeDecodeError, ValueError, LookupError):
pass
else:
result = decoded.encode('utf-8')
if result is None:
# Encoding wasn't provided, or it was wrong. Interpret provided string
# liberally as a fixed defaultEncoding (see above.)
result = s.decode(defaultEncoding, 'replace').encode('utf-8')
_utf8cache[(s, encoding)] = result
return _utf8cache[(s, encoding)]
_unicache = {}
_escapecache = {}
def escape(orig):
global _escapecache
orig = unicode(orig)
try:
return _escapecache[orig]
except:
_escapecache[orig] = orig.replace('&','&').replace('<','<').replace('>','>')
return _escapecache[orig]
def toUni(orig, encoding = None):
try:
return _unicache[orig]
except:
if isinstance(orig, UnicodeType):
# Let's not bother putting this in the cache. Calculating
# it is very fast, and since this is a very common case,
# not caching here should help with memory usage.
return orig
elif not isinstance(orig, StringType):
_unicache[orig] = unicode(orig)
else:
orig = toUTF8Bytes(orig, encoding)
_unicache[orig] = unicode(orig,'utf-8')
return _unicache[orig]
|