annotate getan/backend.py @ 501:f5e1a78173cb

Old databases can now be read in. Added comments.
author Magnus Schieder <mschieder@intevation.de>
date Tue, 18 Sep 2018 12:13:51 +0200
parents 199b3e3657aa
children fea767901dbc
rev   line source
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
1 # -*- coding: utf-8 -*-
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
2 #
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
3 # (c) 2008, 2009, 2010 by
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
4 # Sascha L. Teichmann <sascha.teichmann@intevation.de>
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
5 # Ingo Weinzierl <ingo.weinzierl@intevation.de>
97
99639833968d Add me as author in files that I did touch
Björn Ricks <bjoern.ricks@intevation.de>
parents: 68
diff changeset
6 # (c) 2011 Björn Ricks <bjoern.ricks@intevation.de>
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
7 #
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
8 # This is Free Software licensed unter the terms of GPLv3 or later.
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
9 # For details see LICENSE coming with the source of 'getan'.
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
10 #
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
11
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
12 import logging
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
13 import os
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
14
33
f96a18c10836 Made getan python-2.4 compatible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 23
diff changeset
15 try:
f96a18c10836 Made getan python-2.4 compatible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 23
diff changeset
16 import sqlite3 as db
f96a18c10836 Made getan python-2.4 compatible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 23
diff changeset
17 except ImportError:
f96a18c10836 Made getan python-2.4 compatible.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 23
diff changeset
18 from pysqlite2 import dbapi2 as db
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
19
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
20 from getan.project import Project, Entry
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
21
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
22 DEFAULT_DATABASE = "time.db"
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
23
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
24 CREATE_TABLES = [
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
25 """
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
26 CREATE TABLE projects (
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
27 id INTEGER PRIMARY KEY AUTOINCREMENT,
284
561441fde2ac Set unique constraint on project key
Björn Ricks <bjoern.ricks@intevation.de>
parents: 174
diff changeset
28 key VARCHAR(16) NOT NULL CONSTRAINT unique_key UNIQUE,
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
29 description VARCHAR(256),
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
30 active BOOLEAN DEFAULT 1
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
31 )
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
32 """,
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
33 """
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
34 CREATE TABLE entries (
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
35 id INTEGER PRIMARY KEY AUTOINCREMENT,
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
36 project_id INTEGER REFERENCES projects(id),
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
37 start_time TIMESTAMP NOT NULL,
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
38 stop_time TIMESTAMP NOT NULL,
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
39 description VARCHAR(256),
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
41 CHECK (strftime('%s', start_time) <= strftime('%s', stop_time))
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
42 )
499
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
43 """,
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
44 """
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
45 CREATE TABLE recover(
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
46 id INTEGER PRIMARY KEY,
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
47 project_id INTEGER REFERENCES projects(id),
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
48 start_time TIMESTAMP NOT NULL,
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
49 stop_time TIMESTAMP NOT NULL,
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
50 description VARCHAR(256),
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
51
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
52 CHECK (strftime('%s', start_time) <= strftime('%s', stop_time))
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
53 )
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
54 """
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
55 ]
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
56
501
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
57 CREATE_RECOVER = """
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
58 CREATE TABLE IF NOT EXISTS recover(
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
59 id INTEGER PRIMARY KEY,
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
60 project_id INTEGER REFERENCES projects(id),
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
61 start_time TIMESTAMP NOT NULL,
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
62 stop_time TIMESTAMP NOT NULL,
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
63 description VARCHAR(256),
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
64
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
65 CHECK (strftime('%s', start_time) <= strftime('%s', stop_time))
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
66 )
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
67 """
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
68
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
69 LOAD_ACTIVE_PROJECTS = '''
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
70 SELECT id, key, description, total
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
71 FROM projects LEFT JOIN
144
9e853f9e63ad Remove whitespace
Björn Ricks <bjoern.ricks@intevation.de>
parents: 143
diff changeset
72 (SELECT
9e853f9e63ad Remove whitespace
Björn Ricks <bjoern.ricks@intevation.de>
parents: 143
diff changeset
73 project_id,
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
74 sum(strftime('%s', stop_time) - strftime('%s', start_time)) AS total
144
9e853f9e63ad Remove whitespace
Björn Ricks <bjoern.ricks@intevation.de>
parents: 143
diff changeset
75 FROM entries
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
76 GROUP BY project_id) ON project_id = id
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
77 WHERE active
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
78 '''
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
79
351
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
80 LOAD_ACTIVE_PROJECT = '''
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
81 SELECT id, key, description, total
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
82 FROM projects LEFT JOIN
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
83 (SELECT
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
84 project_id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
85 sum(strftime('%s', stop_time) - strftime('%s', start_time)) AS total
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
86 FROM entries
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
87 GROUP BY project_id) ON project_id = id
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
88 WHERE active and key = :project_id
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
89 '''
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
90
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
91 LOAD_PROJECT_ENTRIES = '''
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
92 SELECT
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
93 id,
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
94 project_id,
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
95 start_time as "[timestamp]",
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
96 stop_time as "[timestamp]",
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
97 description
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
98 FROM
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
99 entries
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
100 WHERE
350
f581752317fd Correctly escape sql query
Björn Ricks <bjoern.ricks@intevation.de>
parents: 349
diff changeset
101 project_id = :project_id
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
102 ORDER BY
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
103 id
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
104 DESC
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
105 '''
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
106
351
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
107 LOAD_PROJECT_ENTRIES_YEAR = '''
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
108 SELECT
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
109 id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
110 project_id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
111 start_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
112 stop_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
113 'no description' AS description
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
114 FROM entries
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
115 WHERE
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
116 project_id = :project_id AND
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
117 (description IS NULL or length(description) = 0)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
118 GROUP BY round(julianday(start_time))
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
119 UNION
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
120 SELECT
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
121 id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
122 project_id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
123 start_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
124 stop_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
125 description
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
126 FROM entries
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
127 WHERE
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
128 project_id = :project_id AND
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
129 (strftime('%Y', start_time) ) = :year AND
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
130 description IS NOT NULL AND length(description) > 0
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
131 '''
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
132
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
133 LOAD_PROJECT_ENTRIES_WEEK = '''
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
134 SELECT
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
135 id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
136 project_id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
137 start_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
138 stop_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
139 'no description' AS description
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
140 FROM entries
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
141 WHERE
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
142 project_id = :project_id AND
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
143 (strftime('%Y', start_time) ) = :year AND
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
144 (description IS NULL or length(description) = 0)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
145 AND (strftime('%W', start_time) = :week
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
146 OR strftime('%W', stop_time) = :week)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
147 GROUP BY round(julianday(start_time))
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
148 UNION
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
149 SELECT
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
150 id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
151 project_id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
152 start_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
153 stop_time as "[timestamp]",
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
154 description
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
155 FROM entries
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
156 WHERE
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
157 project_id = :project_id AND
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
158 (strftime('%Y', start_time) ) = :year AND
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
159 description IS NOT NULL AND length(description) > 0
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
160 AND (strftime('%W', start_time) = :week
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
161 OR strftime('%W', stop_time) = :week)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
162 ORDER BY start_time
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
163 '''
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
164
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
165 INSERT_PROJECT_ENTRY = '''
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
166 INSERT INTO entries (project_id, start_time, stop_time, description)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
167 VALUES(?,?,?,?)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
168 '''
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
169
499
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
170 INSERT_RECOVER= '''
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
171 INSERT OR REPLACE INTO recover(id, project_id, start_time, stop_time, description)
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
172 VALUES(1,?,?,?,?)
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
173 '''
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
174
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
175 LOAD_RECOVER= '''
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
176 SELECT
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
177 id,
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
178 project_id,
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
179 start_time as "[timestamp]",
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
180 stop_time as "[timestamp]",
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
181 description
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
182 FROM
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
183 recover
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
184 WHERE
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
185 id = 1
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
186 '''
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
187
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
188 DELETE_RECOVER= "DELETE FROM recover"
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
189
49
062ce001abd1 add backend method to create new projects
Björn Ricks <bjoern.ricks@intevation.de>
parents: 40
diff changeset
190 INSERT_PROJECT = '''
52
9cb57c37369a fix insert new project sql statemenent and api
Björn Ricks <bjoern.ricks@intevation.de>
parents: 50
diff changeset
191 INSERT INTO projects (key, description, active) VALUES (?,?,1)
49
062ce001abd1 add backend method to create new projects
Björn Ricks <bjoern.ricks@intevation.de>
parents: 40
diff changeset
192 '''
062ce001abd1 add backend method to create new projects
Björn Ricks <bjoern.ricks@intevation.de>
parents: 40
diff changeset
193
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
194 DELETE_PROJECT_ENTRY = 'DELETE FROM entries WHERE id = %i'
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
195
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
196 MOVE_ENTRY = 'UPDATE entries SET project_id = ? WHERE id = ?'
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
197
401
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
198 UPDATE_ENTRY = '''
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
199 UPDATE entries
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
200 SET description = ?, start_time = ?, stop_time = ?
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
201 WHERE id = ?
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
202 '''
68
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
203
401
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
204 UPDATE_PROJECT = 'UPDATE projects SET key = ?, description = ? WHERE id = ?'
174
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
205
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
206 logger = logging.getLogger()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
207
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
208
165
83ba64c9a51e A project entry in the db must have a key
Björn Ricks <bjoern.ricks@intevation.de>
parents: 146
diff changeset
209 class InvalidProjectKeyError(Exception):
83ba64c9a51e A project entry in the db must have a key
Björn Ricks <bjoern.ricks@intevation.de>
parents: 146
diff changeset
210 pass
83ba64c9a51e A project entry in the db must have a key
Björn Ricks <bjoern.ricks@intevation.de>
parents: 146
diff changeset
211
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
212
143
9f4da22fb1f1 Use new style class for backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 135
diff changeset
213 class Backend(object):
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
214
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
215 def __init__(self, database=DEFAULT_DATABASE):
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
216 self.database = database
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
217 self.ensure_exists()
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
218 self.con = db.connect(database,
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
219 detect_types=db.PARSE_DECLTYPES |
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
220 db.PARSE_COLNAMES)
467
59d9c5840273 Porting Python 2 to Python 3.
Magnus Schieder <mschieder@intevation.de>
parents: 401
diff changeset
221 self.con.text_factory = lambda x: str(x, "utf-8", "ignore")
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
222
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
223 def ensure_exists(self):
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
224 """ Creates the database file if it does not exist. """
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
225 if os.path.isfile(self.database):
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
226 return
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
227
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
228 con, cur = None, None
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
229 try:
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
230 con = db.connect(self.database)
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
231 cur = con.cursor()
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
232 try:
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
233 for sql in CREATE_TABLES:
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
234 cur.execute(sql)
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
235 con.commit()
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
236 except:
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
237 con.rollback()
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
238 raise
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
239 finally:
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
240 if cur:
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
241 cur.close()
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
242 if con:
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
243 con.close()
40
e4759cc8f5e7 Create database file if it does not exist.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 33
diff changeset
244
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
245 def load_projects(self):
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
246 """ Loads active projects from database and returns them as array """
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
247 logger.debug("load active projects from database.")
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
248 cur = None
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
249 try:
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
250 cur = self.con.cursor()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
251 cur.execute(LOAD_ACTIVE_PROJECTS)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
252
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
253 projects = []
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
254 while True:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
255 row = cur.fetchone()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
256
135
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
257 if not row:
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
258 break
165
83ba64c9a51e A project entry in the db must have a key
Björn Ricks <bjoern.ricks@intevation.de>
parents: 146
diff changeset
259 # check key
83ba64c9a51e A project entry in the db must have a key
Björn Ricks <bjoern.ricks@intevation.de>
parents: 146
diff changeset
260 if not row[1]:
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
261 raise InvalidProjectKeyError("Project with id %s needs "
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
262 "a key" % row[0])
353
5ded6192b85b Pass the Backend to the Project constructor
Björn Ricks <bjoern.ricks@intevation.de>
parents: 351
diff changeset
263 proj = Project(self, *row)
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
264 projects.append(proj)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
265
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
266 logger.info("found %i active projects." % len(projects))
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
267 return projects
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
268
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
269 finally:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
270 close(cur)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
271
499
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
272 def load_recover(self):
501
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
273 """If there is an entry in the recovery table, the entry is moved to
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
274 its project."""
499
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
275 cor = None
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
276 try:
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
277 cur = self.con.cursor()
501
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
278 # Creates the recover table if it does not exist to make old
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
279 # databases compatible.
f5e1a78173cb Old databases can now be read in. Added comments.
Magnus Schieder <mschieder@intevation.de>
parents: 499
diff changeset
280 cur.execute(CREATE_RECOVER)
499
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
281 cur.execute(LOAD_RECOVER)
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
282 recover = cur.fetchone()
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
283 if not recover:
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
284 return
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
285
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
286 _, project_id, start_time, stop_time, desc = recover
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
287
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
288 cur.execute(INSERT_PROJECT_ENTRY, (
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
289 project_id, start_time, stop_time, desc))
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
290 cur.execute(DELETE_RECOVER)
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
291 self.con.commit()
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
292 finally:
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
293 close(cur)
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
294
351
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
295 def load_project(self, key):
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
296 logger.debug("load active projects from database.")
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
297 cur = None
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
298 try:
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
299 cur = self.con.cursor()
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
300 cur.execute(LOAD_ACTIVE_PROJECT, {"project_id": key})
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
301 row = cur.fetchone()
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
302 if not row:
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
303 raise InvalidProjectKeyError("Project with key %s not "
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
304 "found." % key)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
305 # check key
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
306 if not row[1]:
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
307 raise InvalidProjectKeyError("Project with id %s needs "
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
308 "a key" % row[0])
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
309 return Project(self, *row)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
310
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
311 finally:
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
312 close(cur)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
313
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
314 def load_entries(self, project_id, year=None, week=None):
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
315 """ Loads all entries that belong to a specific project """
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
316 logger.debug("load entries that belong to project %s" % project_id)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
317 cur = None
351
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
318
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
319 if week and isinstance(week, int):
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
320 week = "%02d" % (week)
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
321
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
322 try:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
323 cur = self.con.cursor()
351
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
324
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
325 if year is None and week is None:
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
326 cur.execute(LOAD_PROJECT_ENTRIES,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
327 {"project_id": project_id})
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
328 elif week is None:
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
329 cur.execute(LOAD_PROJECT_ENTRIES_YEAR,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
330 {'project_id': project_id, 'year': str(year)})
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
331 else:
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
332 cur.execute(LOAD_PROJECT_ENTRIES_WEEK,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
333 {'project_id': project_id,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
334 'week': week,
b5dc92631561 Allow to load one project and specific entries from the Backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 350
diff changeset
335 'year': str(year)})
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
336
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
337 entries = []
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
338 while True:
146
bb70dde875fd Always fail if an entry couldn't be loaded
Björn Ricks <bjoern.ricks@intevation.de>
parents: 144
diff changeset
339 row = cur.fetchone()
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
340
146
bb70dde875fd Always fail if an entry couldn't be loaded
Björn Ricks <bjoern.ricks@intevation.de>
parents: 144
diff changeset
341 if not row:
bb70dde875fd Always fail if an entry couldn't be loaded
Björn Ricks <bjoern.ricks@intevation.de>
parents: 144
diff changeset
342 break
bb70dde875fd Always fail if an entry couldn't be loaded
Björn Ricks <bjoern.ricks@intevation.de>
parents: 144
diff changeset
343 entries.append(Entry(*row))
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
344
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
345 logger.debug("Found %i entries that belong to project '%i'"
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
346 % (len(entries), project_id))
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
347 return entries
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
348 finally:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
349 close(cur)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
350
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
351 def insert_project_entry(self, project, stop_time, desc):
135
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
352 if project is None:
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
353 return
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
354 cur = None
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
355 try:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
356 cur = self.con.cursor()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
357 cur.execute(INSERT_PROJECT_ENTRY, (
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
358 project.id, project.start, stop_time, desc))
499
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
359 cur.execute(DELETE_RECOVER)
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
360 self.con.commit()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
361 logger.debug("Added new entry '%s' of project '%s' into db"
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
362 % (desc, project.desc))
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
363
362
90c09cca49c3 Fix loading entries of a project
Björn Ricks <bjoern.ricks@intevation.de>
parents: 353
diff changeset
364 project.load_entries()
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
365 finally:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
366 close(cur)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
367
499
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
368 def insert_recover(self, project, stop_time, desc):
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
369 if project is None:
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
370 return
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
371 cur = None
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
372 try:
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
373 cur = self.con.cursor()
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
374 cur.execute(INSERT_RECOVER, (
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
375 project.id, project.start, stop_time, desc))
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
376 self.con.commit()
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
377 finally:
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
378 close(cur)
199b3e3657aa Every minute the time of the current entry is saved.
Magnus Schieder <mschieder@intevation.de>
parents: 467
diff changeset
379
52
9cb57c37369a fix insert new project sql statemenent and api
Björn Ricks <bjoern.ricks@intevation.de>
parents: 50
diff changeset
380 def insert_project(self, key, description):
9cb57c37369a fix insert new project sql statemenent and api
Björn Ricks <bjoern.ricks@intevation.de>
parents: 50
diff changeset
381 if key is None or description is None:
49
062ce001abd1 add backend method to create new projects
Björn Ricks <bjoern.ricks@intevation.de>
parents: 40
diff changeset
382 return
062ce001abd1 add backend method to create new projects
Björn Ricks <bjoern.ricks@intevation.de>
parents: 40
diff changeset
383 cur = None
50
9dbb6ee443a4 don't forget to save before commit :-/
Björn Ricks <bjoern.ricks@intevation.de>
parents: 49
diff changeset
384 try:
49
062ce001abd1 add backend method to create new projects
Björn Ricks <bjoern.ricks@intevation.de>
parents: 40
diff changeset
385 cur = self.con.cursor()
52
9cb57c37369a fix insert new project sql statemenent and api
Björn Ricks <bjoern.ricks@intevation.de>
parents: 50
diff changeset
386 cur.execute(INSERT_PROJECT, (key, description))
49
062ce001abd1 add backend method to create new projects
Björn Ricks <bjoern.ricks@intevation.de>
parents: 40
diff changeset
387 self.con.commit()
52
9cb57c37369a fix insert new project sql statemenent and api
Björn Ricks <bjoern.ricks@intevation.de>
parents: 50
diff changeset
388 logger.debug("Added a new project '%s' into db" % description)
50
9dbb6ee443a4 don't forget to save before commit :-/
Björn Ricks <bjoern.ricks@intevation.de>
parents: 49
diff changeset
389 finally:
9dbb6ee443a4 don't forget to save before commit :-/
Björn Ricks <bjoern.ricks@intevation.de>
parents: 49
diff changeset
390 close(cur)
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
391
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
392 def delete_entries(self, entries):
135
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
393 if entries is None:
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
394 return
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
395
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
396 cur = None
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
397 try:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
398 cur = self.con.cursor()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
399 for entry in entries:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
400 cur.execute(DELETE_PROJECT_ENTRY % entry.id)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
401 logger.debug("Deleted entry: %s (%d)" % (entry.desc, entry.id))
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
402 self.con.commit()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
403 finally:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
404 close(cur)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
405
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
406 def move_entries(self, entries, new_project_id):
135
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
407 if entries is None or new_project_id is None:
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
408 return
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
409
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
410 cur = None
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
411 try:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
412 cur = self.con.cursor()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
413 for entry in entries:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
414 cur.execute(MOVE_ENTRY, (new_project_id, entry.id))
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
415 logger.debug("Moved entry '%s' (id=%d) to project with id %d."
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
416 % (entry.desc, entry.id, new_project_id))
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
417 self.con.commit()
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
418 finally:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
419 close(cur)
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
420
68
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
421 def update_entry(self, entry):
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
422 if not entry:
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
423 return
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
424
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
425 cur = None
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
426 try:
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
427 cur = self.con.cursor()
401
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
428 cur.execute(UPDATE_ENTRY, (entry.desc, entry.start,
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
429 entry.end, entry.id))
68
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
430 self.con.commit()
401
a487535e7844 Adjusting starting datetime:
Bernhard Reiter <bernhard@intevation.de>
parents: 362
diff changeset
431 logger.debug("Updated entry to: '%s'" % (entry))
68
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
432 finally:
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
433 close(cur)
a25dab413260 Add new method to update a description of an entry in the database backend
Björn Ricks <bjoern.ricks@intevation.de>
parents: 52
diff changeset
434
174
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
435 def update_project(self, project):
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
436 if not project:
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
437 return
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
438
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
439 cur = None
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
440 try:
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
441 cur = self.con.cursor()
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
442 cur.execute(
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
443 UPDATE_PROJECT, (project.key, project.desc, project.id))
174
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
444 self.con.commit()
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
445 logger.debug("Updated project: (%d) %s %s" % (project.id,
349
c97a4b6a6887 Fix textwidth <= 80
Björn Ricks <bjoern.ricks@intevation.de>
parents: 348
diff changeset
446 project.key,
c97a4b6a6887 Fix textwidth <= 80
Björn Ricks <bjoern.ricks@intevation.de>
parents: 348
diff changeset
447 project.desc))
174
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
448 finally:
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
449 close(cur)
36b9f2d31810 Add backend method to update a project in the database
Björn Ricks <bjoern.ricks@intevation.de>
parents: 165
diff changeset
450
348
328ec66517b0 Fix coding style for pep8
Björn Ricks <bjoern.ricks@intevation.de>
parents: 284
diff changeset
451
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
452 def close(cur):
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
453 """ This function closes a database cursor if it is existing """
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
454 if cur:
135
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
455 try:
ce707fbb9666 Change coding style of if clauses
Björn Ricks <bjoern.ricks@intevation.de>
parents: 97
diff changeset
456 cur.close()
23
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
457 except:
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
458 logger.warn("could not close database cursor.")
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
459
9c4e8ba3c4fa Added a new implementation of 'getan' based on urwid, a python console user interface library.
Ingo Weinzierl <ingo_weinzierl@web.de>
parents:
diff changeset
460 # vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8:
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)