File: gerwin.tcl

package info (click to toggle)
ferret 0.7-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 2,820 kB
  • ctags: 1,494
  • sloc: tcl: 22,364; makefile: 112
file content (910 lines) | stat: -rw-r--r-- 17,120 bytes parent folder | download | duplicates (2)
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
;# gerwin.tcl -- Gerwin
;#
;# Main file.
;#
;# Copyright (C) 2002-2008 Jose E. Marchesi
;#
;# Time-stamp: "08/11/16 19:20:26 jemarch"

;# 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 3 of
;# the License, or (at your option) any later version.

;# 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, see
;# <http://www.gnu.org/licenses/>.

;#
;# gerwin_init
;#
;# Initializes gerwin


proc gerwin_init {} {

    ;# Initialize the gui
    gui_init .gerwin

    ;# Initialize the bitmap library
    ;#Bitmap::_init


    ;# Set the initial state: Moving
    ;#gerwin_set_state Editing

}


;#
;# gerwin_set_state STATE
;#
;# Set STATE as the new STATE for gerwin

proc gerwin_set_state {state} {

    global gmainframe
    global gerwin_state
    global gcanvas

    set userframe [${gmainframe} getframe]

    set gerwin_state $state
    gui_change_state $state


    ;# Change the bindings if necessary
    switch $state {


	"Inserting entity" -
	"Inserting label" {

	    ;# Destroy the binding on all the canvas objects
	    ${gcanvas} bind all <Button-1> {}
	    ;# Bind on the entire widget
	    bind ${gcanvas} <Button-1> {gui_mark %x %y}
	}
	
	default {
	    ;# Destroy the binding on the canvas
	    bind ${gcanvas} <Button-1> {}

	    ;# Bind on all the canvas elements
	    gui_launch_bindings
	    
	}
    }
}


;#
;# gerwin_quit
;#
;# Quits Gerwin

proc gerwin_quit {} {

    exit

}


;#
;# gerwin_print_TD
;#
;# Print the gcanvas_td into a postscript file

proc gerwin_print_TD {} {

    global gcanvas_td

    ;# Get the file where put the postscrip

    set filetypes {{"PostScript" {.ps}}}

    set f [tk_getSaveFile -initialdir "." \
	       -filetypes $filetypes -title "Print to a PostScript file"]

    ;# Switch over the result
    switch $f {

	"" {
	    ;# Do nothing
	    return
	}
	default {
	    ;# Put the .ps suffix if it is not done
	    if {! [string match "*.ps" $f] } then {
		append f ".ps"
	    }
	    ;# Ok, save the postscript into f
	    ;# Get the bounding box
	    set bbox [${gcanvas_td} bbox all]
	    set x [lindex $bbox 0]
	    set y [lindex $bbox 1]
	    set height [lindex $bbox 3]
	    set width [lindex $bbox 2]
	    
	    ${gcanvas_td} postscript -file $f -colormode color \
		-pageanchor c -width $width -height $height \
		-x $x -y $y



	}
    }

}


;#
;# gerwin_print_ER
;#
;# Print the gcanvas into a postscript file

proc gerwin_print_ER {} {

    global gcanvas

    ;# Get the file where put the postscrip

    set filetypes {{"PostScript" {.ps}}}

    set f [tk_getSaveFile -initialdir "." \
	       -filetypes $filetypes -title "Print to a PostScript file"]

    ;# Switch over the result
    switch $f {

	"" {
	    ;# Do nothing
	    return
	}
	default {
	    ;# Put the .ps suffix if it is not done
	    if {! [string match "*.ps" $f] } then {
		append f ".ps"
	    }

	    ;# Ok, save the postscript into f
	    ;# Get the bounding box
	    set bbox [${gcanvas} bbox all]
	    set x [lindex $bbox 0]
	    set y [lindex $bbox 1]
	    set height [lindex $bbox 3]
	    set width [lindex $bbox 2]
	    
	    ${gcanvas} postscript -file $f -colormode color \
		-pageanchor c -width $width -height $height \
		-x $x -y $y
	    

	}
    }

}


;#
;# gerwin_save_sql
;# 
;# Saves the current SQL on a file

proc gerwin_save_sql {} {

    global gmainframe
    global gerwin_cproject_sqlfile
    global gtext_sql

    if {($gerwin_cproject_sqlfile == "none")} then {

	MessageDlg ${gmainframe}.notice -title "Saving project" \
	    -message "You must assign a SQL file to the project before saving it!" \
	    -type ok

	return

    }
    
    set res [MessageDlg ${gmainframe}.notice -title "Saving SQL" \
		 -message "Are you sure you want to save the SQL listing into ${gerwin_cproject_sqlfile}?" \
		 -type yesno]

    switch $res {

	0 {
	    ;# Yes, save it
	    set fout [open ${gerwin_cproject_sqlfile} w]
	    puts $fout [${gtext_sql} get 1.0 end]
	    close $fout
	} 
	1 {
	    ;# No
	    return
	}
	    
    }

}



