This file is indexed.

/usr/lib/python2.7/dist-packages/ccnet/async/processor.py is in libccnet0 6.0.2-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
import logging

from ccnet.packet import SLAVE_BIT_MASK, to_print_id
from ccnet.status_code import SC_PROC_DONE, SS_PROC_DONE, PROC_DONE

class Processor(object):
    """Base processor class"""

    name = "Processor"
    def __init__(self, name, id, peer_id, client):
        self.name = name
        self.id = id
        self.peer_id = peer_id
        self.client = client

    def start(self, *args, **kwargs):
        raise NotImplementedError

    def handle_request(self, *args, **kwargs):
        raise NotImplementedError
        
    def handle_update(self, *args, **kwargs):
        raise NotImplementedError
        
    def handle_response(self, *args, **kwargs):
        raise NotImplementedError

    def __str__(self):
        return "<proc %s(%d)>" % (self.name, to_print_id(self.id))

    def is_master(self):
        return not (self.id & SLAVE_BIT_MASK)

    def send_request(self, buf):
        assert self.is_master()
        
        return self.client.send_request(self.id, buf)

    def send_response(self, code, code_msg, content=''):
        assert not self.is_master()
        
        return self.client.send_response(self.id, code, code_msg, content)

    def send_update(self, code, code_msg, content=''):
        assert self.is_master()
        
        return self.client.send_update(self.id, code, code_msg, content)

    def done(self, success):
        if self.is_master() and success:
            self.send_update(SC_PROC_DONE, SS_PROC_DONE, '')
        self.client.remove_processor(self)

    def shutdown(self, reason):
        if reason > PROC_DONE:
            logging.debug('shut down %s: %s', self, reason)
        self.client.remove_processor(self)