This file is indexed.

/usr/share/pyshared/ninja_ide/core/filesystem_notifications/base_watcher.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
 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
# -*- 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/>. #
import os
from PyQt4.QtCore import QObject
from PyQt4.QtCore import SIGNAL, QThread

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

ADDED = 1
MODIFIED = 2
DELETED = 3
RENAME = 4
REMOVE = 5


def do_stat(file_path):
    status = None
    try:
        status = os.stat(file_path)
    except OSError:
        pass
    return status


class SingleFileWatcher(QThread):
    def __init__(self, callback):
        self._watches = dict()
        self._do_run = True
        self._emit_call = callback
        super(SingleFileWatcher, self).__init__()

    def stop_running(self):
        self._do_run = False

    def add_watch(self, file_to_watch):
        status = do_stat(file_to_watch)
        #only add if the file still exists
        if (file_to_watch not in self._watches) and status:
            self._watches[file_to_watch] = do_stat(file_to_watch)
        elif not status:
            self._emit_call(DELETED, file_to_watch)

    def is_empty(self):
        return len(self._watches) == 0

    def del_watch(self, file_to_unwatch):
        if file_to_unwatch in self._watches:
            self._watches.pop(file_to_unwatch)

    def tick(self):
        keys = list(self._watches.keys())
        for each_file in keys:
            status = do_stat(each_file)
            if not status:
                self._emit_call(DELETED, each_file)
                self.del_watch(each_file)
            if status.st_mtime > self._watches[each_file].st_mtime:
                self._emit_call(MODIFIED, each_file)
                self._watches[each_file] = status

    def run(self):
        while self._do_run:
            self.tick()
            QThread.msleep(1000)
        self.deleteLater()


class BaseWatcher(QObject):

###############################################################################
# SIGNALS
#
# fileChanged(int, QString)  [added, deleted, modified, rename, remove]
###############################################################################

    def __init__(self):
        super(BaseWatcher, self).__init__()
        self._single_file_watcher = None
        self.allow_kill = True

    def add_file_watch(self, file_path):
        if not self._single_file_watcher:
            self._single_file_watcher = \
                SingleFileWatcher(self._emit_signal_on_change)
            self.connect(self._single_file_watcher,
                         SIGNAL("destroyed(QObject*)"), self.on_destroy)
            self._single_file_watcher.start()
        self._single_file_watcher.add_watch(file_path)

    def remove_file_watch(self, file_path):
        if self._single_file_watcher:
            self._single_file_watcher.del_watch(file_path)
            if self._single_file_watcher.is_empty() and self.allow_kill:
                self._single_file_watcher.stop_running()
                self._single_file_watcher.quit()

    def on_destroy(self):
        self._single_file_watcher.wait()
        self._single_file_watcher = None

    def shutdown_notification(self):
        if hasattr(self, "_single_file_watcher") and self._single_file_watcher:
            self._single_file_watcher.stop_running()
            self._single_file_watcher.quit()

    def _emit_signal_on_change(self, event, path):
        DEBUG("About to emit the signal" + repr(event))
        #self.emit(SIGNAL("fileChanged(int, QString)"), event, path)