summaryrefslogtreecommitdiffstats
path: root/src/fringlib/fringwalker.py
blob: bb6195b327f3b8a7e83c1a0ed9bdcf418f8a2d33 (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
import os, os.path, stat, sys, time
import gobject, gtk
from threading import Thread

class sum_list:
    def __init__(self, l, name = None):

        self.the_sum = 0
        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)

    def sort(self):

        def cmp_fn(a, b):
            a_dir = isinstance(a[1], sum_list)
            b_dir = isinstance(b[1], sum_list)

            if a_dir and not b_dir:
                return 1
            elif b_dir and not a_dir:
                return -1
            elif a_dir:
                return cmp(a[1].the_sum, b[1].the_sum)
            else:
                return cmp(a[1], b[1])

        self.data.sort(cmp_fn)

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 """

        def progress_fn(c, l, r):
            # emit signals
            gtk.gdk.threads_enter()
            self.emit("progress", c, l)
            self.emit("list-changed", r)
            gtk.gdk.threads_leave()
            
        r = self._build_tree(path, progress_fn)

        gtk.gdk.threads_enter()
        self.emit("finished", r)
        gtk.gdk.threads_leave()

        print "finished walking", path

    def _build_tree(self, path, progress_fn = None):
        """ Parse directories recursively """
        
        ret = []
        tmp_dirs = []
        
        try:
            # walk files in directory
            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)
                    s = os.lstat(p)
                except:
                    continue

                if stat.S_ISDIR(s.st_mode): 
                    tmp_dirs.append(fn);
                elif stat.S_ISREG(s.st_mode):
                    ret.append((fn, s.st_size))
        except OSError:
            pass

        try:
            c = 0
            
            for fn in tmp_dirs:
                c += 1

                if self.stopsignal:
                    return sum_list([])
                
                try:
                    p = os.path.join(path, fn)
                except:
                    continue

                ret.append((fn, self._build_tree(p)))

                if not (progress_fn is None):
                    r = sum_list(ret, os.path.split(path)[-1])
                    r.sort()
                    progress_fn(c, len(tmp_dirs), r)
                    
        except OSError:
            pass

        r = sum_list(ret, os.path.split(path)[-1])
        r.sort()

        return r