This file is indexed.

/usr/share/pyshared/pyepl/base.py is in python-pyepl 1.1.0+git12-g365f8e3-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
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
# PyEPL: base.py
#
# Copyright (C) 2003-2005 Michael J. Kahana
# Authors: Ian Schleifer, Per Sederberg, Aaron Geller, Josh Jacobs
# URL: http://memory.psych.upenn.edu/programming/pyepl
#
# Distributed under the terms of the GNU Lesser General Public License
# (LGPL). See the license.txt that came with this file.

"""
This module defines useful base classes for objects to be stored in a
repository.
"""

import pyepl.exceptions
from transarchive import Archive
import weakref
import os

class CarveError(pyepl.exceptions.EPLError):
    """
    """
    def __init__(self, obj):
        """
        """
        self.obj = obj
    def __str__(self):
        """
        """
        return "Attempt to modify a carved Carvable: %r" % self.obj

class Carvable:
    """
    This is a super-class for all objects that can be "carved in
    stone".  In other words, they can be solidified so that their
    contents can never be changed again.
    """
    def __init__(self):
        """
        """
        self.carved_in_stone = False
    def carve(self):
        """
        """
        self.carved_in_stone = True
    def isCarved(self):
        """
        """
        return self.carved_in_stone
    def aboutToChange(self):
        """
        """
        if self.carved_in_stone:
            raise CarveError(self)

class Registry(type):
    """
    Metaclass for classes to be registered for common services.
    """
    extensionRegistry = {}
    encodeRegistry = {}
    decodeRegistry = {}
    trackTypes = {}
    def __new__(cls, name, bases, dict):
        """
        """
        t = type.__new__(cls, name, bases, dict)
        if hasattr(t, "logExtension"):
            Registry.extensionRegistry[t.logExtension] = t
        if hasattr(t, "trackTypeName"):
            Registry.trackTypes[t.trackTypeName] = t
        return t
    def loadFile(filename):
        """
        Load the indicated file using the correct registered class.
        Return the resulting object.
        """
        cls = Registry.extensionRegistry(os.path.splitext(filename))
        directory, filename = os.path.split(filename)
        return cls(Archive(directory), os.path.splitext(filename)[0])
    loadFile = staticmethod(loadFile)

class Registered(object):
    """
    Base instance of Registry metaclass.
    """
    __metaclass__ = Registry

class MediaFile(Registered):
    """
    """
    def load(self):  # To be overridden
        """
        """
        pass
    def unload(self):  # To be overridden
        """
        """
        pass
    def isLoaded(self):  # To be overridden
        """
        """
        return True
    def loadedCall(self, f, *targs, **dargs):
        """
        """
        if self.isLoaded():
            return f(*targs, **dargs)
        self.load()
        r = f(*targs, **dargs)
        return r

class Track(Registered):
    """
    This is a super-class for all formats that have values varying
    with time.  These include sound, video, eeg, and textual logging.
    """
    def __new__(cls, *targs, **dargs):
        """
        Call Format constructor and then set most recently constructed
        instance.
        """
        self = object.__new__(cls, *targs, **dargs)
        self.__class__.last_instance = weakref.ref(self)
        return self
    def __iter__(self):
        """
        Generator to iterate through marked events in the track.
        Generates 3-tuples of (time stamps, maximum latencies), within
        tick order numbers, texts.
        """
        return iter(lambda: None, None) # No marked events by default (better way?)
    def __del__(self):
        """
        Clean up the Track
        """
        self.stopLogging()
        self.flush()
        self.stopService()
    def export(self, archive, basename):
        """
        Iterate through marked events writing string form to file.
        """
        filename = basename + self.__class__.logExtension
        of = archive.createFile(filename)
        for (timestamp, maxlat), withintick, txt in self:
            of.write("%s\t%s\t%s\n" % (timestamp, maxlat, txt))
        return filename
    def flush(self):  # To be overridden
        """
        """
        pass
    def startLogging(self):  # To be overridden
        """
        """
        pass
    def stopLogging(self):  # To be overridden
        """
        """
        pass
    def startService(self):  # To be overridden
        """
        """
        pass
    def stopService(self):  # To be overridden
        """
        """
        pass
    def doAction(self, dotime, name, context):  # To be overridden
        """
        """
        pass
    def getActions(self):  # To be overridden
        """
        """
        pass
    def lastInstance(cls):
        """
        Return the last constructed instance of this class (this class
        refers to the class it's called on, not just Track.  If last
        instance does not exist, return None.
        """
        try:
            return cls.__dict__["last_instance"]()
        except KeyError:
            return None
    lastInstance = classmethod(lastInstance)

class MetaUniquelyConstructed(type):
    """
    """
    def __new__(cls, name, bases, dict):
        """
        """
        dict["loaded"] = weakref.WeakValueDictionary()
        return type.__new__(cls, name, bases, dict)

class UniquelyConstructed(object):
    """
    """
    __metaclass__ = MetaUniquelyConstructed
    def __new__(cls, *targs, **dargs):
        """
        """
        try:
            return cls.loaded[(targs, tuple(dargs.items()))]
        except KeyError:
            return object.__new__(cls, *targs, **dargs)
    def __init__(self, *targs, **dargs):
        """
        """
        if not self in self.__class__.loaded.values():
            self.__class__.loaded[(targs, tuple(dargs.items()))] = self
            self.__uinit__(*targs, **dargs)
    def __uinit__(self, *targs, **dargs):  # to be overridden
        """
        """
        pass