File: templatelist.py

package info (click to toggle)
taskcoach 1.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 32,188 kB
  • sloc: python: 72,373; makefile: 285; ansic: 120; xml: 34; sh: 16
file content (107 lines) | stat: -rw-r--r-- 3,870 bytes parent folder | download
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
'''
Task Coach - Your friendly task manager
Copyright (C) 2004-2016 Task Coach developers <developers@taskcoach.org>

Task Coach 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
(at your option) any later version.

Task Coach 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 this program.  If not, see <http://www.gnu.org/licenses/>.
'''

import os, pickle, tempfile, shutil
from wx.lib.pubsub import pub
from xml import TemplateXMLWriter, TemplateXMLReader


class TemplateList(object):
    def __init__(self, path, TemplateReader=TemplateXMLReader, openFile=file):
        self._path = path
        self._templates = self._readTemplates(TemplateReader, openFile)
        self._toDelete = []

    def _readTemplates(self, TemplateReader, openFile):
        templates = []
        for filename in self._templateFilenames():
            template = self._readTemplate(filename, TemplateReader, openFile)
            if template:
                templates.append((template, filename))
        return templates
    
    def _readTemplate(self, filename, TemplateReader, openFile):
        try:
            fd = openFile(os.path.join(self._path, filename), 'rU')
        except IOError:
            return
        try:
            return TemplateReader(fd).read()
        except:
            pass
        finally:
            fd.close()

    def _templateFilenames(self):
        if not os.path.exists(self._path):
            return []
        filenames = [name for name in os.listdir(self._path) if \
                    name.endswith('.tsktmpl') and os.path.exists(os.path.join(self._path, name))]
        listName = os.path.join(self._path, 'list.pickle')
        if os.path.exists(listName):
            try:
                filenames = pickle.load(file(listName, 'rb'))
            except:
                pass
        return filenames
    
    def save(self):
        pickle.dump([name for task, name in self._templates], file(os.path.join(self._path, 'list.pickle'), 'wb'))

        for task, name in self._templates:
            templateFile = file(os.path.join(self._path, name), 'w')
            writer = TemplateXMLWriter(templateFile)
            writer.write(task)
            templateFile.close()

        for task, name in self._toDelete:
            os.remove(os.path.join(self._path, name))
        self._toDelete = []
        pub.sendMessage('templates.saved')

    def addTemplate(self, task):
        handle, filename = tempfile.mkstemp('.tsktmpl', dir=self._path)
        os.close(handle)
        templateFile = file(filename, 'w')
        writer = TemplateXMLWriter(templateFile)
        writer.write(task.copy())
        templateFile.close()
        theTask = TemplateXMLReader(file(filename, 'rU')).read()
        self._templates.append((theTask, os.path.split(filename)[-1]))
        return theTask

    def deleteTemplate(self, idx):
        self._toDelete.append(self._templates[idx])
        del self._templates[idx]

    def copyTemplate(self, filename):
        shutil.copyfile(filename,
                        os.path.join(self._path, os.path.split(filename)[-1]))
        pub.sendMessage('templates.saved')
        
    def swapTemplates(self, i, j):
        self._templates[i], self._templates[j] = self._templates[j], self._templates[i]

    def __len__(self):
        return len(self._templates)

    def tasks(self):
        return [task for task, _ in self._templates]

    def names(self):
        return [name for _, name in self._templates]