summaryrefslogtreecommitdiffstats
path: root/src/fringlib/fringwalker.py
blob: 50c67313b5224093f20be54ca4c1b1fcda32f559 (plain)
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
import os, os.path, stat, sys

import gobject, gtk
from threading import Thread
import time

class sum_list:
    data = []
    the_sum = 0
    name = None
    
    def __init__(self, l, name = None):

        self.data = list(l)
        self.name = name

        for fn, i in self.data:

            if isinstance(i, sum_list):
                self.the_sum += i.the_sum
            else:
                self.the_sum += i

    def __str__(self):
        return self.name+": "+str(self.data)


class FringWalker( gobject.GObject ):
   
    __gsignals__ = {
        'list-changed': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_PYOBJECT,)),
        'finished': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_PYOBJECT,)),
        'progress': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (gobject.TYPE_INT,gobject.TYPE_INT)),
    }

    def __init__(self):
        gobject.GObject.__init__(self)
        self.thread = None
        self.stopsignal = False
        self.showhidden = False

    def walk(self,path):
        self.thread = Thread(None,self._parse,None,(path,))
        self.stopsignal = False
        print "start thread (%s)"%path
        self.thread.start()


    def stop(self):
        if self.thread is None:
            return

        if not self.thread.isAlive():
            self.thread = None
            return

        self.stopsignal = True
        print "stopping thread:"
        #self.thread.join()
        print "ok"


    def _parse(self,path):
        """ Parse the root directory """

        l = []
        i = 0
        subdirectories = {}

        try:
            for fn in os.listdir(path):

                if not self.showhidden and fn[0] == '.': continue

                try: p = os.path.join(path, fn)
                except: continue

                s = os.lstat(p)

                if stat.S_ISDIR(s.st_mode): 
                    subdirectories[i] = (fn,p);
                    l.append((fn, s.st_size))
                elif stat.S_ISREG(s.st_mode):
                    l.append((fn, s.st_size))

                i += 1

        except:
            pass

        gtk.gdk.threads_enter()
        self.emit("list-changed",sum_list(l, os.path.split(path)[-1]))
        gtk.gdk.threads_leave()

        c = 0
        for n in subdirectories:
            c += 1

            # give gtk a breath to redraw
            time.sleep(0.05) 

            # walk subdirectory
            fn,p = subdirectories[n]
            l[n] = (fn, self._build_tree(p));
            if self.stopsignal: return

            # emit signals
            gtk.gdk.threads_enter()
            self.emit("progress",c,len(subdirectories))
            self.emit("list-changed",sum_list(l, os.path.split(path)[-1]))
            gtk.gdk.threads_leave()
            

        gtk.gdk.threads_enter()
        self.emit("finished",sum_list(l, os.path.split(path)[-1]))
        gtk.gdk.threads_leave()

        print "finished walking",path


    def _build_tree(self,path):
        """ Parse directories recursively """
        l = []
        try:

            # walk files in directory
            subdirectories = []
            for fn in os.listdir(path):

                if self.stopsignal: return sum_list([])

                if not self.showhidden and fn[0] == '.': continue

                try: p = os.path.join(path, fn)
                except: continue

                s = os.lstat(p)

                if stat.S_ISDIR(s.st_mode): 
                    subdirectories.append( (fn,p) );
                elif stat.S_ISREG(s.st_mode):
                    l.append((fn, s.st_size))

            # add subdirectories after files
            for fn,p in subdirectories:
                l.append((fn, self._build_tree(p)))
                if self.stopsignal: return sum_list([])

        except:
            pass

        return sum_list(l, os.path.split(path)[-1])