;#
;# gerwin_save_project
;#
;# Project saving dialog

proc gerwin_save_project {} {

    global gmainframe
    global gerwin_cproject_name
    global gerwin_cproject_file
    
    if {($gerwin_cproject_file == "none") || ($gerwin_cproject_file == "")} then {

	MessageDlg ${gmainframe}.notice -title "Saving project" \
	    -message "You must assign a file to the project before saving it!" \
	    -type ok

	return

    }

    set res [MessageDlg ${gmainframe}.notice -title "Saving project" \
		 -message "Are you sure you want to save $gerwin_cproject_name into ${gerwin_cproject_file}?" \
		 -type yesno]

    switch $res {

	0 {
	    ;# Yes, save it
	    gerwin_save_project_file
	} 
	1 {
	    ;# No
	    return
	}
	    
    }

}


;# 
;# gerwin_get_default_project_name
;#

proc gerwin_get_default_project_name {} {

    global gerwin_project_counter 

    return "Project$gerwin_project_counter"

    incr gerwin_project_counter
}

;#
;# gerwin_close_project
;#
;# Closes the current project

proc gerwin_close_project {} {
    
    global gerwin_cproject_name
    global gmainframe

    global gcanvas
    global gcanvas_td

    ;# Do nothing if there is not any project open
    if {${gerwin_cproject_name} == "none"} then {
	return 
    }

    ;# Make sure we want to close the project
    set res [MessageDlg ${gmainframe}.notice -title "Closing the project" \
		 -message "Are you sure you want to close ${gerwin_cproject_name}?" \
		 -type yesno]

    switch $res {

	0 {
	    ;# Yes, close it
	    gerwin_purge_project

	    ;# Disable some buttons
	    gui_no_project_opened

	    ;# Resize the canvas
# 	    ${gcanvas} configure -scrollregion {}
# 	    ${gcanvas_td} configure -scrollregion {}

	}
	1 {
	    ;# No, coward
	    return
	}

    }

}


;#
;# gerwin_open_project
;#
;# Select a project file and then make that project the current one

proc gerwin_open_project {} {

    global gmainframe
    global gerwin_cproject_name

    ;# Warning if there is another project opened
    if {$gerwin_cproject_name != "none"} then {

	set res [MessageDlg ${gmainframe}.notice -title "Open a new project?" \
		     -message "There is another project opened. You must close it and then open a new one." \
		     -type ok]
	return
    }
		     

    set filetypes {{"Gerwin Project" {.ger}}}
    set f [tk_getOpenFile -initialdir "." \
	       -filetypes $filetypes -title "Open a gerwin file"]

    ;# switch over the result
    switch $f {

	"" {
	    ;# Do nothing
	    return
	}
	default {


	    ;# Now we can edit
	    gui_project_opened

	    ;# Load the project from $f
	    gerwin_load_project_file $f

	}

    }


}


;#
;# gerwin_purge_project
;#
;# Purges all the gerwin state

proc gerwin_purge_project {} {

    global gerwin_entities
    global gerwin_relations
    global gerwin_tables
    global gerwin_cproject_name 
    global gerwin_cproject_file
    global gerwin_cproject_sqlfile
    global gerwin_cproject_author
    global gerwin_entity_seq
    global gerwin_output_active_format

    global output_pages


    set gerwin_cproject_name none
    set gerwin_cproject_file none
    set gerwin_cproject_author none

    set gerwin_entity_seq 1


    ;# Purge all relations
    foreach r $gerwin_relations {

	gob_delete_relation $r
	gm_delete_relation $r
	gui_edition_area_delete_page $r


    }

    set gerwin_relations {}

    ;# Purge all entities
    foreach e $gerwin_entities {

	gob_delete_entity $e
	gm_delete_entity $e
	gui_edition_area_delete_page $e

    }

    set gerwin_entities {}

    ;# Purge all tables
    foreach t $gerwin_tables {

	gob_delete_table $t
	gm_delete_table $t
    }

    set gerwin_tables {}


    ;# Purge project variables
    set gerwin_cproject_file none
    set gerwin_cproject_sqlfile none

    ;# Purge the output pages
    foreach op $output_pages {

	gui_destroy_output_page $op

    }

    ;# Destroy the app area Domain page
    ;#gui_app_area_destroy_Domain_page
    ;# Destroy the app area Project page
    gui_app_area_destroy_Project_page

    ;# Destroy the rest of the app areas
    gui_app_area_destroy_Output_page
    gui_app_area_destroy_TD_page
    gui_app_area_destroy_ER_page

    ;# Delete the active format
    set gerwin_output_active_format {}
}


