/usr/lib/python2.7/dist-packages/ufl/common.py is in python-ufl 1.4.0-1.
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 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 | "This module contains a collection of common utilities."
# Copyright (C) 2008-2014 Martin Sandve Alnes and Anders Logg
#
# This file is part of UFL.
#
# UFL is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# UFL 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with UFL. If not, see <http://www.gnu.org/licenses/>.
#
# Modified by Kristian Oelgaard, 2009
#
# First added: 2008-08-05
# Last changed: 2011-06-02
from itertools import izip
import operator
import time
# Taken from http://ivory.idyll.org/blog/mar-07/replacing-commands-with-subprocess
from subprocess import Popen, PIPE, STDOUT
def get_status_output(cmd, input=None, cwd=None, env=None):
pipe = Popen(cmd, shell=True, cwd=cwd, env=env, stdout=PIPE, stderr=STDOUT)
(output, errout) = pipe.communicate(input=input)
assert not errout
status = pipe.returncode
return (status, output)
def write_file(filename, text):
f = open(filename, "w")
f.write(text)
f.close()
def pdflatex(latexfilename, pdffilename, flags=""): # TODO: Options for this.
"Execute pdflatex to compile a latex file into pdf."
flags += "-file-line-error-style -interaction=nonstopmode"
latexcmd = "pdflatex"
cmd = "%s %s %s %s" % (latexcmd, flags, latexfilename, pdffilename)
s, o = get_status_output(cmd)
def openpdf(pdffilename):
"Open PDF file in external pdf viewer."
reader_cmd = "evince %s &" # TODO: Add option for which reader to use. Is there a portable way to do this? Like "get default pdf reader from os"?
cmd = reader_cmd % pdffilename
s, o = get_status_output(cmd)
def product(sequence):
"Return the product of all elements in a sequence."
return reduce(operator.__mul__, sequence, 1)
class EmptyDictType(dict):
def __setitem__(self, key, value):
from ufl.log import error
error("This is a frozen unique empty dictionary object, inserting values is an error.")
def update(self, *args, **kwargs):
from ufl.log import error
error("This is a frozen unique empty dictionary object, inserting values is an error.")
EmptyDict = EmptyDictType()
def sorted_by_count(seq):
return sorted(seq, key=lambda x: x._count)
def sorted_items(mapping):
return sorted(mapping.iteritems(), key=lambda x: x[0])
def mergedicts(dicts):
d = dict(dicts[0])
for d2 in dicts[1:]:
d.update(d2)
return d
def mergedicts2(d1, d2):
d = dict(d1)
d.update(d2)
return d
def subdict(superdict, keys):
return dict((k, superdict[k]) for k in keys)
def dict_sum(items):
"Construct a dict, in between dict(items) and sum(items), by accumulating items for each key."
d = {}
for k, v in items:
if k not in d:
d[k] = v
else:
d[k] += v
return d
def unzip(seq):
"Inverse operation of zip: unzip(zip(a, b)) == (a, b)"
return [s[0] for s in seq], [s[1] for s in seq]
def xor(a, b):
return bool(a) if b else not a
def or_tuples(seqa, seqb):
"Return 'or' of all pairs in two sequences of same length."
return tuple(a or b for (a,b) in izip(seqa, seqb))
def and_tuples(seqa, seqb):
"Return 'and' of all pairs in two sequences of same length."
return tuple(a and b for (a,b) in izip(seqa, seqb))
def iter_tree(tree):
"""Iterate over all nodes in a tree represented
by lists of lists of leaves."""
if isinstance(tree, list):
for node in tree:
for i in iter_tree(node):
yield i
else:
yield tree
def fast_pre_traversal(expr):
"""Yields o for each tree node o in expr, parent before child."""
input = [expr]
while input:
l = input.pop()
yield l
input.extend(l.operands())
def unique_pre_traversal(expr, visited=None):
"""Yields o for each tree node o in expr, parent before child.
This version only visits each node once!
"""
input = [expr]
visited = visited or set()
while input:
l = input.pop()
if l not in visited:
visited.add(l)
yield l
input.extend(l.operands())
fast_pre_traversal2 = unique_pre_traversal # TODO: Remove
def unique_post_traversal(expr, visited=None):
"""Yields o for each node o in expr, child before parent.
Never visits a node twice."""
stack = []
stack.append((expr, list(expr.operands())))
visited = visited or set()
while stack:
expr, ops = stack[-1]
for i, o in enumerate(ops):
if o is not None and o not in visited:
stack.append((o, list(o.operands())))
ops[i] = None
break
else:
yield expr
visited.add(expr)
stack.pop()
def fast_post_traversal2(expr, visited=None):
"""Yields o for each tree node o in expr, child before parent."""
stack = [expr]
visited = visited or set()
while stack:
curr = stack[-1]
for o in curr.operands():
if o not in visited:
stack.append(o)
break
else:
yield curr
visited.add(curr)
stack.pop()
def fast_post_traversal(expr): # TODO: Would a non-recursive implementation save anything here?
"""Yields o for each tree node o in expr, child before parent."""
# yield children
for o in expr.operands():
for i in fast_post_traversal(o):
yield i
# yield parent
yield expr
def split_dict(d, criteria):
"Split a dict d into two dicts based on a criteria on the keys."
a = {}
b = {}
for (k,v) in d.iteritems():
if criteria(k):
a[k] = v
else:
b[k] = v
return a, b
def slice_dict(dictionary, keys, default=None):
return tuple(dictionary.get(k, default) for k in keys)
def some_key(a_dict):
"Return an arbitrary key from a dictionary."
return a_dict.iterkeys().next()
def camel2underscore(name):
"Convert a CamelCaps string to underscore_syntax."
letters = []
lastlower = False
for l in name:
thislower = l.islower()
if not thislower:
# Don't insert _ between multiple upper case letters
if lastlower:
letters.append("_")
l = l.lower()
lastlower = thislower
letters.append(l)
return "".join(letters)
def lstr(l):
"Pretty-print list or tuple, invoking str() on items instead of repr() like str() does."
if isinstance(l, list):
return "[" + ", ".join(lstr(item) for item in l) + "]"
elif isinstance(l, tuple):
return "(" + ", ".join(lstr(item) for item in l) + ")"
return str(l)
def dstr(d, colsize=80):
"Pretty-print dictionary of key-value pairs."
sorted_keys = sorted(d.keys())
return tstr([(key, d[key]) for key in sorted_keys], colsize)
def tstr(t, colsize=80):
"Pretty-print list of tuples of key-value pairs."
if not t:
return ""
# Compute maximum key length
keylen = max([len(str(item[0])) for item in t])
# Key-length cannot be larger than colsize
if keylen > colsize:
return str(t)
# Pretty-print table
s = ""
for (key, value) in t:
key = str(key)
if isinstance(value, str):
value = "'%s'" % value
else:
value = str(value)
s += key + ":" + " "*(keylen - len(key) + 1)
space = ""
while len(value) > 0:
end = min(len(value), colsize - keylen)
s += space + value[:end] + "\n"
value = value[end:]
space = " "*(keylen + 2)
return s
def sstr(s):
"Pretty-print set."
return ", ".join(str(x) for x in s)
def istr(o):
"Format object as string, inserting ? for None."
if o is None:
return "?"
else:
return str(o)
def estr(elements):
"Format list of elements for printing."
return ", ".join(e.shortstr() for e in elements)
def recursive_chain(lists):
for l in lists:
if isinstance(l, str):
yield l
else:
for s in recursive_chain(l):
yield s
class ExampleCounted(object):
"""An example class for classes of objects identified by a global counter.
The old inheritance pattern is deprecated. Mimic this class instead.
"""
__slots__ = ("_count",)
_globalcount = 0
def __init__(self, count=None):
counted_init(self, count, ExampleCounted)
def count(self):
return self._count
def counted_init(self, count=None, countedclass=None):
if countedclass is None:
countedclass = type(self)
if count is None:
count = countedclass._globalcount
self._count = count
if self._count >= countedclass._globalcount:
countedclass._globalcount = self._count + 1
class Stack(list):
"A stack datastructure."
def __init__(self, *args):
list.__init__(self, *args)
def push(self, v):
list.append(self, v)
def peek(self):
return self[-1]
class StackDict(dict):
"A dict that can be changed incrementally with 'd.push(k,v)' and have changes rolled back with 'k,v = d.pop()'."
def __init__(self, *args, **kwargs):
dict.__init__(self, *args, **kwargs)
self._l = []
def push(self, k, v):
# Store previous state for this key
self._l.append((k, self.get(k, None)))
if v is None:
if k in self:
del self[k]
else:
self[k] = v
def pop(self):
# Restore previous state for this key
k, v = self._l.pop()
if v is None:
if k in self:
del self[k]
else:
self[k] = v
return k, v
class UFLTypeDict(dict):
def __init__(self):
dict.__init__(self)
def __getitem__(self, key):
return dict.__getitem__(self, key._uflclass)
def __setitem__(self, key, value):
return dict.__setitem__(self, key._uflclass, value)
def __delitem__(self, key):
return dict.__delitem__(self, key._uflclass)
def __contains__(self, key):
return dict.__contains__(self, key._uflclass)
class UFLTypeDefaultDict(dict):
def __init__(self, default):
dict.__init__(self)
def make_default():
return default
self.setdefault(make_default)
def __getitem__(self, key):
return dict.__getitem__(self, key._uflclass)
def __setitem__(self, key, value):
return dict.__setitem__(self, key._uflclass, value)
def __delitem__(self, key):
return dict.__delitem__(self, key._uflclass)
def __contains__(self, key):
return dict.__contains__(self, key._uflclass)
def strides(shape):
if not shape:
return ()
stride = 1
result = [1]
for s in shape[-1:0:-1]:
stride *= s
result.append(stride)
return tuple(reversed(result))
def component_to_index(component, shape):
i = 0
for (c,s) in izip(component, strides(shape)):
i += c*s
return i
def index_to_component(index, shape):
assert index >= 0
component = []
a, b = -123, -123
for s in strides(shape):
a = index // s
b = index % s
index = b
component.append(a)
assert all(c >= 0 for c in component)
assert all(c < s for (c,s) in izip(component, shape))
return tuple(component)
def topological_sorting(nodes, edges):
"""
Return a topologically sorted list of the nodes
Implemented algorithm from Wikipedia :P
<http://en.wikipedia.org/wiki/Topological_sorting>
No error for cyclic edges...
"""
L = []
S = nodes[:]
for node in nodes:
for es in edges.itervalues():
if node in es and node in S:
S.remove(node)
continue
while S:
node = S.pop(0)
L.append(node)
node_edges = edges[node]
while node_edges:
m = node_edges.pop(0)
found = False
for es in edges.itervalues():
found = m in es
if found:
break
if not found:
S.insert(0,m)
return L
class Timer:
def __init__(self, name):
self.name = name
self.times = []
self('begin %s' % self.name)
def __call__(self, msg):
self.times.append((time.time(), msg))
def end(self):
self('end %s' % self.name)
def __str__(self):
line = "-"*60
s = [line, "Timing of %s" % self.name]
for i in range(len(self.times)-1):
t = self.times[i+1][0] - self.times[i][0]
msg = self.times[i][1]
s.append("%9.2e s %s" % (t, msg))
s.append('Total time: %9.2e s' % (self.times[-1][0] - self.times[0][0]))
s.append(line)
return '\n'.join(s)
|