This file is indexed.

/usr/share/pyshared/Scientific/BSP/RemoteObjects.py is in python-scientific 2.8-2build1.

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
# Remote objects for BSP
#
# Written by Konrad Hinsen <hinsen@cnrs-orleans.fr>
# last revision: 2005-9-27
#

# There is exactly one global RemoteObjectManager object, which keeps track
# of both local objects for which proxies exist and local proxies to objects
# on other processors. It is not used directly by applications.

class RemoteObjectManager(object):
    
    def __parinit__(self, pid, nprocs):
        self.pid = pid
        self.nprocs = nprocs
        self.nprocs = nprocs
        self.local_objects = {}
        self.local_proxies = {}
        self.current_id = 0

    def registerLocalObject(self, local_object):
        remote_id = self.current_id
        self.current_id += 1
        self.local_objects[remote_id] = local_object
        local_object.__ro_remote_id__ = remote_id
        return (self.pid, remote_id)

    def retrieveLocalObject(self, remote_id):
        return self.local_object[remote_id]


remote_object_manager = RemoteObjectManager()

# The remote object base class and the Proxy class take care of
# all the bookkeeping.

class RemoteObject(object):

    def isLocal(self):
        return True

    def _getROProxy(self):
        try:
            return self.__ro_proxy__
        except AttributeError:
            self.__ro_proxy__ = Proxy(remote_object_manager
                                            .registerLocalObject(self))
            return self.__ro_proxy__

    def transferTo(self, pid):
        messages = []
        if pid != processorID:
            messages.append(([pid], self))
            try:
                proxy = self.__ro_proxy__
                messages.append((range(remote_object_manager.nprocs),
                                 TransferToken(proxy.pid, proxy.remote_id,
                                 other_pid)))
            except AttributeError:
                pass
        return messages

class Proxy(object):
    
    def __init__(self, reference):
        self.pid, self.remote_id = reference

    def isLocal(self):
        return False

    def _getROLocalObject(self):
        if self.pid != remote_object_manager.pid:
            raise ValueError("wrong pid")
        return _manager.retrieveLocalObject(self.remote_id)

class TransferToken(object):

    def __init__(self, from_pid, from_id, to_pid):
        self.from_pid = from_pid
        self.from_id = from_id
        self.to_pid = to_pid