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
|
"""
CopyCenterPlugin to provide 'TQtSQL'.
Description:
This python-script is a plugin for the CopyCenter.py.
Author:
Sebastian Sauer <mail@dipe.org>
Copyright:
GPL v2 or higher.
"""
class CopyCenterPlugin:
""" The CopyCenterPlugin to provide 'TQtSQL' to CopyCenter.py """
name = "TQtSQL Database"
""" The name this plugin has. The name should be unique and
will be used for displaying a caption. """
class Plugin:
def _init_(self,copycenterplugin):
self.copycenterplugin = copycenterplugin
self.widget = None
self.database = None
self.cursor = None
self.isfinished = True
def _init(self,copierer):
self.copierer = copierer
if not self.widget.connectClicked():
raise "Failed to connect with database."
if self.database == None or not self.database.isOpen():
raise "Database is not initialized or not opened."
self.copierer.appendProgressMessage("Connected: %s %s@%s:%i %s" %
(str(self.database.driverName()),str(self.database.userName()),str(self.database.hostName()),self.database.port(),str(self.database.databaseName())) )
self.isfinished = False
def isFinished(self):
return self.isfinished
def finish(self):
self.isfinished = True
self.widget.disconnectClicked()
def createWidget(self,dialog,parent):
return self.copycenterplugin.widget(dialog, self, parent)
class Source(Plugin):
plugintype = "Source"
def __init__(self,copycenterplugin):
self._init_(copycenterplugin)
self.options = {
'driver': 'QMYSQL3', #'QMYSQL3','QPSQL7','QODBC3',...
'hostname': '127.0.0.1',
'port': 3306,
'username': 'root', #'MyUsername',
'password': '', #'MySecretPassword',
'database': '', #'MyTQtSQLDatabase',
'table': '', #'table1',
'fields': '', #'f1,f2',
'where': '',
}
def init(self,copierer):
self._init(copierer)
tablename = str(self.widget.tableedit.text())
wherestatement = str(self.widget.whereedit.text())
from TQt import qt
from TQt import qtsql
self.cursor = qtsql.TQSqlCursor(tablename,True,self.database)
self.cursor.setFilter(wherestatement)
if not self.cursor.select():
raise "Select on cursor failed.<br>%s<br>%s" % ( str(self.cursor.lastError().driverText()),str(self.cursor.lastError().databaseText()) )
self.fieldlist = []
for fieldname in str(self.widget.fieldedit.text()).split(","):
fn = fieldname.strip()
if fn != "":
field = self.cursor.field(fn)
if not field:
raise "There exists no such field \"%s\" in the table \"%s\"." % (fn,tablename)
self.fieldlist.append(str(field.name()))
if len(self.fieldlist) < 1:
raise "No fields for table \"%s\" defined." % tablename
copierer.appendProgressMessage("SQL: %s" % str(self.cursor.executedQuery()))
def read(self):
if not self.cursor.next():
return None
record = []
for fieldname in self.fieldlist:
record.append( unicode(self.cursor.value(fieldname).toString()).encode("latin-1") )
#print "read record: %s" % record
return record
class Destination(Plugin):
plugintype = "Destination"
def __init__(self,copycenterplugin):
self._init_(copycenterplugin)
self.options = {
'driver': 'QMYSQL3', #'QMYSQL3','QPSQL7','QODBC3',...
'hostname': '127.0.0.1',
'port': 3306,
'username': 'root', #'MyUsername',
'password': '', #'MySecretPassword',
'database': '', #'MyTQtSQLDatabase',
'table': '', #'table2',
'fields': '', #'field1,field2',
'operation': 'Insert', #'Insert','Update'...
'indexfield': '',
}
def init(self,copierer):
self._init(copierer)
from TQt import qt
from TQt import qtsql
self.fieldlist = []
for fieldname in str(self.widget.fieldedit.text()).split(","):
fn = fieldname.strip()
if fn != "": self.fieldlist.append(fn)
tablename = str(self.widget.tableedit.text())
self.cursor = qtsql.TQSqlCursor(tablename,True,self.database)
{
0: self.initInsert,
1: self.initUpdate
}[ self.widget.operationedit.currentItem() ]()
def initInsert(self):
self.write = self.writeInsert
if not self.cursor.select():
raise "Select on cursor failed.<br>%s<br>%s" % ( str(self.cursor.lastError().driverText()),str(self.cursor.lastError().databaseText()) )
for fieldname in self.fieldlist: # check fieldlist
field = self.cursor.field(fieldname)
if not field: raise "There exists no such field \"%s\" in the table \"%s\"." % (fieldname, self.cursor.name())
self.copierer.appendProgressMessage("Insert SQL: %s" % str(self.cursor.executedQuery()))
def writeInsert(self, record):
print "insert record: %s" % record
from TQt import qt
cursorrecord = self.cursor.primeInsert()
count = len(record)
for i in range(len(self.fieldlist)):
if i == count: break
r = record[i]
if r == None:
v = qt.TQVariant()
else:
v = qt.TQVariant(r)
cursorrecord.setValue(self.fieldlist[i], v)
rowcount = self.cursor.insert()
if rowcount < 1:
drv = unicode(self.cursor.lastError().driverText()).encode("latin-1")
db = unicode(self.cursor.lastError().databaseText()).encode("latin-1")
print "failed: %s %s" % (drv,db)
self.copierer.writeFailed(record)
else:
self.copierer.writeSuccess(record,rowcount)
#import time
#time.sleep(1)
return True
def initUpdate(self):
self.write = self.writeUpdate
self.indexfieldname = str(self.widget.indexedit.text()).strip()
if self.indexfieldname == "": raise "No index-field defined."
pkindex = self.cursor.index(self.indexfieldname)
if not pkindex: raise "Invalid index-field defined."
self.cursor.setPrimaryIndex(pkindex)
#self.cursor.setMode( qtsql.TQSqlCursor.Insert | qtsql.TQSqlCursor.Update )
self.copierer.appendProgressMessage("Update SQL: %s" % str(self.cursor.executedQuery()))
def writeUpdate(self, record):
from TQt import qt
# determinate the primary-index
try:
idx = self.fieldlist.index(self.indexfieldname)
indexvalue = record[idx]
except:
import traceback
print "".join( traceback.format_exception(sys.exc_info()[0],sys.exc_info()[1],sys.exc_info()[2]) )
raise "Failed to determinate the value for the primary key."
# select cursor and go to matching record.
wherestatement = "%s = \"%s\"" % (self.indexfieldname, indexvalue)
if not self.cursor.select(wherestatement):
raise "Select on cursor failed.<br>%s<br>%s" % ( str(self.cursor.lastError().driverText()),str(self.cursor.lastError().databaseText()) )
if not self.cursor.next():
#print "No such record to update !"
return False
# Prepare updating the record.
cursorrecord = self.cursor.primeUpdate()
# Update the fields in the record.
count = len(record)
for i in range(len(self.fieldlist)):
if i == count: break
fieldname = self.fieldlist[i]
if self.indexfieldname != fieldname: # don't update the indexfield!
r = record[i]
if r == None:
v = qt.TQVariant()
else:
v = qt.TQVariant(r)
cursorrecord.setValue(fieldname, v)
# Write updated record.
rowcount = self.cursor.update()
if rowcount < 1:
self.copierer.writeFailed(record)
else:
self.copierer.writeSuccess(record,rowcount)
print "updated record (rowcount %s): %s" % (rowcount,record)
return True
def __init__(self, copycenter):
""" Constructor. """
pass
def widget(self,dialog,plugin,parent):
""" Each plugin may provide a qt.TQWidget back to the
CopyCenter.py. The widget will be used to configure our
plugin settings. """
from TQt import qt
import os
self.dialog = dialog
ListViewDialog = self.dialog.ListViewDialog
class TableDialog(ListViewDialog):
def __init__(self, mainwidget):
ListViewDialog.__init__(self,mainwidget,"Tables")
self.mainwidget = mainwidget
self.listview.addColumn("Name")
text = str(self.mainwidget.tableedit.text())
item = None
for table in self.mainwidget.plugin.database.tables():
if item == None:
item = qt.TQListViewItem(self.listview,table)
else:
item = qt.TQListViewItem(self.listview,item,table)
if table == text:
self.listview.setSelected(item,True)
self.listview.ensureItemVisible(item)
qt.TQObject.connect(self.listview, qt.SIGNAL("doubleClicked(QListViewItem*, const QPoint&, int)"), self.okClicked)
qt.TQObject.connect(self.okbtn, qt.SIGNAL("clicked()"), self.okClicked)
def okClicked(self):
item = self.listview.selectedItem()
if item == None:
self.mainwidget.tableedit.setText("")
else:
self.mainwidget.tableedit.setText(item.text(0))
self.close()
class FieldsDialog(ListViewDialog):
def __init__(self, mainwidget):
ListViewDialog.__init__(self,parent,"Fields")
self.mainwidget = mainwidget
self.listview.setSelectionMode(qt.TQListView.Multi)
self.listview.setSorting(-1)
self.listview.header().setClickEnabled(False)
self.listview.addColumn("Name")
self.listview.addColumn("Type")
self.listview.addColumn("Options")
tablename = str(self.mainwidget.tableedit.text())
recinfo = self.mainwidget.plugin.database.recordInfo(tablename)
if recinfo != None:
fieldslist = str(self.mainwidget.fieldedit.text()).split(",")
allfields = ("*" in fieldslist)
item = None
for fieldinfo in recinfo:
opts = ""
for s in ('Required','Calculated'): #,'Generated'):
if getattr(fieldinfo,"is%s" % s)(): opts += "%s " % s
item = self.addItem((fieldinfo.name(), qt.TQVariant.typeToName(fieldinfo.type()), opts),item)
if allfields or fieldinfo.name() in fieldslist:
self.listview.setSelected(item,True)
qt.TQObject.connect(self.okbtn, qt.SIGNAL("clicked()"), self.okClicked)
def okClicked(self):
selitems = []
item = self.listview.firstChild()
while item:
if item.isSelected():
selitems.append(str(item.text(0)))
item = item.nextSibling()
self.mainwidget.fieldedit.setText(",".join(selitems))
self.close()
class MainWidget(qt.TQHBox):
def __init__(self,plugin,dialog,parent):
from TQt import qt
from TQt import qtsql
qt.TQHBox.__init__(self,parent)
self.dialog = dialog
self.plugin = plugin
self.connectionbox = qt.TQVBox(parent)
self.connectionbox.setSpacing(2)
driverbox = qt.TQHBox(self.connectionbox)
driverlabel = qt.TQLabel("Driver:",driverbox)
self.driveredit = qt.TQComboBox(driverbox)
for driver in qtsql.TQSqlDatabase.drivers():
self.driveredit.insertItem(driver)
if self.plugin.options['driver'] == driver:
self.driveredit.setCurrentItem(self.driveredit.count() - 1)
driverlabel.setBuddy(self.driveredit)
driverbox.setStretchFactor(self.driveredit,1)
hostbox = qt.TQHBox(self.connectionbox)
hostlabel = qt.TQLabel("Hostname:",hostbox)
self.hostedit = qt.TQLineEdit(self.plugin.options['hostname'],hostbox)
hostlabel.setBuddy(self.hostedit)
hostbox.setStretchFactor(self.hostedit,1)
portbox = qt.TQHBox(self.connectionbox)
portlabel = qt.TQLabel("Port:",portbox)
self.portedit = qt.TQLineEdit(str(self.plugin.options['port']),portbox)
portlabel.setBuddy(self.portedit)
portbox.setStretchFactor(self.portedit,1)
userbox = qt.TQHBox(self.connectionbox)
userlabel = qt.TQLabel("Username:",userbox)
self.useredit = qt.TQLineEdit(self.plugin.options['username'],userbox)
userlabel.setBuddy(self.useredit)
userbox.setStretchFactor(self.useredit,1)
passbox = qt.TQHBox(self.connectionbox)
passlabel = qt.TQLabel("Password:",passbox)
self.passedit = qt.TQLineEdit(self.plugin.options['password'],passbox)
self.passedit.setEchoMode(qt.TQLineEdit.Password)
passlabel.setBuddy(self.passedit)
passbox.setStretchFactor(self.passedit,1)
dbbox = qt.TQHBox(self.connectionbox)
dblabel = qt.TQLabel("Database:",dbbox)
self.dbedit = qt.TQLineEdit(self.plugin.options['database'],dbbox)
dblabel.setBuddy(self.dbedit)
dbbox.setStretchFactor(self.dbedit,1)
statusbar = qt.TQHBox(parent)
statusbar.setSpacing(2)
statusbar.setStretchFactor(qt.TQWidget(statusbar),1)
self.connectbtn = qt.TQPushButton("Connect",statusbar)
qt.TQObject.connect(self.connectbtn, qt.SIGNAL("clicked()"),self.connectClicked)
self.disconnectbtn = qt.TQPushButton("Disconnect",statusbar)
self.disconnectbtn.setEnabled(False)
qt.TQObject.connect(self.disconnectbtn, qt.SIGNAL("clicked()"),self.disconnectClicked)
tablebox = qt.TQHBox(parent)
tablelabel = qt.TQLabel("Table:",tablebox)
self.tableedit = qt.TQLineEdit(self.plugin.options['table'],tablebox)
qt.TQObject.connect(self.tableedit, qt.SIGNAL("textChanged(const QString&)"), self.tableEditChanged)
self.tablebtn = qt.TQPushButton("...",tablebox)
self.tablebtn.setEnabled(False)
qt.TQObject.connect(self.tablebtn, qt.SIGNAL("clicked()"), self.tableBtnClicked)
tablelabel.setBuddy(self.tableedit)
tablebox.setStretchFactor(self.tableedit,1)
fieldbox = qt.TQHBox(parent)
fieldlabel = qt.TQLabel("Fields:",fieldbox)
self.fieldedit = qt.TQLineEdit(self.plugin.options['fields'],fieldbox)
self.fieldbtn = qt.TQPushButton("...",fieldbox)
self.fieldbtn.setEnabled(False)
qt.TQObject.connect(self.fieldbtn, qt.SIGNAL("clicked()"), self.fieldBtnClicked)
fieldlabel.setBuddy(self.fieldedit)
fieldbox.setStretchFactor(self.fieldedit,1)
if self.plugin.plugintype == "Source":
box = qt.TQHBox(parent)
wherelabel = qt.TQLabel("Where:",box)
self.whereedit = qt.TQLineEdit(self.plugin.options['where'],box)
wherelabel.setBuddy(self.whereedit)
box.setStretchFactor(self.whereedit,1)
elif self.plugin.plugintype == "Destination":
class OperationBox(qt.TQVBox):
def __init__(self, mainwidget, parent):
self.mainwidget = mainwidget
qt.TQVBox.__init__(self, parent)
opbox = qt.TQHBox(self)
operationlabel = qt.TQLabel("Operation:",opbox)
self.mainwidget.operationedit = qt.TQComboBox(opbox)
for op in ('Insert','Update'):
self.mainwidget.operationedit.insertItem(op)
if self.mainwidget.plugin.options['operation'] == op:
self.mainwidget.operationedit.setCurrentItem(self.mainwidget.operationedit.count() - 1)
operationlabel.setBuddy(self.mainwidget.operationedit)
opbox.setStretchFactor(self.mainwidget.operationedit,1)
self.box = None
qt.TQObject.connect(self.mainwidget.operationedit, qt.SIGNAL("activated(int)"), self.operationActivated)
self.operationActivated()
def operationActivated(self, **args):
if self.box:
self.box.hide()
self.box.destroy()
self.box = None
def showInsert(self):
pass
def showUpdate(self):
self.box = qt.TQHBox(self)
indexlabel = qt.TQLabel("Indexfield:", self.box)
self.mainwidget.indexedit = qt.TQLineEdit(self.mainwidget.plugin.options['indexfield'], self.box)
indexlabel.setBuddy(self.mainwidget.indexedit)
self.box.setStretchFactor(self.mainwidget.indexedit,1)
{
0: showInsert,
1: showUpdate,
}[ self.mainwidget.operationedit.currentItem() ](self)
if self.box != None: self.box.show()
OperationBox(self,parent)
def tableEditChanged(self,text):
if self.plugin.database != None and self.plugin.database.isOpen():
if str(text) in self.plugin.database.tables():
self.fieldbtn.setEnabled(True)
return
self.fieldbtn.setEnabled(False)
def tableBtnClicked(self):
dialog = TableDialog(self)
dialog.show()
def fieldBtnClicked(self):
dialog = FieldsDialog(self)
dialog.show()
def updateConnectState(self):
connected = self.plugin.database != None and self.plugin.database.isOpen()
self.connectionbox.setEnabled(not connected)
self.connectbtn.setEnabled(not connected)
self.disconnectbtn.setEnabled(connected)
self.tablebtn.setEnabled(connected)
self.tableEditChanged(self.tableedit.text())
def getOptionValue(self,optionname):
try:
if optionname == 'driver': return str(self.driveredit.currentText())
if optionname == 'hostname': return str(self.hostedit.text())
if optionname == 'port': return str(self.portedit.text())
if optionname == 'username': return str(self.useredit.text())
if optionname == 'password': return str(self.passedit.text())
if optionname == 'database': return str(self.dbedit.text())
if optionname == 'table': return str(self.tableedit.text())
if optionname == 'fields': return str(self.fieldedit.text())
if optionname == 'where': return str(self.whereedit.text())
if optionname == 'operation': return str(self.operationedit.currentText())
if optionname == 'indexfield': return str(self.indexedit.text())
except:
import traceback
print "".join( traceback.format_exception(sys.exc_info()[0],sys.exc_info()[1],sys.exc_info()[2]) )
return ""
def connectClicked(self):
if self.plugin.database != None and self.plugin.database.isOpen():
print "already connected. not needed to reconnect..."
self.updateConnectState()
return True
print "trying to connect..."
from TQt import qtsql
drivername = str(self.driveredit.currentText())
print "drivername: %s" % drivername
connectionname = "CopyCenter%s" % self.plugin.plugintype
print "connectionname: %s" % connectionname
self.plugin.database = qtsql.TQSqlDatabase.addDatabase(drivername,connectionname)
if not self.plugin.database:
qt.TQMessageBox.critical(self,"Failed to connect","<qt>Failed to create database for driver \"%s\"</qt>" % drivername)
return False
hostname = str(self.hostedit.text())
self.plugin.database.setHostName(hostname)
portnumber = int(str(self.portedit.text()))
self.plugin.database.setPort(portnumber)
username = str(self.useredit.text())
self.plugin.database.setUserName(username)
password = str(self.passedit.text())
self.plugin.database.setPassword(password)
databasename = str(self.dbedit.text())
self.plugin.database.setDatabaseName(databasename)
if not self.plugin.database.open():
qt.TQMessageBox.critical(self,"Failed to connect","<qt>%s<br><br>%s</qt>" % (self.plugin.database.lastError().driverText(),self.plugin.database.lastError().databaseText()))
return False
print "database is opened now!"
self.updateConnectState()
return True
def disconnectClicked(self):
print "trying to disconnect..."
if self.plugin.database:
self.plugin.database.close()
self.plugin.database = None
print "database is closed now!"
self.updateConnectState()
plugin.widget = MainWidget(plugin,self.dialog,parent)
return plugin.widget
|