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
|
import datetime
import os
import sys
import time
import wx
def in_windows():
try:
in_windows = os.environ['OS'].lower().startswith("windows")
except Exception:
in_windows = False
return in_windows
def get_user_paths():
if in_windows():
user_path = os.path.join(os.environ['HOMEDRIVE'],
os.environ['HOMEPATH'])
else:
user_path = os.environ['HOME']
local_path = os.path.join(user_path, "sofa")
return user_path, local_path
def get_prog_path():
if in_windows():
prog_path = os.environ['PROGRAMFILES']
else:
prog_path = os.path.join("usr", "share", "pyshared")
return prog_path
class StaticWrapText(wx.StaticText):
"""
A StaticText-like widget which implements word wrapping.
http://yergler.net/projects/stext/stext_py.txt
__id__ = "$Id: stext.py,v 1.1 2004/09/15 16:45:55 nyergler Exp $"
__version__ = "$Revision: 1.1 $"
__copyright__ = '(c) 2004, Nathan R. Yergler'
__license__ = 'licensed under the GNU GPL2'
"""
def __init__(self, *args, **kwargs):
wx.StaticText.__init__(self, *args, **kwargs)
# store the initial label
self.__label = super(StaticWrapText, self).GetLabel()
# listen for sizing events
self.Bind(wx.EVT_SIZE, self.OnSize)
def SetLabel(self, newLabel):
"""Store the new label and recalculate the wrapped version."""
self.__label = newLabel
self.__wrap()
def GetLabel(self):
"""Returns the label (unwrapped)."""
return self.__label
def __wrap(self):
"""Wraps the words in label."""
words = self.__label.split()
lines = []
# get the maximum width (that of our parent)
max_width = self.GetParent().GetVirtualSizeTuple()[0]
index = 0
current = []
for word in words:
current.append(word)
if self.GetTextExtent(" ".join(current))[0] > max_width:
del current[-1]
lines.append(" ".join(current))
current = [word]
# pick up the last line of text
lines.append(" ".join(current))
# set the actual label property to the wrapped version
super(StaticWrapText, self).SetLabel("\n".join(lines))
# refresh the widget
self.Refresh()
def OnSize(self, event):
# dispatch to the wrap method which will
# determine if any changes are needed
self.__wrap()
def get_script_path():
"""
NB won't work within an interpreter
"""
return sys.path[0]
def get_local_path():
return "%s/sofa" % os.getenv('HOME')
def isInteger(val): #http://mail.python.org/pipermail/python-list/2006-February/368113.html
return isinstance(val, (int, long))
def isNumeric(val):
"http://www.rosettacode.org/wiki/IsNumeric#Python"
try:
i = float(val)
except ValueError:
return False
else:
return True
def flip_date(date):
"""Reorder MySQL date e.g. 2008-11-23 -> 23-11-2008"""
return "%s-%s-%s" % (date[-2:], date[5:7], date[:4])
def date_range2mysql(entered_start_date, entered_end_date):
"""
Takes date range in format "01-01-2008" for both start and end
and returns start_date and end_date in mysql format.
"""
#start date and end date must both be a valid date in that format
try:
#valid formats: http://docs.python.org/lib/module-time.html
time.strptime(entered_start_date, "%d-%m-%Y")
time.strptime(entered_end_date, "%d-%m-%Y")
def DDMMYYYY2MySQL(value):
#e.g. 26-04-2001 -> 2001-04-26 less flexible than using strptime and strftime together but much quicker
return "%s-%s-%s" % (value[-4:], value[3:5], value[:2]) #NB slice points, not start and length
start_date = DDMMYYYY2MySQL(entered_start_date)#now make MySQL-friendly dates
end_date = DDMMYYYY2MySQL(entered_end_date)#now make MySQL-friendly dates
return start_date, end_date
except:
raise Exception, "Please pass valid start and " + \
"end dates as per the required format e.g. 25-01-2007"
def mysql2textdate(mysql_date, output_format):
"""
Takes MySQL date e.g. 2008-01-25 and returns date string according to
format. NB must be valid format for strftime.
"""
year = int(mysql_date[:4])
month = int(mysql_date[5:7])
day = int(mysql_date[-2:])
mydate = (year, month, day, 0, 0, 0, 0, 0, 0)
return time.strftime(output_format, mydate)
def is_date_part(datetime_str):
"""
Assumes date will have - or / and time will not.
If a mishmash will fail ok_date later.
"""
return "-" in datetime_str or "/" in datetime_str
def is_time_part(datetime_str):
"""
Assumes time will have : (or am/pm) and date will not.
If a mishmash will fail ok_time later.
"""
return ":" in datetime_str or "am" in datetime_str.lower() \
or "pm" in datetime_str.lower()
def IsYear(datetime_str):
is_year = False
try:
year = int(datetime_str)
is_year = (1900 <= year < 10000)
except Exception:
pass
return is_year
def datetime_split(datetime_str):
"""
Split date and time (if both)
Return date part, time part, order (True unless order
time then date).
Return None for any missing components.
Must be only one space in string (if any) - between date and time
(or time and date).
"""
if " " in datetime_str:
datetime_split = datetime_str.split(" ")
if len(datetime_split) != 2:
return (None, None, True)
if is_date_part(datetime_split[0]) \
and is_time_part(datetime_split[1]):
return (datetime_split[0], datetime_split[1], True)
elif is_date_part(datetime_split[1]) \
and is_time_part(datetime_split[0]):
return (datetime_split[1], datetime_split[0], False)
else:
return (None, None, date_then_time)
elif IsYear(datetime_str):
return (datetime_str, None, True)
else: # only one part
date_then_time = True
if is_date_part(datetime_str):
return (datetime_str, None, date_then_time)
elif is_time_part(datetime_str):
return (None, datetime_str, date_then_time)
else:
return (None, None, date_then_time)
def datetime_str_valid(datetime_str):
"""
Is the datetime string in a valid format?
Returns tuple of Boolean and either a time object if True
or None if False.
Used for checking user-entered datetimes.
Doesn't cover all possibilities - just what is needed for typical data
entry.
If only a time, use today's date.
If only a date, use midnight as time e.g. MySQL 00:00:00
Acceptable formats for date component are:
2009, 2008-02-26, 1-1-2008, 01-01-2008, 01/01/2008, 1/1/2008.
Acceptable formats for time are:
2pm, 2:30pm, 14:30 , 14:30:00
http://docs.python.org/library/datetime.html#module-datetime
Should only be one space in string (if any) - between date and time
(or time and date).
"""
debug = False
# evaluate date and/or time components against allowable formats
date_part, time_part, date_time_order = datetime_split(datetime_str)
if date_part == None and time_part == None:
return False, None
# gather information on all parts
if date_part:
ok_date = False
ok_date_format = None
ok_date_formats = ["%d-%m-%Y", "%d/%m/%Y", "%Y-%m-%d", "%Y"]
for ok_date_format in ok_date_formats:
try:
t = time.strptime(date_part, ok_date_format)
ok_date = True
break
except:
pass
if time_part:
ok_time = False
ok_time_format = None
ok_time_formats = ["%I%p", "%I:%M%p", "%H:%M", "%H:%M:%S"]
for ok_time_format in ok_time_formats:
try:
t = time.strptime(time_part, ok_time_format)
ok_time = True
break
except:
pass
# determine what type of valid datetime then make time object
if date_part != None and time_part != None and ok_date and ok_time:
if date_time_order: # date then time
t = time.strptime("%s %s" % (date_part, time_part),
"%s %s" % (ok_date_format, ok_time_format))
else: # time then date
t = time.strptime("%s %s" % (time_part, date_part),
"%s %s" % (ok_time_format, ok_date_format))
elif date_part != None and time_part == None and ok_date:
# date only (add time of 00:00:00)
t = time.strptime("%s 00:00:00" % date_part,
"%s %%H:%%M:%%S" % ok_date_format)
elif date_part == None and time_part != None and ok_time:
# time only (assume today's date)
today = time.localtime()
t = time.strptime("%s-%s-%s %s" % (today[0], today[1], today[2],
time_part),
"%%Y-%%m-%%d %s" % ok_time_format)
else:
return False, None
if debug: print t
return True, t
def get_time_taken(t1, t2):
"""Return hours, minutes, seconds of time taken between t1 and t2.
Use time.clock() to create t1 and t2 inputs"""
#http://pleac.sourceforge.net/pleac_python/datesandtimes.html
difference = t2 - t1
minutes, seconds = divmod(difference, 60)
hours, minutes = divmod(minutes, 60)
time_taken_dic = {'hours': int(hours), 'minutes': int(minutes), 'seconds': int(seconds)}
return time_taken_dic
def get_datetime_stamp():
"""Get datetime stamp as string e.g. 2008-06-30-16-45-03"""
now = datetime.datetime.now() #http://pleac.sourceforge.net/pleac_python/datesandtimes.html
datetimestamp = now.strftime("%Y-%m-%d-%H-%M-%S")
return datetimestamp
def getBytesUnit(intbytes):
"""
Takes raw number of bytes and returns best string representation
e.g. 0.4 MB
"""
if intbytes < 1024:
return "%s bytes" % intbytes
elif intbytes < 1024*500:
return "%f KB" % (intbytes/1024.0)
elif intbytes < 1024*1024*500:
return "%.2f MB" % (intbytes/(1024.0*1024))
else:
return "%.2f GB" % (intbytes/(1024.0*1024*1024))
def getText(parent, title, message, default=""):
"Get user text"
dlg = wx.TextEntryDialog(parent, message, title, default,
style=wx.OK|wx.CANCEL)
if dlg.ShowModal() == wx.ID_OK:
text = dlg.GetValue()
else:
text = None
dlg.Destroy()
return text
def getTreeCtrlChildren(tree, parent):
"Get children of TreeCtrl item"
children = []
item, cookie = tree.GetFirstChild(parent) #p.471 wxPython
while item:
children.append(item)
item, cookie = tree.GetNextChild(parent, cookie)
return children
def ItemHasChildren(tree, parent):
"""
tree.ItemHasChildren(item_id) doesn't work if root is hidden.
E.g. self.tree = wx.gizmos.TreeListCtrl(self, -1,
style=wx.TR_FULL_ROW_HIGHLIGHT | \
wx.TR_HIDE_ROOT)
wxTreeCtrl::ItemHasChildren
bool ItemHasChildren(const wxTreeItemId& item) const
Returns TRUE if the item has children.
"""
item, cookie = tree.GetFirstChild(parent)
return True if item else False
def getTreeCtrlDescendants(tree, parent, descendants=None):
"""
Get all descendants (descendent is an alternative spelling
in English grrr).
"""
if descendants == None:
descendants = []
children = getTreeCtrlChildren(tree, parent)
for child in children:
descendants.append(child)
getTreeCtrlDescendants(tree, child, descendants)
return descendants
def getSubTreeItems(tree, parent):
"Return string representing subtree"
descendants = getTreeCtrlDescendants(tree, parent)
descendant_labels = [tree.GetItemText(x) for x in descendants]
return ", ".join(descendant_labels)
def getTreeAncestors(tree, child):
"Get ancestors of TreeCtrl item"
ancestors = []
item = tree.GetItemParent(child)
while item:
ancestors.append(item)
item = tree.GetItemParent(item)
return ancestors
def if_none(value, default):
"Returns default if value is None - otherwise returns value"
if value == None:
return default
else:
return value
def MySQL2string(value):
"""
Takes field data in MySQL and processes for output.
In particular, handles dates.
"""
import time
if value == None:
return ""
elif type(value).__name__ == 'datetime': #http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/511451
date_portion = str(value)[0:10]
#Unless you put a "'" on the front, Calc treats older dates (about pre-1947) as strings not dates :-(
#formats are in http://docs.python.org/lib/module-time.html
return time.strftime("%Y-%m-%d", time.strptime(date_portion, "%Y-%m-%d")) #unless YYY-mm-dd output, spreadsheets often misinterpret dates (US format issue probably)
else:
return str(value)
def run_mysql_cmd(cmd, DB_HOST, DB_USER, DB_PWD):
"Run a MySQL command as a subprocess that will not work using the cursor"
import subprocess
args = "\"C:\\Program Files\\MySQL\\MySQL Server 5.0\\bin\\mysql.exe\" " + \
" -h%s -u%s -p%s " % (DB_HOST, DB_USER, DB_PWD) + \
" --database=pgftransfer %s" % (cmd)
child = subprocess.Popen(args=args, shell=True, executable="C:\\windows\\system32\\cmd.exe")
def get_new_id(start_value=0):
"""
Get next number in sequence - uses iterator rather than global
http://www.daniweb.com/forums/thread33025.html
NB if repeatedly define this generator, will be fresh each time. Define once,
and call multiple times for the desired result ;-)
"""
id = start_value
while True:
id += 1
yield id
def empty_or_none_to_null(value, quote=False):
"""
Change empty strings and None to NULL or return string version of value.
Can return string value single quoted for inclusion into SQL so that
either NULL or 'value' is returned as appropriate e.g. when running inserts.
"""
if value == None:
return "NULL"
elif value == "":
return "NULL"
else:
if quote:
return "'" + str(value) + "'"
else:
return str(value)
|