;#
;# gerwin_save_output_file FORMAT
;#
;# Save the FORMAT output to a file

proc gerwin_save_output_file {format} {

    global gmainframe
    global gtext_output

    set filename [tk_getSaveFile -initialdir "." \
		      -title "Saving an output file"]

    ;# Switch over the result
    switch $filename {

	"" {
	    ;# Do nothing
	    return

	} 

	default {

	    ;# Make sure we want to save
	    set res [MessageDlg ${gmainframe}.notice -title "Saving SQL" \
			 -message "Are you sure you want to save this $format output into ${filename}?" \
			 -type yesno]

	    switch $res {

		0 {
		    ;# Yes, save it
		    set fout [open ${filename} w]
		    puts $fout [$gtext_output($format) get 1.0 end]
		    close $fout

		}
		1 {
		    ;# No
		    return 

		}
	    }

	}
    }
}


;#
;# gerwin_new_project
;#
;# Creates a new project, named after the project count

proc gerwin_new_project {} {

    global gerwin_cproject_name
    global gerwin_cproject_file
    global gerwin_cproject_author

    global gcanvas

    ;# Make sure the user really want to get a new project
    if {$gerwin_cproject_name != "none"} then {

	set answer [gui_yes_no_cancel "Another project is already opened.\nAre you sure \
you want to discard the old project and start another one?"]


	switch $answer {

	    0 {
		;# Purge the old project
		gerwin_purge_project
		
	    }

	    1 -
	    2 {

		return 
	    }

	}

    }


    ;# Set the default values for project attributes
    set gerwin_cproject_name [gerwin_get_default_project_name]
    set gerwin_cproject_file none
    set gerwin_cproject_author "Anonymous GNUdist"



    ;# Activate the buttons
    gui_project_opened

    ;# Scale the canvas
    ${gcanvas} configure -scrollregion {0 0 1024 768}

}


;#
;# gerwin_load_project_file FILENAME
;# 
;# Load a project from FILENAME

proc gerwin_load_project_file {filename} {

    global gerwin_cproject_name
    global gerwin_cproject_file
    global gerwin_cproject_author

    global gerwin_entities
    global gerwin_relations
    global gerwin_entity
    global gerwin_relation

    global gm_entity
    global gm_relation

    global gerwin_relation_seq 
    global gerwin_entity_seq

    global gcanvas


    ;# Open the input channel
    ;# We suppose the file exist
    set fin [open $filename r]

    ;##
    ;## Load in project information
    ;##

    gets $fin gerwin_cproject_name
    gets $fin gerwin_cproject_file
    gets $fin gerwin_cproject_author
    gets $fin gerwin_entity_seq
    gets $fin gerwin_relation_seq

    ;##
    ;## Load canvas information
    ;##
    gets $fin sreg
    ${gcanvas} configure -scrollregion $sreg


    ;##
    ;## Load entity information
    ;##

    gets $fin numentities

    for {set x 0} {$x < $numentities} {incr x} {

	gets $fin ename ;# Entity name


	gets $fin xpos ;# Get geometry information
	gets $fin ypos

	gob_create_entity $ename {} {} {} ;# Create the entity

	;# Load in the attributes
	gets $fin numattributes 

	for {set y 0} {$y < $numattributes} {incr y} {

	    gets $fin aline ;# Read the attribute line

	    ;# Add the new attribute to the entity
	    gob_entity_add_attribute $ename [lindex $aline 0] [lindex $aline 1]

	}

	;# Load in the keys
	gets $fin numkeys
	for {set y 0} {$y < $numkeys} {incr y} {

	    gets $fin key ;# Read the key

	    ;# Add the key to the entity
	    gob_entity_add_attribute_to_key $ename $key
	}


	;# Load in the relations
	gets $fin numrelations
	for {set y 0} {$y < $numrelations} {incr y} {

	    gets $fin relation ;# Read the relation

	    ;# Add the relation to the entity
	    gob_entity_add_relation $ename $relation

	}

	;# Ok, draw the entity
	gm_draw_entity $ename $xpos $ypos
    }

    ;##
    ;## Load in the relations
    ;##

    gets $fin numrelations

    for {set x 0} {$x < $numrelations} {incr x} {

	gets $fin rname ;# Relation name
	gets $fin temp_reflexive ;# Reflexive relation?

	gets $fin xpos ;# Geometry information
	gets $fin ypos 

	;# Create the relation
	gob_create_relation $rname {} {}
	set gerwin_relation($rname,reflexive) $temp_reflexive

	;# Load in the attributes
	gets $fin numattributes ;# Number of attributes

	for {set y 0} {$y < $numattributes} {incr y} {

	    gets $fin aline ;# Read the attribute line

	    gob_relation_add_attribute $rname [lindex $aline 0] [lindex $aline 1]
	}

	;# Load in the entities
	gets $fin numentities ;# Number of entities

	for {set y 0} {$y < $numentities} {incr y} {

	    gets $fin ename ;# Entity name
	    gets $fin emincard ;# Entity minimal cardinality
	    gets $fin emaxcard ;# Entity maximal cardinality

	    gob_relation_add_entity $rname $ename $emincard $emaxcard

	}

	;# Ok, draw the relation
	gm_draw_relation $rname $xpos $ypos

	if {$gerwin_relation($rname,reflexive)} then {
	    gm_relation_update_links_reflexive $rname
	} else {
	    gm_relation_update_links $rname
	}

    }

    ;# Set some internal state

    ;#set gerwin_entity_seq [expr $numentities]
    ;#set gerwin_relation_seq [expr $numrelations]

}


