-
Notifications
You must be signed in to change notification settings - Fork 2
/
ManagerWindow.py
1354 lines (1059 loc) · 47.4 KB
/
ManagerWindow.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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Name : Omero RT
Description : Omero plugin
Date : August 15, 2010
copyright : (C) 2010 by Giuseppe Sucameli (Faunalia)
email : sucameli@faunalia.it
***************************************************************************/
Omero plugin
Works done from Faunalia (http://www.faunalia.it) with funding from Regione
Toscana - S.I.T.A. (http://www.regione.toscana.it/territorio/cartografia/index.html)
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from qgis.core import *
import resources
from ConnectionManager import ConnectionManager
from AutomagicallyUpdater import AutomagicallyUpdater
from Utils import *
import os.path
currentPath = os.path.dirname(__file__)
class ManagerWindow(QDockWidget):
# nomi tabelle contenenti le geometrie
TABLE_GEOM_ORIG = "GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZA".lower()
TABLE_GEOM_MODIF = "GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE".lower()
# nomi dei layer in TOC
LAYER_GEOM_ORIG = "Geometrie Originali"
LAYER_GEOM_MODIF = "Geom. per le schede (invar., suddiv., ex-novo)"
LAYER_FOTO = "Foto Edifici"
# ID dei layer contenenti geometrie e wms
VLID_GEOM_ORIG = ''
VLID_GEOM_MODIF = ''
VLID_FOTO = ''
RLID_WMS = {}
# stile per i layer delle geometrie
STYLE_FOLDER = "styles"
STYLE_GEOM_ORIG = "stile_geometrie_originali.qml"
STYLE_GEOM_MODIF = "stile_geometrie_modificate.qml"
STYLE_FOTO = "stile_fotografie.qml"
SCALE_IDENTIFY = 5000
SCALE_MODIFY = 2000
DEFAULT_SRID = 3003
instance = None
def __init__(self, parent=None, iface=None):
QDockWidget.__init__(self, parent)
self.setAttribute(Qt.WA_DeleteOnClose)
self.setupUi()
ManagerWindow.instance = self
self.iface = iface
self.canvas = self.iface.mapCanvas()
self.scheda = None
self.uvScheda = None
self.isApriScheda = True
self.srid = ManagerWindow.DEFAULT_SRID
self.startedYet = False
###AutomagicallyUpdater.setOfflineMode(True)
self.offlineMode = AutomagicallyUpdater.offlineMode()
# crea la label da visualizzare nella status bar
self.status = ManagerWindow.StatusWidget( self.iface.mainWindow().statusBar() )
MapTool.canvas = self.canvas
self.nuovaPointEmitter = FeatureFinder()
self.nuovaPointEmitter.registerStatusMsg( u"Click per identificare la geometria da associare alla nuova scheda" )
QObject.connect(self.nuovaPointEmitter, SIGNAL("pointEmitted"), self.identificaNuovaScheda)
self.esistentePointEmitter = FeatureFinder()
QObject.connect(self.esistentePointEmitter, SIGNAL("pointEmitted"), self.identificaSchedaEsistente)
self.polygonDrawer = PolygonDrawer()
self.polygonDrawer.registerStatusMsg( u"Click sx per disegnare la nuova gemetria, click dx per chiuderla" )
QObject.connect(self.polygonDrawer, SIGNAL("geometryEmitted"), self.creaNuovaGeometria)
self.lineDrawer = LineDrawer()
self.lineDrawer.registerStatusMsg( u"Click sx per disegnare la linea di taglio, click dx per chiuderla" )
QObject.connect(self.lineDrawer, SIGNAL("geometryEmitted"), self.spezzaGeometriaEsistente)
self.fotoPointEmitter = FeatureFinder()
self.fotoPointEmitter.registerStatusMsg( u"Click su una foto per visualizzarla" )
QObject.connect(self.fotoPointEmitter, SIGNAL("pointEmitted"), self.identificaFoto)
self.connect(self.iface.mapCanvas(), SIGNAL( "mapToolSet(QgsMapTool *)" ), self.toolChanged)
self.connect(self.btnSelNuovaScheda, SIGNAL("clicked()"), self.identificaNuovaScheda)
self.connect(self.btnSelSchedaEsistente, SIGNAL("clicked()"), self.apriScheda)
self.connect(self.btnEliminaScheda, SIGNAL("clicked()"), self.eliminaScheda)
self.connect(self.btnSpezzaGeometriaEsistente, SIGNAL("clicked()"), self.spezzaGeometriaEsistente)
self.connect(self.btnCreaNuovaGeometria, SIGNAL("clicked()"), self.creaNuovaGeometria)
self.connect(self.btnRipulisciGeometrie, SIGNAL("clicked()"), self.ripulisciGeometrie)
self.connect(self.btnRiepilogoSchede, SIGNAL("clicked()"), self.riepilogoSchede)
self.connect(self.btnStradario, SIGNAL("clicked()"), self.gestioneStradario)
self.connect(self.btnSelFoto, SIGNAL("clicked()"), self.identificaFoto)
self.connect(self.btnAbout, SIGNAL("clicked()"), self.about)
self.connect(self.iface, SIGNAL("projectRead()"), self.reloadLayersFromProject)
self.connect(self.iface, SIGNAL("newProjectCreated()"), self.close)
def setupUi(self):
self.setObjectName( "rt_omero_dockwidget" )
self.setWindowTitle( "Omero RT" )
child = QWidget()
vLayout = QVBoxLayout( child )
group = QGroupBox( "Schede edificio", child )
vLayout.addWidget( group )
gridLayout = QGridLayout( group )
text = u"Nuova"
self.btnSelNuovaScheda = QPushButton( QIcon(":/icons/nuova_scheda.png"), text, group )
#text = u"Identifica la geometria per la creazione di una nuova scheda edificio"
text = u"Crea nuova scheda edificio"
self.btnSelNuovaScheda.setToolTip( text )
self.btnSelNuovaScheda.setCheckable(True)
gridLayout.addWidget(self.btnSelNuovaScheda, 0, 0, 1, 1)
text = u"Modifica"
self.btnSelSchedaEsistente = QPushButton( QIcon(":/icons/modifica_scheda.png"), text, group )
#text = u"Identifica la geometria per l'apertura di una scheda già esistente su di essa"
text = u"Modifica scheda edificio esistente"
self.btnSelSchedaEsistente.setToolTip( text )
self.btnSelSchedaEsistente.setCheckable(True)
gridLayout.addWidget(self.btnSelSchedaEsistente, 0, 1, 1, 1)
text = u"Elimina"
self.btnEliminaScheda = QPushButton( QIcon(":/icons/cancella_scheda.png"), text, group )
text = u"Elimina scheda edificio"
self.btnEliminaScheda.setToolTip( text )
self.btnEliminaScheda.setCheckable(True)
gridLayout.addWidget(self.btnEliminaScheda, 0, 2, 1, 1)
text = u"Riepilogo schede edificio"
self.btnRiepilogoSchede = QPushButton( QIcon(":/icons/riepilogo_schede.png"), text, group )
self.btnRiepilogoSchede.setToolTip( text )
gridLayout.addWidget(self.btnRiepilogoSchede, 1, 0, 1, 3)
group = QGroupBox( "Geometrie", child )
vLayout.addWidget( group )
gridLayout = QGridLayout( group )
text = u"Crea nuova"
self.btnCreaNuovaGeometria = QPushButton( QIcon(":/icons/crea_geometria.png"), text, group )
text = u"Crea nuova geometria"
self.btnCreaNuovaGeometria.setToolTip( text )
self.btnCreaNuovaGeometria.setCheckable(True)
gridLayout.addWidget(self.btnCreaNuovaGeometria, 0, 0, 1, 1)
text = u"Suddividi"
self.btnSpezzaGeometriaEsistente = QPushButton( QIcon(":/icons/spezza_geometria.png"), text, group )
text = u"Suddividi una geometria"
self.btnSpezzaGeometriaEsistente.setToolTip( text )
self.btnSpezzaGeometriaEsistente.setCheckable(True)
gridLayout.addWidget(self.btnSpezzaGeometriaEsistente, 0, 1, 1, 1)
text = u"Ripulisci geometrie non associate"
self.btnRipulisciGeometrie = QPushButton( QIcon(":/icons/ripulisci.png"), text, group )
self.btnRipulisciGeometrie.setToolTip( text )
gridLayout.addWidget(self.btnRipulisciGeometrie, 1, 0, 1, 2)
text = u"Gestione stradario"
self.btnStradario = QPushButton( QIcon(":/icons/stradario.png"), text, child )
self.btnStradario.setToolTip( text )
vLayout.addWidget( self.btnStradario )
#gridLayout.addWidget(self.btnStradario, 6, 0, 1, 2)
text = u"Visualizza foto"
self.btnSelFoto = QPushButton( QIcon(":/icons/foto.png"), text, child )
self.btnSelFoto.setToolTip( text )
self.btnSelFoto.setCheckable(True)
vLayout.addWidget( self.btnSelFoto )
#gridLayout.addWidget(self.btnSelFoto, 7, 0, 1, 1)
text = u"About"
self.btnAbout = QPushButton( QIcon(":/icons/about.png"), text, child )
self.btnAbout.setToolTip( text )
vLayout.addWidget( self.btnAbout )
#gridLayout.addWidget(self.btnAbout, 7, 1, 1, 1)
self.setWidget(child)
def about(self):
if self.canvas.isDrawing():
return # wait until the renderer ends
from DlgAbout import DlgAbout
DlgAbout(self).exec_()
def toolChanged(self, tool):
self.status.clear()
self.btnCreaNuovaGeometria.setChecked( self.polygonDrawer.isActive() )
self.btnSpezzaGeometriaEsistente.setChecked( self.lineDrawer.isActive() )
if tool == None:
return
self.btnSelSchedaEsistente.setChecked( self.isApriScheda and self.esistentePointEmitter.isActive() )
if self.btnSelSchedaEsistente.isChecked():
self.status.show( u"Click per identificare la scheda da variare" )
self.btnEliminaScheda.setChecked( not self.isApriScheda and self.esistentePointEmitter.isActive() )
if self.btnEliminaScheda.isChecked():
self.status.show( u"Click per identificare la scheda da eliminare" )
self.btnSelNuovaScheda.setChecked( self.nuovaPointEmitter.isActive() )
self.btnSelFoto.setChecked( self.fotoPointEmitter.isActive() )
# imposta il messaggio di stato dei tool
for tool, statusMessage in MapTool.registeredToolStatusMsg.iteritems():
if tool.isActive():
self.status.show( statusMessage )
@classmethod
def checkActionScale(self, actionName, maxScale):
if int(self.instance.canvas.scale()) > maxScale:
QMessageBox.warning( self.instance, "Azione non permessa", u"L'azione \"%s\" è ammessa solo dalla scala 1:%d" % (actionName, maxScale) )
return False
return True
@classmethod
def _checkActionSpatial(self, actionName, geomSubQuery):
comuneID = AutomagicallyUpdater._getIDComune()
# do not check the intersection
# if ZZ_DISCLAIMER.BUFFER is NULL OR ZZ_COMUNE
sql = """
SELECT
com.NOME,
CASE
WHEN dis.BUFFER < 0 THEN 1 -- permitted
WHEN com.geometria IS NULL THEN 0 -- forbidden
ELSE -1 -- need an intersection test
END
FROM
ZZ_COMUNI AS com,
ZZ_DISCLAIMER AS dis
WHERE
com.ISTATCOM = ?
"""
query = AutomagicallyUpdater.Query( sql, [comuneID] ).getQuery()
if not query.exec_() or not query.next():
AutomagicallyUpdater._onQueryError( query.lastQuery(), query.lastError().text(), self )
return False
AutomagicallyUpdater._onQueryExecuted( query.lastQuery(), None, [comuneID] )
comune = Porting.str( query.value(0) )
comune = u' "%s"' % comune if comune and len(comune) > 0 else ''
ok = int( query.value(1) )
if ok > 0: # action permitted
return True
elif ok == 0: # action forbidden
QMessageBox.warning( self.instance, "Azione non permessa", u"L'azione \"%s\" non è permessa poiché il confine del comune%s non è definito." % (actionName, comune) )
return False
#if ok < 0: # need an intersection test
comSubQuery = """
SELECT
CASE
WHEN com.geometria IS NULL OR dis.BUFFER <= 0 THEN com.geometria
ELSE ST_Buffer(com.geometria, dis.BUFFER)
END AS confine
FROM
ZZ_COMUNI AS com,
ZZ_DISCLAIMER AS dis
WHERE
com.ISTATCOM = ?
"""
query = ConnectionManager.getNewQuery( AutomagicallyUpdater.EDIT_CONN_TYPE )
if query == None:
QMessageBox.information(None, "ok", "query: %s" % geomSubQuery.query)
return False
query.prepare( "SELECT count(*) FROM (%s) AS com, (%s) AS geo WHERE ST_Intersects(geo.edificio, com.confine) = 1""" % (comSubQuery, geomSubQuery.query) )
params = [ comuneID ]
params.extend( geomSubQuery.params )
for p in params:
query.addBindValue( p )
if not query.exec_() or not query.next():
AutomagicallyUpdater._onQueryError( query.lastQuery(), query.lastError().text(), self )
return False
AutomagicallyUpdater._onQueryExecuted( query.lastQuery(), None, params )
numElements = query.value(0)
ok = int( numElements ) > 0
if not ok:
QMessageBox.warning( self.instance, "Azione non permessa", u"L'azione \"%s\" non è ammessa perché fuori dal confine del comune %s." % (actionName, comune) )
return False
return True
@classmethod
def checkActionSpatialFromFeature(self, actionName, feat, onLayerModif):
codice = Porting.str( feat.attributes()[0] )
return self.checkActionSpatialFromId(actionName, codice, onLayerModif)
@classmethod
def checkActionSpatialFromId(self, actionName, codice, onLayerModif):
geomTable = "GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE" if onLayerModif else "GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZA"
idCol = "ID_UV_NEW" if onLayerModif else "CODICE"
query = AutomagicallyUpdater.Query( "SELECT geometria AS edificio FROM %s WHERE %s = ?" % (geomTable, idCol), [codice] )
return self._checkActionSpatial(actionName, query)
@classmethod
def checkActionSpatialFromWkb(self, actionName, wkb, srid):
comune = AutomagicallyUpdater._getIDComune()
query = AutomagicallyUpdater.Query( "SELECT ST_GeomFromWkb(?, ?) AS edificio", [wkb, srid] )
return self._checkActionSpatial(actionName, query)
@classmethod
def checkActionSpatialFromWkt(self, actionName, wkt, srid):
comune = AutomagicallyUpdater._getIDComune()
#wkt = "'%s'" % wkt
query = AutomagicallyUpdater.Query( "SELECT ST_GeomFromText(?, ?) AS edificio", [wkt, srid] )
return self._checkActionSpatial(actionName, query)
def riepilogoSchede(self):
if self.canvas.isDrawing():
return # wait until the renderer ends
from DlgRiepilogoSchede import DlgRiepilogoSchede
return DlgRiepilogoSchede(self).exec_()
def gestioneStradario(self):
if self.canvas.isDrawing():
return # wait until the renderer ends
from DlgStradario import DlgStradario
return DlgStradario(self).exec_()
def identificaNuovaScheda(self, point=None, button=None):
action = self.btnSelNuovaScheda.toolTip()
if not self.checkActionScale( action, self.SCALE_IDENTIFY ) or point == None:
return self.nuovaPointEmitter.startCapture()
if button != Qt.LeftButton:
self.btnSelNuovaScheda.setChecked(False)
return
layerModif = QgsMapLayerRegistry.instance().mapLayer( ManagerWindow.VLID_GEOM_MODIF )
if layerModif == None:
self.btnSelNuovaScheda.setChecked(False)
return
feat = self.nuovaPointEmitter.findAtPoint(layerModif, point)
if feat != None:
if not self.checkActionSpatialFromFeature( action, feat, True ):
return self.nuovaPointEmitter.startCapture()
# controlla se tale geometria ha qualche scheda associata
codice = Porting.str( feat.attributes()[0] )
ret = AutomagicallyUpdater.Query( "SELECT ABBINATO_A_SCHEDA FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE WHERE ID_UV_NEW = ?", [codice] ).getFirstResult()
abbinato = (Porting.str(ret) == "1") if ret != None else 0
if abbinato:
# NO, c'è già una scheda associata
QMessageBox.warning( self, "RT Omero", "La geometria selezionata appartiene ad un edificio gia' esistente" )
return self.nuovaPointEmitter.startCapture()
# OK, non esiste alcuna scheda associata a tale geometria
# associa la UV a tale geometria
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
self.apriScheda(codice)
QApplication.restoreOverrideCursor()
self.btnSelNuovaScheda.setChecked(False)
return
layerOrig = QgsMapLayerRegistry.instance().mapLayer( ManagerWindow.VLID_GEOM_ORIG )
if layerOrig == None:
self.btnSelNuovaScheda.setChecked(False)
return
feat = self.nuovaPointEmitter.findAtPoint(layerOrig, point)
if feat != None:
if not self.checkActionSpatialFromFeature( action, feat, False ):
return
uvID = self.copiaGeometria(feat)
if uvID == None:
return
self.apriScheda(uvID)
QApplication.restoreOverrideCursor()
self.btnSelNuovaScheda.setChecked(False)
return
return self.nuovaPointEmitter.startCapture()
def identificaSchedaEsistente(self, point=None, button=None):
def getButton():
return self.btnSelSchedaEsistente if self.isApriScheda else self.btnEliminaScheda
action = getButton().toolTip()
if not self.checkActionScale( action, self.SCALE_IDENTIFY ) or point == None:
return self.esistentePointEmitter.startCapture()
if button != Qt.LeftButton:
getButton().setChecked(False)
return
layerModif = QgsMapLayerRegistry.instance().mapLayer( ManagerWindow.VLID_GEOM_MODIF )
if layerModif == None:
getButton().setChecked(False)
return
feat = self.esistentePointEmitter.findAtPoint(layerModif, point)
if feat != None:
if not self.checkActionSpatialFromFeature( action, feat, True ):
return self.esistentePointEmitter.startCapture()
# controlla se tale geometria ha qualche scheda associata
codice = Porting.str( feat.attributes()[0] )
ret = AutomagicallyUpdater.Query( "SELECT ABBINATO_A_SCHEDA FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE WHERE ID_UV_NEW = ?", [codice] ).getFirstResult()
abbinato = (Porting.str(ret) == "1") if ret != None else 0
if abbinato:
# OK, c'è già una scheda associata
codice = Porting.str( feat.attributes()[0] )
if self.isApriScheda:
self.apriScheda( codice )
else:
self.eliminaScheda( codice )
getButton().setChecked(False)
return
# NO, non esiste alcuna scheda associata a tale geometria
QMessageBox.warning( self, "RT Omero", "Non esiste alcun edificio sulla geometria selezionata" )
return self.esistentePointEmitter.startCapture()
return self.esistentePointEmitter.startCapture()
def identificaFoto(self, point=None, button=None):
action = self.btnSelFoto.toolTip()
if not self.checkActionScale( action, self.SCALE_IDENTIFY ) or point == None:
return self.fotoPointEmitter.startCapture()
if button != Qt.LeftButton:
self.btnSelFoto.setChecked(False)
return
layerFoto = QgsMapLayerRegistry.instance().mapLayer( ManagerWindow.VLID_FOTO )
if layerFoto == None:
self.btnSelFoto.setChecked(False)
return
featIds = self.fotoPointEmitter.findAtPoint(layerFoto, point, False, True, overrideSearchRadius=True)
if len(featIds) > 0:
from DlgVisualizzaFoto import DlgVisualizzaFoto
dlg = DlgVisualizzaFoto(self)
dlg.exec_( featIds )
self.btnSelFoto.setChecked(False)
return
return self.fotoPointEmitter.startCapture()
def spezzaGeometriaEsistente(self, line=None):
def salvaGeometriaSpezzata(codice, stato, wkb):
if stato != '9':
# se la geometria iniziale era copiata o spezzata,
# crea una nuova geometria spezzata
newID = AutomagicallyUpdater._insertGeometriaSpezzata( wkb, self.srid, codice )
else:
# altrimenti crea una geometria non presente tra le
# geometrie originali
newID = AutomagicallyUpdater._insertGeometriaNuova( wkb, self.srid )
return newID
action = self.btnSpezzaGeometriaEsistente.toolTip()
if not self.checkActionScale( action, self.SCALE_MODIFY ):
self.lineDrawer.startCapture()
self.lineDrawer.stopCapture()
self.btnSpezzaGeometriaEsistente.setChecked(False)
return
if line == None:
return self.lineDrawer.startCapture()
wkb = str( QByteArray(line.asWkb()).toHex() )
wkt = str( line.exportToWkt() )
#TODO: fai qui i test sulla linea
try:
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
ConnectionManager.startTransaction()
# copia le geometrie originali non ancora copiate e che intersecano la linea
query = ConnectionManager.getNewQuery( AutomagicallyUpdater.EDIT_CONN_TYPE )
if query == None:
return False
#query.prepare( "SELECT CODICE, ST_AsText(geometria) FROM GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZA WHERE ST_Intersects(geometria, ST_GeomFromWkb(?, ?)) AND CODICE NOT IN (SELECT GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE)" )
#query.addBindValue( wkb )
query.prepare( "SELECT CODICE, ST_AsText(geometria) FROM GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZA WHERE ST_Intersects(geometria, ST_GeomFromText(?, ?)) AND CODICE NOT IN (SELECT GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE)" )
query.addBindValue( wkt )
query.addBindValue( self.srid )
if not query.exec_():
AutomagicallyUpdater._onQueryError( query.lastQuery(), query.lastError().text(), self )
return False
featureList = []
while query.next():
ID = None
codice = Porting.str( query.value(0) )
geomtext = Porting.str( query.value(1) )
featureList.append( (ID, codice, geomtext) )
for ID, codice, geomtext in featureList:
# escludi le geometrie esterne al comune
if not self.checkActionSpatialFromId( action, codice, False ):
continue
geom = QgsGeometry.fromWkt( geomtext )
(retval, newGeometries, topologyTestPoints) = geom.splitGeometry( line.asPolyline(), False )
if retval == 1: # nessuna spezzatura
continue
# copia la geometria nel layer delle geometrie modificate
ID = AutomagicallyUpdater._insertGeometriaCopiata( codice )
if ID == None:
return False
# recupera le geometrie modificate che intersecano la linea e non hanno scheda abbinata
#query.prepare( "SELECT ID_UV_NEW, GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE, ZZ_STATO_GEOMETRIAID, ST_AsText(geometria) FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE WHERE ST_Intersects(geometria, ST_GeomFromWkb(?, ?)) AND ABBINATO_A_SCHEDA = '0'" )
#query.addBindValue( wkb )
query.prepare( "SELECT ID_UV_NEW, GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE, ZZ_STATO_GEOMETRIAID, ST_AsText(geometria) FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE WHERE ST_Intersects(geometria, ST_GeomFromText(?, ?)) AND ABBINATO_A_SCHEDA = '0'" )
query.addBindValue( wkt )
query.addBindValue( self.srid )
if not query.exec_():
AutomagicallyUpdater._onQueryError( query.lastQuery(), query.lastError().text(), self )
return False
featureList = []
while query.next():
ID = Porting.str( query.value(0) )
codice = Porting.str( query.value(1) )
stato = Porting.str( query.value(2) )
geomtext = Porting.str( query.value(3) )
featureList.append( (ID, codice, stato, geomtext) )
for ID, codice, stato, geomtext in featureList:
# escludi le geometrie esterne al comune
if not self.checkActionSpatialFromId( action, ID, True ):
continue
geom = QgsGeometry.fromWkt( geomtext )
(retval, newGeometries, topologyTestPoints) = geom.splitGeometry( line.asPolyline(), False )
if retval == 1: # nessuna spezzatura
continue
if stato != '9':
# imposta la geometria iniziale come spezzata
AutomagicallyUpdater._updateValue( { 'ZZ_STATO_GEOMETRIAID' : '2' }, 'GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE', 'ID_UV_NEW', ID )
# aggiorna la geometria iniziale con la nuova geometria
wkb = str( QByteArray(geom.asWkb()).toHex() )
wkt = str( geom.exportToWkt() )
AutomagicallyUpdater._updateGeometria( ID, wkt, self.srid )
# salva le nuove geometrie create dalla spezzatura
for geometry in newGeometries:
newWkb = str( QByteArray(geometry.asWkb()).toHex() )
newWkt = str( geometry.exportToWkt() )
newID = salvaGeometriaSpezzata(codice, stato, newWkt)
del geometry
except ConnectionManager.AbortedException, e:
QMessageBox.critical(self, "Errore", Porting.str( e ))
return False
finally:
ConnectionManager.endTransaction()
QApplication.restoreOverrideCursor()
self.btnSpezzaGeometriaEsistente.setChecked(False)
# aggiorna il layer con le geometrie modificate
self.aggiornaLayerModif()
return True
def creaNuovaGeometria(self, polygon=None):
action = self.btnCreaNuovaGeometria.toolTip()
if not self.checkActionScale( action, self.SCALE_MODIFY ):
self.polygonDrawer.startCapture()
self.polygonDrawer.stopCapture()
self.btnCreaNuovaGeometria.setChecked(False)
return
if polygon == None:
return self.polygonDrawer.startCapture()
wkb = str( QByteArray(polygon.asWkb()).toHex() )
wkt = str( polygon.exportToWkt() )
# TODO: fai qui i test sul poligono
# if not self.checkActionSpatialFromWkb( action, wkb, self.srid ):
# self.btnCreaNuovaGeometria.setChecked(False)
# return
if not self.checkActionSpatialFromWkt( action, wkt, self.srid ):
self.btnCreaNuovaGeometria.setChecked(False)
return
try:
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
ConnectionManager.startTransaction()
# inserisce la nuova geometria nel layer
# if None == AutomagicallyUpdater._insertGeometriaNuova( wkb, self.srid ):
# return False
if None == AutomagicallyUpdater._insertGeometriaNuova( wkt, self.srid ):
return False
except ConnectionManager.AbortedException, e:
QMessageBox.critical(self, "Errore", Porting.str( e ))
return False
finally:
ConnectionManager.endTransaction()
QApplication.restoreOverrideCursor()
self.btnCreaNuovaGeometria.setChecked(False)
# aggiorna il layer con le geometrie modificate
self.aggiornaLayerModif()
return True
@classmethod
def copiaGeometria(self, feat):
if feat == None:
return
try:
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
ConnectionManager.startTransaction()
# copia la geometria selezionata nel layer delle geometrie nuove o modificate
codice = Porting.str( feat.attributes()[0] )
ID = AutomagicallyUpdater._insertGeometriaCopiata( codice )
if ID == None:
return
except ConnectionManager.AbortedException, e:
QMessageBox.critical(None, "Errore", Porting.str( e ))
return
finally:
ConnectionManager.endTransaction()
QApplication.restoreOverrideCursor()
# aggiorna il layer con le geometrie modificate
self.aggiornaLayerModif()
return ID
def ripulisciGeometrie(self):
try:
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
# avvisa l'utente segnalando quante UV si stanno per eliminare
# quindi chiedi se vuole davvero eliminarle
numUV = AutomagicallyUpdater.Query( "SELECT count(*) FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE AS gm1 WHERE (gm1.ZZ_STATO_GEOMETRIAID <> '2' /* non spezzate */ AND gm1.ID_UV_NEW NOT IN (SELECT GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATEID_UV_NEW FROM SCHEDA_UNITA_VOLUMETRICA) /* senza scheda associata */ ) OR (gm1.ZZ_STATO_GEOMETRIAID = '2' /* spezzate */ AND 0 = (SELECT count(*) FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE as gm2 JOIN SCHEDA_UNITA_VOLUMETRICA AS uv ON gm2.ID_UV_NEW = uv.GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATEID_UV_NEW WHERE gm1.GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE = gm2.GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE) /* fanno parte dello stesso edificio */ ) /* i cui pezzi sono tutti senza geometria associata */" ).getFirstResult()
except:
raise
finally:
QApplication.restoreOverrideCursor()
if numUV == None:
return
if int(numUV) <= 0:
QMessageBox.information(self, "Nessuna geometria trovata", "Non esistono geometrie senza scheda associata." )
return
if QMessageBox.Ok != QMessageBox.warning(self, "Eliminazione geometrie non associate", u"Esistono %s geometrie senza alcuna scheda associata. Vuoi eliminarle? L'operazione non è reversibile." % numUV, QMessageBox.Ok|QMessageBox.Cancel ):
return
try:
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
ConnectionManager.startTransaction()
# eliminazione geometrie non associate ad alcuna scheda: vedi query precedente
AutomagicallyUpdater._deleteGeometria( None, "ID_UV_NEW IN (SELECT gm1.ID_UV_NEW FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE AS gm1 WHERE (gm1.ZZ_STATO_GEOMETRIAID <> '2' /* non spezzate */ AND gm1.ID_UV_NEW NOT IN (SELECT GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATEID_UV_NEW FROM SCHEDA_UNITA_VOLUMETRICA) /* senza scheda associata */ ) OR (gm1.ZZ_STATO_GEOMETRIAID = '2' AND 0 = (SELECT count(*) FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE as gm2 JOIN SCHEDA_UNITA_VOLUMETRICA AS uv ON gm2.ID_UV_NEW = uv.GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATEID_UV_NEW WHERE gm1.GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE = gm2.GEOMETRIE_UNITA_VOLUMETRICHE_ORIGINALI_DI_PARTENZACODICE)))" )
except ConnectionManager.AbortedException, e:
QMessageBox.critical(self, "Errore", Porting.str( e ))
return
finally:
ConnectionManager.endTransaction()
QApplication.restoreOverrideCursor()
# aggiorna il layer con le geometrie modificate
self.aggiornaLayerModif()
def apriScheda(self, uvID=None):
if uvID == None:
self.isApriScheda = True
return self.identificaSchedaEsistente()
else:
if not self.checkActionSpatialFromId( "Apri scheda", uvID, True ):
return
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
self.chiudiSchedaAperta()
self.uvScheda = uvID
self.scheda = self.recuperaScheda( uvID )
self.connect( self.scheda, SIGNAL("closed()"), self.onSchedaChiusa)
if self.scheda._ID == None:
# salva la scheda e imposta la geometria come abbinata a scheda
try:
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
ConnectionManager.startTransaction()
self.scheda.save()
AutomagicallyUpdater._updateValue( { "ABBINATO_A_SCHEDA" : '1' }, "GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE", "ID_UV_NEW", uvID )
except ConnectionManager.AbortedException, e:
QMessageBox.critical(self, "Errore", Porting.str( e ))
return
finally:
ConnectionManager.endTransaction()
QApplication.restoreOverrideCursor()
self.scheda.show()
QApplication.restoreOverrideCursor()
return True
def onSchedaChiusa(self):
self.scheda = None
def recuperaScheda(self, uvID):
query = AutomagicallyUpdater.Query( "SELECT SCHEDA_EDIFICIOID FROM SCHEDA_UNITA_VOLUMETRICA WHERE GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATEID_UV_NEW = ?", [ uvID ] )
schedaID = query.getFirstResult()
from SchedaEdificio import SchedaEdificio
return SchedaEdificio(self, schedaID)
def chiudiSchedaAperta(self):
if self.scheda != None:
self.scheda.close()
self.scheda = None
def eliminaScheda(self, codice=None):
if codice == None:
self.isApriScheda = False
return self.identificaSchedaEsistente()
else:
if not self.checkActionSpatialFromId( "Elimina scheda", codice, True ):
return
# se c'è una scheda aperta verifica se si stia per eliminare quella
if self.scheda != None:
schedaID = AutomagicallyUpdater.Query( "SELECT SCHEDA_EDIFICIOID FROM SCHEDA_UNITA_VOLUMETRICA WHERE GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATEID_UV_NEW = ?", [ codice ] ).getFirstResult()
if schedaID != None:
# esiste una scheda uv associata alla geometria
aperta = schedaID == self.scheda._ID
else:
# geometria non associata a una scheda uv
# potrebbe però essere una nuova uv selezionata nella scheda
# aperta e per questo non ancora salvata
ret = AutomagicallyUpdater.Query( "SELECT ABBINATO_A_SCHEDA FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE WHERE ID_UV_NEW = ?", [ codice ] ).getFirstResult()
aperta = (Porting.str(ret) == "1") if ret != None else 0
if aperta:
QMessageBox.warning( self, "Eliminazione scheda", u"La geometria selezionata appartiene alla scheda edificio aperta. Prima di proseguire è necessario chiudere la scheda.", QMessageBox.Ok )
self.scheda.setMinimized( False )
return
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
# avvisa l'utente segnalando quante UV sono collegate a questa scheda
# quindi chiedi se vuole davvero eliminare la scheda
numUV = AutomagicallyUpdater.Query( "SELECT count(*) FROM SCHEDA_UNITA_VOLUMETRICA WHERE SCHEDA_EDIFICIOID IN (SELECT ed.ID FROM SCHEDA_EDIFICIO AS ed JOIN SCHEDA_UNITA_VOLUMETRICA AS uv ON uv.SCHEDA_EDIFICIOID = ed.ID WHERE uv.GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATEID_UV_NEW = ?)", [codice] ).getFirstResult()
QApplication.restoreOverrideCursor()
if numUV == None:
return
if QMessageBox.Ok != QMessageBox.warning( self, "Eliminazione scheda", u"La scheda ha %s UV associate. Eliminare? L'operazione non è reversibile." % numUV, QMessageBox.Ok|QMessageBox.Cancel ):
return
# elimina la scheda
scheda = self.recuperaScheda( codice )
try:
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
ConnectionManager.startTransaction()
scheda.delete()
except ConnectionManager.AbortedException, e:
QMessageBox.critical(self, "Errore", Porting.str( e ))
return
finally:
ConnectionManager.endTransaction()
QApplication.restoreOverrideCursor()
# aggiorna il layer con le geometrie modificate
self.aggiornaLayerModif()
return True
def selezionaScheda(self, uvID, centra=True):
if uvID == None:
return
layerModif = QgsMapLayerRegistry.instance().mapLayer( ManagerWindow.VLID_GEOM_MODIF )
if layerModif == None:
return
geomID = AutomagicallyUpdater.Query( "SELECT ROWID FROM GEOMETRIE_RILEVATE_NUOVE_O_MODIFICATE WHERE ID_UV_NEW = ?", [uvID] ).getFirstResult()
if geomID == None:
layerModif.removeSelection()
return
layerModif.removeSelection()
layerModif.select(int(geomID))
if centra:
self.canvas.zoomToSelected( layerModif )
return True
def getPathToDB(self, forceDialog=False):
from DlgSelezionaDB import DlgSelezionaDB
pathToDB = AutomagicallyUpdater._getPathToDb()
if pathToDB == "" or not QFileInfo( pathToDB ).exists():
if not DlgSelezionaDB( self ).exec_():
return
return AutomagicallyUpdater._getPathToDb()
if forceDialog:
return DlgSelezionaDB.selezionaDB( self )
return pathToDB
def setDBConnection(self):
path = self.getPathToDB()
while( path != None ):
if ConnectionManager.setConnection(path):
return True
QMessageBox.critical(self, "RT Omero", "Connessione non riuscita. \nImpossibile collegarsi al database %s" % path )
path = self.getPathToDB(True)
return False
def startPlugin(self):
if not self.setDBConnection():
return False
AutomagicallyUpdater._reset()
from DlgSceltaRilevatore import DlgSceltaRilevatore
if not DlgSceltaRilevatore().exec_():
if not self.startedYet:
ConnectionManager.closeConnection()
return False
self.startedYet = True
# try to restore position from stored main window state
if not self.iface.mainWindow().restoreDockWidget(self):
self.iface.mainWindow().addDockWidget(Qt.LeftDockWidgetArea, self)
# force show even if it was restored as hidden
self.show()
self.activateWindow()
self.raise_()
QApplication.processEvents( QEventLoop.ExcludeUserInputEvents )
return True
def exec_(self):
firstStart = not self.startedYet
if not self.startPlugin():
return False
# load all the layers from db
if not self.loadLayersInCanvas( firstStart ):
QMessageBox.critical(self, "RT Omero", "Impossibile caricare i layer richiesti dal database selezionato")
return False
return True
def reloadLayersFromProject(self):
valid = False
offline = False
# check for valid omero layers
for l in self.iface.legendInterface().layers():
prop = l.customProperty( "loadedByOmeroRTPlugin" )
if prop != None:
valid = True
lid = self._getLayerId( l )
# setup the plugin vars
parts = Porting.str(prop).split( " " )
key = parts[0]
if key.startswith( "RLID_WMS" ):
# wms layer needs order
if len(parts) < 2:
continue
order = int(parts[1])
ManagerWindow.RLID_WMS[order] = lid
# check for offline layers
if key == "RLID_WMS_OFFLINE":
l.setTransparentBandName( "Band 4" )
offline = True
elif key.startswith( "VLID_" ):
setattr( ManagerWindow, Porting.str(key), lid )
# set the vector as a read-only layer
if isinstance( l, QgsVectorLayer ):
l.setReadOnly(True)
elif key.startswith( "WMS_OFFLINE" ):
offline = True
l.setTransparentBandName( "Band 4" )
else:
continue
if not valid:
return False
self.startedYet = False
# mostra come impostato il pulsante corretto tra offline/online
# dentro la finestra selezionaRilevatore
AutomagicallyUpdater.setOfflineMode( offline )
# show the omero dock widget
if not self.startPlugin():
# cancel clicked, restore the offline mode state
AutomagicallyUpdater.setOfflineMode( self.offlineMode )
return False
# is offline mode changed?
self.offlineMode = offline
if self.offlineMode != AutomagicallyUpdater.offlineMode():
# load all the layers from db
if not self.loadLayersInCanvas( False ):
QMessageBox.critical(self, "RT Omero", "Impossibile caricare i layer richiesti dal database selezionato")
return False
return True
@classmethod
def getSridFromDb(self):
query = AutomagicallyUpdater.Query( 'SELECT DISTINCT srid FROM geometry_columns' )