-
Notifications
You must be signed in to change notification settings - Fork 17
/
Note.py
544 lines (501 loc) · 23.6 KB
/
Note.py
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
# Copyright (C) 2003 - 2015 The Board of Regents of the University of Wisconsin System
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
"""This module implements the Note class as part of the Data Objects."""
__author__ = 'David K. Woods <[email protected]>, Nathaniel Case'
# import wxPython
import wx
# import Python's types module
import types
# import Transana's base Data Object
import DataObject
# import Transana's Database Interface
import DBInterface
# import Transana's Constants
import TransanaConstants
# import Transana's Exceptions
from TransanaExceptions import *
# import Transana's Globals
import TransanaGlobal
class Note(DataObject.DataObject):
"""This class defines the structure for a note object. A note object
holds a note that can be attached to various objects."""
def __init__(self, id_or_num=None, **kwargs):
"""Initialize an Note object."""
DataObject.DataObject.__init__(self)
if type(id_or_num) in (int, long):
self.db_load_by_num(id_or_num)
elif isinstance(id_or_num, types.StringTypes):
self.db_load_by_name(id_or_num, **kwargs)
def __repr__(self):
str = "Note Object:\n"
str = str + "number = %s\n" % self.number
str = str + 'id = %s\n' % self.id
str = str + 'notetype = %s\n' % self.notetype
str = str + 'comment = %s\n' % self.comment
str = str + "series_num = %s\n" % self.series_num
str = str + "episode_num = %s\n" % self.episode_num
str = str + "transcript_num = %s\n" % self.transcript_num
str += "document_num = %s\n" % self.document_num
str = str + "collection_num = %s\n" % self.collection_num
str = str + "clip_num = %s\n" % self.clip_num
str += "quote_num = %s\n" % self.quote_num
str = str + "snapshot_num = %s\n" % self.snapshot_num
str = str + "author = %s\n" % self.author
# str += "isLocked = %s\n" % self._isLocked
# str += "recordlock = %s\n" % self.recordlock
# str += "locktime = %s\n" % self.locktime
str = str + "text = %s\n\n" % self.text
return str.encode('utf8')
def __eq__(self, other):
""" Determine object equality """
if other == None:
return False
else:
return self.__dict__ == other.__dict__
# Public methods
def db_load_by_num(self, num):
"""Load a record by record number."""
# Get the database connection
db = DBInterface.get_db()
# Define the query for loading the requested Note
query = """SELECT * FROM Notes2
WHERE NoteNum = %s"""
# Adjust the query for sqlite if needed
query = DBInterface.FixQuery(query)
# Get the Database Cursor
c = db.cursor()
# Execute the query
c.execute(query, (num, ))
# rowcount doesn't work for sqlite!
if TransanaConstants.DBInstalled == 'sqlite3':
# ... so assume one record is returned, for now
n = 1
# If not sqlite ...
else:
# ... we can use rowcount
n = c.rowcount
# If something other than one record is returned ...
if (n != 1):
# ... close the database cursor ...
c.close()
# ... clear the current Note object ...
self.clear()
# ... and raise an exception
raise RecordNotFoundError, (num, n)
# If one record is returned (or sqlite) ...
else:
# ... get the values from the query ...
r = DBInterface.fetch_named(c)
# ... if sqlite and no data ...
if (TransanaConstants.DBInstalled == 'sqlite3') and (r == {}):
# ... close the database cursor ...
c.close()
# ... clear the current Note object ...
self.clear()
# ... and raise an exception
raise RecordNotFoundError, (num, 0)
# ... load the data into the Note object
self._load_row(r)
# Close the database cursor
c.close()
def db_load_by_name(self, note_id, **kwargs):
"""Load a Note by Note ID and the Series, Episode, Collection,
Clip, or Transcript number the Note belongs to. Record numbers
are passed for one of the parameters after Note ID.
Example: db_load_by_name("My note", Collection=1)
"""
# If we're in Unicode mode, we need to encode the parameter so that the query will work right.
if 'unicode' in wx.PlatformInfo:
note_id = note_id.encode(TransanaGlobal.encoding)
# Get the database connection
db = DBInterface.get_db()
# Determine the TYPE of note that has been requested
if kwargs.has_key("Library"):
q = "SeriesNum"
elif kwargs.has_key("Episode"):
q = "EpisodeNum"
elif kwargs.has_key("Collection"):
q = "CollectNum"
elif kwargs.has_key("Clip"):
q = "ClipNum"
elif kwargs.has_key("Transcript"):
q = "TranscriptNum"
elif kwargs.has_key("Snapshot"):
q = "SnapshotNum"
elif kwargs.has_key("Document"):
q = "DocumentNum"
elif kwargs.has_key("Quote"):
q = "QuoteNum"
# Determine the NUMBER of the record type, i.e. which Series, Episode, etc. the note is attached to.
num = kwargs.values()[0]
# Ensure that the parameter IS a number!
if type(num) != int and type(num) != long:
raise ProgrammingError, _("Integer record number required.")
# Define the query
query = """SELECT * FROM Notes2
WHERE NoteID = %%s AND
%s = %%s""" % q
# Get a database cursor
c = db.cursor()
# Adjust the cursor for sqlite if needed
query = DBInterface.FixQuery(query)
# Execute the query
c.execute(query, (note_id, num))
# rowcount doesn't work for sqlite!
if TransanaConstants.DBInstalled == 'sqlite3':
# if sqlite, assume one row for now
n = 1
# If not sqlite ...
else:
# use rowcount
n = c.rowcount
# If we don't have one row ...
if (n != 1):
# ... close the database cursor ...
c.close()
# ... clear the current Note object ...
self.clear()
# ... and raise an exception
raise RecordNotFoundError, (note_id, n)
else:
# Get the object data
r = DBInterface.fetch_named(c)
# If sqlite and not data is returned ...
if (TransanaConstants.DBInstalled == 'sqlite3') and (r == {}):
# ... close the database cursor ...
c.close()
# ... clear the current Note object ...
self.clear()
# ... and raise an exception
raise RecordNotFoundError, (note_id, n)
# Load the data into the object
self._load_row(r)
# Close the database cursor
c.close()
def db_save(self, use_transactions=True):
""" Save the record to the database using Insert or Update as appropriate. """
# Sanity Checks
if ((self.series_num == 0) or (self.series_num == None)) and \
((self.episode_num == 0) or (self.episode_num == None)) and \
((self.collection_num == 0) or (self.collection_num == None)) and \
((self.clip_num == 0) or (self.clip_num == None)) and \
((self.transcript_num == 0) or (self.transcript_num == None)) and \
((self.snapshot_num == 0) or (self.snapshot_num == None)) and \
((self.document_num == 0) or (self.document_num == None)) and \
((self.quote_num == 0) or (self.quote_num == None)):
if 'unicode' in wx.PlatformInfo:
# Encode with UTF-8 rather than TransanaGlobal.encoding because this is a prompt, not DB Data.
prompt = unicode(_("Note %s is not assigned to any object."), 'utf8')
else:
prompt = _("Note %s is not assigned to any object.")
raise SaveError, prompt % self.id
# If we're in Unicode mode, ...
if 'unicode' in wx.PlatformInfo:
# Encode strings to UTF8 before saving them. The easiest way to handle this is to create local
# variables for the data. We don't want to change the underlying object values. Also, this way,
# we can continue to use the Unicode objects where we need the non-encoded version. (error messages.)
id = self.id.encode(TransanaGlobal.encoding)
author = self.author.encode(TransanaGlobal.encoding)
text = self.text.encode(TransanaGlobal.encoding)
else:
# If we don't need to encode the string values, we still need to copy them to our local variables.
id = self.id
author = self.author
text = self.text
values = (id, self.series_num, self.episode_num, self.collection_num, self.clip_num, self.transcript_num, \
self.snapshot_num, self.document_num, self.quote_num, author, text)
# Determine if we are creating a new record or saving an existing one
if (self._db_start_save() == 0): # Creating new record
# Check to see that no identical record exists
if DBInterface.record_match_count('Notes2', \
("NoteID", "SeriesNum", "EpisodeNum", "CollectNum", "ClipNum", "TranscriptNum", \
"SnapshotNum", "DocumentNum", "QuoteNum"), \
(id, self.series_num, self.episode_num, self.collection_num, self.clip_num, self.transcript_num, \
self.snapshot_num, self.document_num, self.quote_num) ) > 0:
targetObject = _('object')
if (self.series_num != 0) and (self.series_num != None):
targetObject = _('Libraries')
elif (self.episode_num != 0) and (self.episode_num != None):
targetObject = _('Episode')
elif (self.transcript_num != 0) and (self.transcript_num != None):
targetObject = _('Transcript')
elif (self.collection_num != 0) and (self.collection_num != None):
targetObject = _('Collection')
elif (self.clip_num != 0) and (self.clip_num != None):
targetObject = _('Clip')
elif (self.snapshot_num != 0) and (self.snapshot_num != None):
targetObject = _('Snapshot')
elif (self.document_num != 0) and (self.document_num != None):
targetObject = _('Document')
elif (self.quote_num != 0) and (self.quote_num != None):
targetObject = _('Quote')
if 'unicode' in wx.PlatformInfo:
# Encode with UTF-8 rather than TransanaGlobal.encoding because this is a prompt, not DB Data.
prompt = unicode(_('A Note named "%s" already exists for this %s.'), 'utf8')
targetObject = unicode(targetObject, 'utf8')
else:
prompt = _('A Note named "%s" already exists for this %s.')
raise SaveError, prompt % (self.id, targetObject)
# insert a new record
query = """ INSERT INTO Notes2
(NoteID, SeriesNum, EpisodeNum, CollectNum, ClipNum, TranscriptNum, SnapshotNum, DocumentNum, QuoteNum,
NoteTaker, NoteText)
VALUES
(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) """
else: # Saving an existing record
# Check to see that no identical record with a different number exists (!NoteNum specifies "Not same note number")
if DBInterface.record_match_count('Notes2', \
("NoteID", "SeriesNum", "EpisodeNum", "CollectNum", "ClipNum", "TranscriptNum", \
"SnapshotNum", "DocumentNum", "QuoteNum", "!NoteNum"), \
(id, self.series_num, self.episode_num, self.collection_num, self.clip_num, self.transcript_num, \
self.snapshot_num, self.document_num, self.quote_num, self.number) ) > 0:
targetObject = _('object')
if (self.series_num != 0) and (self.series_num != None):
targetObject = _('Libraries')
elif (self.episode_num != 0) and (self.episode_num != None):
targetObject = _('Episode')
elif (self.transcript_num != 0) and (self.transcript_num != None):
targetObject = _('Transcript')
elif (self.collection_num != 0) and (self.collection_num != None):
targetObject = _('Collection')
elif (self.clip_num != 0) and (self.clip_num != None):
targetObject = _('Clip')
elif (self.snapshot_num != 0) and (self.snapshot_num != None):
targetObject = _('Snapshot')
elif (self.document_num != 0) and (self.document_num != None):
targetObject = _('Document')
elif (self.quote_num != 0) and (self.quote_num != None):
targetObject = _('Quote')
if 'unicode' in wx.PlatformInfo:
# Encode with UTF-8 rather than TransanaGlobal.encoding because this is a prompt, not DB Data.
prompt = unicode(_('A Note named "%s" already exists for this %s.'), 'utf8')
targetObject = unicode(targetObject, 'utf8')
else:
prompt = _('A Note named "%s" already exists for this %s.')
raise SaveError, prompt % (self.id, targetObject)
# Update the existing record
query = """ UPDATE Notes2
SET NoteID = %s,
SeriesNum = %s,
EpisodeNum = %s,
CollectNum = %s,
ClipNum = %s,
TranscriptNum = %s,
SnapshotNum = %s,
DocumentNum = %s,
QuoteNum = %s,
NoteTaker = %s,
NoteText = %s
WHERE NoteNum = %s """
values = values + (self.number,)
# Get a database cursor
c = DBInterface.get_db().cursor()
# Adjust query for sqlite if needed
query = DBInterface.FixQuery(query)
# Execute the query
c.execute(query, values)
# If this not doesn't have a number, it is a new note.
if self.number == 0:
# If we are dealing with a brand new Note, it does not yet know its
# record number. It HAS a record number, but it is not known yet.
# The following query should produce the correct record number.
query = """ SELECT NoteNum FROM Notes2
WHERE NoteID = %s AND
SeriesNum = %s AND
EpisodeNum = %s AND
CollectNum = %s AND
ClipNum = %s AND
TranscriptNum = %s AND
SnapshotNum = %s AND
DocumentNum = %s AND
QuoteNum = %s """
# Adjust query for sqlite if needed
query = DBInterface.FixQuery(query)
# Get a temporary database cursor
tempDBCursor = DBInterface.get_db().cursor()
# Execute the query
tempDBCursor.execute(query,
(id, self.series_num, self.episode_num, self.collection_num, self.clip_num,
self.transcript_num, self.snapshot_num, self.document_num, self.quote_num))
# Get the query results
data = tempDBCursor.fetchall()
# If there is one record ...
if len(data) == 1:
# ... get the note number
self.number = data[0][0]
# ... otherwise ...
else:
# ... raise an exception
raise RecordNotFoundError, (self.id, len(data))
# Close the temporary database cursor
tempDBCursor.close()
# Close the main database cursor
c.close()
def db_delete(self, use_transactions=1):
"""Delete this object record from the database."""
# Initialize delete operation. Initiating a Transaction is never necessary here.
(db, c) = self._db_start_delete(use_transactions)
result = 1
# Delete the actual record.
self._db_do_delete(use_transactions, c, result)
# Cleanup
c.close()
self.clear()
return result
def duplicate(self):
""" Duplicate a Note """
# Inherit the Dataobject duplicate method, which duplicates the note but strips the note number
newNote = DataObject.DataObject.duplicate(self)
# Return the duplicate note
return newNote
# Private methods
def _load_row(self, r):
self.number = r['NoteNum']
self.id = r['NoteID']
self.comment = ''
self.series_num = r['SeriesNum']
self.episode_num = r['EpisodeNum']
self.collection_num = r['CollectNum']
self.clip_num = r['ClipNum']
self.transcript_num = r['TranscriptNum']
self.snapshot_num = r['SnapshotNum']
self.document_num = r['DocumentNum']
self.quote_num = r['QuoteNum']
self.author = r['NoteTaker']
# self.text = r['NoteText']
# Okay, this isn't so straight-forward any more.
# With MySQL for Python 0.9.x, r['NoteText'] is of type str.
# With MySQL for Python 1.2.0, r['NoteText'] is of type array. It could then either be a
# character string (typecode == 'c') or a unicode string (typecode == 'u'), which then
# need to be interpreted differently.
if type(r['NoteText']).__name__ == 'array':
if r['NoteText'].typecode == 'u':
self.text = r['NoteText'].tounicode()
else:
self.text = r['NoteText'].tostring()
else:
self.text = r['NoteText']
# If we're in Unicode mode, we need to encode the data from the database appropriately.
# (unicode(var, TransanaGlobal.encoding) doesn't work, as the strings are already unicode, yet aren't decoded.)
if 'unicode' in wx.PlatformInfo:
self.id = DBInterface.ProcessDBDataForUTF8Encoding(self.id)
self.comment = DBInterface.ProcessDBDataForUTF8Encoding(self.comment)
self.author = DBInterface.ProcessDBDataForUTF8Encoding(self.author)
self.text = DBInterface.ProcessDBDataForUTF8Encoding(self.text)
def _set_series(self, num):
self._series = num
def _get_series(self):
return self._series
def _del_series(self):
self._series = 0
def _set_episode(self, num):
self._episode = num
def _get_episode(self):
return self._episode
def _del_episode(self):
self._episode = 0
def _set_collection(self, num):
self._collection = num
def _get_collection(self):
return self._collection
def _del_collection(self):
self._collection = 0
def _set_clip(self, num):
self._clip = num
def _get_clip(self):
return self._clip
def _del_clip(self):
self._clip = 0
def _set_transcript(self, num):
self._transcript = num
def _get_transcript(self):
return self._transcript
def _del_transcript(self):
self._transcript = 0
def _set_snapshot(self, num):
self._snapshot = num
def _get_snapshot(self):
return self._snapshot
def _del_snapshot(self):
self._snapshot = 0
def _set_document(self, num):
self._document = num
def _get_document(self):
return self._document
def _del_document(self):
self._document = 0
def _set_quote(self, num):
self._quote = num
def _get_quote(self):
return self._quote
def _del_quote(self):
self._quote = 0
def _get_notetype(self):
notetype = None
if self.transcript_num > 0:
notetype = 'Transcript'
elif self.episode_num > 0:
notetype = 'Episode'
elif self.series_num > 0:
notetype = 'Library'
elif self.clip_num > 0:
notetype = 'Clip'
elif self.collection_num > 0:
notetype = 'Collection'
elif self.snapshot_num > 0:
notetype = 'Snapshot'
elif self.document_num > 0:
notetype = 'Document'
elif self.quote_num > 0:
notetype = 'Quote'
return notetype
def _set_author(self, name):
self._author = name
def _get_author(self):
return self._author
def _del_author(self):
self._author = ""
def _set_text(self, t):
self._text = t
def _get_text(self):
return self._text
def _del_text(self):
if 'unicode' in wx.PlatformInfo:
self._text = u""
else:
self._text = ""
# Public properties
series_num = property(_get_series, _set_series, _del_series,
"""Series number attached to (if applicable)""")
episode_num = property(_get_episode, _set_episode, _del_episode,
"""Episode number attached to (if applicable)""")
collection_num = property(_get_collection, _set_collection, _del_collection,
"""Collection number to which the note belongs.""")
clip_num = property(_get_clip, _set_clip, _del_clip,
"""Clip number attached to (if applicable)""")
transcript_num = property(_get_transcript, _set_transcript, _del_transcript,
"""Number of the transcript from which this Note was taken.""")
snapshot_num = property(_get_snapshot, _set_snapshot, _del_snapshot,
"""Number of the snapshot from which this Note was taken.""")
document_num = property(_get_document, _set_document, _del_document,
"""Number of the document from which this Note was taken.""")
quote_num = property(_get_quote, _set_quote, _del_quote,
"""Number of the quote from which this Note was taken.""")
notetype = property(_get_notetype, doc=""" Type of Note (read-only) """)
author = property(_get_author, _set_author, _del_author,
"""Person responsible for creating the Note.""")
text = property(_get_text, _set_text, _del_text,
"""Text of the note, stored in the database as a BLOB.""")