;#
;# gerwin_save_project_file
;#
;# Save the current project

proc gerwin_save_project_file {} {

    global gerwin_cproject_name
    global gerwin_cproject_file
    global gerwin_cproject_author

    global gerwin_entities
    global gerwin_relations
    global gerwin_entity
    global gerwin_relation

    global gm_entity
    global gm_relation

    global gerwin_entity_seq
    global gerwin_relation_seq
    
    global gcanvas

    ;# Open the out channel
    ;# We suposse the file exist
    set filename $gerwin_cproject_file
    set fout [open $filename w]


    ;##
    ;## Write out project information
    ;##

    puts $fout $gerwin_cproject_name
    puts $fout $gerwin_cproject_file
    puts $fout $gerwin_cproject_author
    puts $fout $gerwin_entity_seq
    puts $fout $gerwin_relation_seq

    ;##
    ;## Write out canvas size information
    ;##
    set sreg [${gcanvas} cget -scrollregion]
    puts $fout $sreg


    ;## 
    ;## Write out entity information
    ;##

    set nentities [llength $gerwin_entities]

    puts $fout $nentities   ;# Number of entities

    foreach e $gerwin_entities {

	puts $fout $e  ;# Entity name

	;# Geometry attributes
	puts $fout $gm_entity($e,xpos)
	puts $fout $gm_entity($e,ypos)

	set nattributes [llength $gerwin_entity($e,attributes)]
	puts $fout $nattributes ;# Number of attributes

	foreach a $gerwin_entity($e,attributes) {

	    puts $fout $a   ;# Attributes

	}

	set nkeys [llength $gerwin_entity($e,key)]
	puts $fout $nkeys ;# Number of key attributes

	foreach k $gerwin_entity($e,key) {

	    puts $fout $k  ;# Keys

	}

	set nrelations [llength $gerwin_entity($e,relations)]
	puts $fout $nrelations ;# Number of relations

	foreach r $gerwin_entity($e,relations) {

	    puts $fout $r  ;# Relations

	}

    }

    ;# Output relations
    
    set nrelations [llength $gerwin_relations]
    puts $fout $nrelations ;# Number of relations

    foreach r $gerwin_relations {

	puts $fout $r  ;# Relation name
	puts $fout $gerwin_relation($r,reflexive) ;# It is a reflexive relation?

	;# Output geometry information
	puts $fout $gm_relation($r,xpos)
	puts $fout $gm_relation($r,ypos)

	set nattributes [llength [gob_relation_get_attributes $r]]
	puts $fout $nattributes ;# Number of attributes

	foreach a [gob_relation_get_attributes $r] {

	    puts $fout $a

	}

	set nentities [llength [gob_relation_get_entities $r]]
	puts $fout $nentities ;# Number of entities

	foreach e [gob_relation_get_entities $r] {

	    set e [lindex $e 0]
	    puts $fout $e ;# Entity name
	    puts $fout [gob_relation_get_entity_min_card $r $e] ;# Entity min card
	    puts $fout [gob_relation_get_entity_max_card $r $e] ;# Entity max card

	}


    }
    
    close $fout
}



;##### Load external packages

lappend auto-path [file join . widgets]

puts "Loading external megawidget libraries:"
puts ""

puts "     BWidget 1.6"
lappend auto_path [file join . widgets bwidget]
package require BWidget 1.6

puts "     Icons 1.0"
lappend auto_path [file join . widgets icons]
package require icons 1.0    


puts "     Tablelist 2.7"
lappend auto_path [file join . widgets tablelist]
package require Tablelist 2.7

puts ""
;###### Done loading libraries


source src/globals.tcl
source src/gob.tcl
source src/gui.tcl
source src/gm.tcl
source src/gen.tcl
source src/postgresql.tcl
source src/mysql.tcl
source src/sql92.tcl
source src/gerwinml.tcl


;# Ok, start!
gerwin_init