This file is indexed.

/usr/share/pyshared/ninja_ide/core/filesystem_notifications/darwin.py is in ninja-ide 2.3-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
# -*- coding: utf-8 -*-
#
# This file is part of NINJA-IDE (http://ninja-ide.org).
#
# NINJA-IDE 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 3 of the License, or
# any later version.
#
# NINJA-IDE 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 NINJA-IDE; If not, see <http://www.gnu.org/licenses/>.

from __future__ import absolute_import

#import fsevents
#from PyQt4.QtCore import SIGNAL

from ninja_ide.tools.logger import NinjaLogger
logger = NinjaLogger('ninja_ide.core.filesystem_notifications.darwin')
DEBUG = logger.debug

from ninja_ide.core.filesystem_notifications import base_watcher
ADDED = base_watcher.ADDED
DELETED = base_watcher.DELETED
REMOVE = base_watcher.REMOVE
RENAME = base_watcher.RENAME
MODIFIED = base_watcher.MODIFIED


class NinjaFileSystemWatcher(base_watcher.BaseWatcher):

    def __init__(self):
        super(NinjaFileSystemWatcher, self).__init__()
        #self.observer = fsevents.Observer()
        #self.watching_paths = {}
        #self.event_mapping = {
            #fsevents.IN_CREATE: ADDED,
            #fsevents.IN_MODIFY: MODIFIED,
            #fsevents.IN_DELETE: DELETED,
            #fsevents.IN_MOVED_FROM: REMOVE,
            #fsevents.IN_MOVED_TO: ADDED}

    def shutdown_notification(self):
        pass
        #base_watcher.BaseWatcher.shutdown_notification(self)
        #try:
            #for path in self.watching_paths:
                #stream = self.watching_paths[path]
                #self.observer.unschedule(stream)
        #except:
            #logger.debug("Some of the stream could not be unscheduled.")
        #self.observer.stop()
        #self.observer.join()

    def add_watch(self, path):
        pass
        #if path not in self.watching_paths:
            #try:
                #if isinstance(path, unicode):
                    #path = path.encode('utf-8')
                #stream = fsevents.Stream(self._emit_signal_on_change,
                    #path, file_events=True)
                #self.observer.schedule(stream)
                #self.watching_paths[path] = stream
                #if not self.observer.is_alive():
                    #self.observer.start()
            #except Exception as reason:
                #print reason
                #logger.debug("Path could not be added: %r" % path)

    def remove_watch(self, path):
        pass
        #try:
            #if path in self.watching_paths:
                #stream = self.watching_paths[path]
                #self.observer.unschedule(stream)
                #self.watching_paths.remove(path)
                #self.observer.join()
                #if not self.observer.is_alive():
                    #self.observer = fsevents.Observer()
        #except:
            #logger.debug("Stream could not be removed for path: %r" % path)

    def _emit_signal_on_change(self, event):
        pass
        #oper = self.event_mapping.get(event.mask, None)
        #if oper is None:
            #return
        #path = event.name
        #self.emit(SIGNAL("fileChanged(int, QString)"), oper, path)