-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGS_area.CPP.bak
5781 lines (4712 loc) · 209 KB
/
GS_area.CPP.bak
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
/**********************************************************
Name: GS_AREA.CPP
Module description: File funzioni di base per la gestione
delle aree di lavoro GEOSIM
Author: Roberto Poltini
(c) Copyright 1995-2014 by IREN ACQUA GAS S.p.A.
**********************************************************/
/**********************************************************/
/* INCLUDE */
/**********************************************************/
#include "stdafx.h" // MFC core and standard components
#define INITGUID
#import "msado15.dll" no_namespace rename ("EOF", "EndOfFile") rename ("EOS", "ADOEOS")
#include <stdio.h>
#include <stdlib.h>
#include <io.h>
#include <string.h>
#include <ctype.h>
#include "rxdefs.h"
#include "adslib.h"
#include <adeads.h>
#include "adsdlg.h"
#include "..\gs_def.h" // definizioni globali
#include "gs_opcod.h"
#include "gs_error.h"
#include "gs_utily.h"
#include "gs_resbf.h"
#include "gs_init.h"
#include "gs_dbref.h"
#include "gs_user.h"
#include "gs_class.h"
#include "gs_conv.h"
#include "gs_sec.h"
#include "gs_prjct.h"
#include "gs_netw.h" // funzioni di rete
#include "gs_graph.h"
#include "gs_svdb.h" // salvataggio database
#include "gs_area.h"
#include "gs_dwg.h" // gestione disegni
#include "gs_ade.h"
#include "gs_lock.h"
#include "gs_cmd.h" // per gsc_enable_reactors
#include "gs_query.h"
#include "gs_filtr.h" // comando di filtro in geoeditor
#include "gs_evid.h"
#include "gs_lisp.h" // per caricamento file GS_LISP_FILE
#include "gs_impor.h"
#include "gs_topo.h" // per topologia simulazioni
/*************************************************************************/
/* GLOBAL VARIABLES */
/*************************************************************************/
C_WRK_SESSION *GS_CURRENT_WRK_SESSION = NULL; // sessione di lavoro corrente
_RecordsetPtr RS_LOCK_WRKSESSION; // variabile per scongelamento
/*************************************************************************/
/* PRIVATE FUNCTIONS */
/*************************************************************************/
int arg_to_prj_area(presbuf *arg, int *prj, long *SessionId);
int gsc_thaw_area2(int prj, long SessionId, bool RecoverDwg = false);
int gsc_prepare_4_thaw(int prj, TCHAR *dir_area);
int gsc_is_extractable(C_INT_INT_LIST &ClassList_to_extract, C_INT_INT *cls);
int gsc_is_completed_extracted(C_INT_INT_LIST &ClassList_to_extract);
//-----------------------------------------------------------------------//
///////////////////// C_AREACLASS //////////////////////////////////////
//-----------------------------------------------------------------------//
// costruttore
C_AREACLASS::C_AREACLASS() : C_4INT_STR() { sel = DESELECTED; }
// distruttore
C_AREACLASS::~C_AREACLASS() {}
int C_AREACLASS::get_sel() { return sel; }
int C_AREACLASS::set_sel(int in) { sel = in; return GS_GOOD; }
int C_AREACLASS::set(int par_code, TCHAR *par_name, GSDataPermissionTypeEnum par_level, int par_cat,
int par_type, int par_sel)
{
if (set_key(par_code) == GS_BAD || set_name(par_name) == GS_BAD ||
set_level(par_level) == GS_BAD || set_category(par_cat) == GS_BAD ||
set_type(par_type) == GS_BAD || set_sel(par_sel) == GS_BAD)
return GS_BAD;
return GS_GOOD;
}
/*********************************************************/
/*.doc C_AREACLASS::to_rb <internal> */
/*+
Questa funzione restituisce una lista di resbuf che descrive
l'oggetto C_AREACLASS con il seguente formato:
(<code><name><level><cat><type><sub_list><sel>)
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/*********************************************************/
resbuf *C_AREACLASS::to_rb(void)
{
C_RB_LIST List;
C_AREACLASS *p_sub;
C_AREACLASS_LIST *sub_list;
if ((List << acutBuildList(RTLB,
RTSHORT, get_key(), // codice classe
RTSTR, (get_name()) ? get_name() : GS_EMPTYSTR, // nome classe
RTSHORT, (int) get_level(), // livello di abilitazione
RTSHORT, get_category(), // categoria
RTSHORT, get_type(), 0)) == NULL) // tipo
return NULL;
// sub_list
sub_list = (C_AREACLASS_LIST *) ptr_sub_list();
p_sub = (C_AREACLASS *) sub_list->get_head();
if (p_sub == NULL)
{
// sub_list selezionato
if ((List += acutBuildList(RTNIL, RTSHORT, get_sel(), 0)) == NULL)
return NULL;
}
else
{
if ((List += acutBuildList(RTLB, 0)) == NULL) return NULL;
while (p_sub)
{
if ((List += acutBuildList(RTLB,
RTSHORT, p_sub->get_key(),
RTSTR, (p_sub->get_name()) ? p_sub->get_name() : GS_EMPTYSTR,
RTSHORT, p_sub->get_level(),
RTSHORT, p_sub->get_category(),
RTSHORT, p_sub->get_type(),
RTSHORT, p_sub->get_sel(),
RTLE, 0)) == NULL)
return NULL;
p_sub = (C_AREACLASS *) sub_list->get_next();
}
if ((List += acutBuildList(RTLE, RTSHORT, get_sel(), 0)) == NULL) return NULL;
}
if ((List += acutBuildList(RTLE, 0)) == NULL) return NULL;
List.ReleaseAllAtDistruction(GS_BAD);
return List.get_head();
}
//-----------------------------------------------------------------------//
/////////////// C_AREACLASS FINE /////////////////////////////////
/////////////// C_AREACLASS_LIST INIZIO //////////////////////////////
//-----------------------------------------------------------------------//
// costruttore
C_AREACLASS_LIST::C_AREACLASS_LIST() : C_LIST() { }
// distruttore
C_AREACLASS_LIST::~C_AREACLASS_LIST() {}
resbuf *C_AREACLASS_LIST::to_rb(void)
{
C_RB_LIST List;
C_AREACLASS *punt;
if (!(punt = (C_AREACLASS *) get_head()))
{
if ((List << acutBuildList(RTNIL, 0)) == NULL) return NULL;
}
else
while (punt)
{
if ((List += punt->to_rb()) == NULL) return NULL;
punt = (C_AREACLASS *) get_next();
}
List.ReleaseAllAtDistruction(GS_BAD);
return List.get_head();
}
/*********************************************************/
/*.doc arg_to_prj_area <internal> */
/*+
Questa funzione restituisce da una lista di resbuf il codice del
progetto e il codice della sessione.
Parametri:
presbuf *arg; Lista resbuf proveniente da Autocad
int *prj; Codice progetto (out)
long *SessionId; Codice sessione (out)
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
N.B. arg si sposta sul resbuf del codice della sessione
-*/
/*********************************************************/
int arg_to_prj_area(presbuf *arg, int *prj, long *SessionId)
{
if (arg == NULL) { GS_ERR_COD = eGSInvalidArg; return GS_BAD; }
// codice progetto
if (*arg == NULL || gsc_rb2Int(*arg, prj) == GS_BAD)
{ GS_ERR_COD = eGSInvalidArg; return GS_BAD; }
// codice area
if ((*arg = (*arg)->rbnext) == NULL || gsc_rb2Lng(*arg, SessionId) == GS_BAD)
{ GS_ERR_COD = eGSInvalidArg; return GS_BAD; }
return GS_GOOD;
}
////////////////// INIZIO FUNZIONI LISP (gs) ///////////////////
/*********************************************************/
/*.doc gs_is_frozen_curr_session
/*+
Questa funzione verifica se la sessione di lavoro corrente
è stata già congelata.
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR
al LISP viene restituito (T o nil).
-*/
/*********************************************************/
int gs_is_frozen_curr_session(void)
{
acedRetNil();
if (!GS_CURRENT_WRK_SESSION) { GS_ERR_COD = eGSNotCurrentSession; return GS_BAD; }
if (GS_CURRENT_WRK_SESSION->HasBeenFrozen() == GS_GOOD) acedRetT();
return RTNORM;
}
/*********************************************************/
/*.doc gs_ruserWrkSession <external> */
/*+
Questa funzione restituisce una lista delle aree dell'utente specificato
nel seguente formato:
((<code><nome><dir><type><status><usr><coordinate><data/ora creazione>(<lista classi>)...)
dove:
(<lista classi>) = lista di codici delle classi usate nella sessione (<cls 1><cls 2>...<cls n>)
Parametri
Lista : (<codice progetto> <codice utente> [stato area [OnlyOwner]])
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/*********************************************************/
int gs_ruserWrkSession(void)
{
presbuf ret, arg;
int user_code, prj_code, Status;
C_WRK_SESSION_LIST lista;
acedRetNil();
arg = acedGetArgs();
// codice del progetto
if (arg == NULL || arg->restype != RTSHORT) // Errore argomenti
{ GS_ERR_COD = eGSInvalidArg; return RTERROR; }
prj_code = arg->resval.rint;
// codice utente
if ((arg = arg->rbnext) == NULL || arg->restype != RTSHORT) // Errore argomenti
{ GS_ERR_COD = eGSInvalidArg; return RTERROR; }
user_code = arg->resval.rint;
// stato aree (opzionale)
if ((arg = arg->rbnext) != NULL && arg->restype == RTSHORT) // Errore argomenti
{
Status = arg->resval.rint;
// codice utente (opzionale)
if ((arg = arg->rbnext) != NULL && arg->restype == RTSHORT) // Errore argomenti
{ // leggo lista
if (lista.ruserarea(user_code, prj_code, Status, arg->resval.rint, ONETEST) == GS_BAD)
return RTERROR;
}
else // leggo lista
if (lista.ruserarea(user_code, prj_code, Status, FALSE, ONETEST) == GS_BAD)
return RTERROR;
}
else // leggo lista
if (lista.ruserarea(user_code, prj_code, -1, FALSE, ONETEST) == GS_BAD)
return RTERROR;
ret = lista.to_rb();
if (ret == NULL) return RTNORM;
if (ret->restype != RTNIL) gsc_LspRetList(ret);
acutRelRb(ret);
return RTNORM;
}
/*********************************************************/
/*.doc gs_rWrkSessionClass <external> */
/*+
Questa funzione restituisce una lista delle classi
nella sessione di lavoro specificata nel seguente formato:
((<code><name><level><cat><type><sub_list><sel>)...)
se category = CAT_EXTERN
sub_list = (<sub_code><name><level><cat><type>nil<sel><fas><sql>)
altrimenti
sub_list = nil
Parametri: (<prj><area>)
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/*********************************************************/
int gs_rWrkSessionClass(void)
{
presbuf ret, arg;
int prj_code;
long SessionId;
C_AREACLASS_LIST lista;
C_WRK_SESSION *pSession;
acedRetNil();
arg = acedGetArgs();
if (arg_to_prj_area(&arg, &prj_code, &SessionId) == GS_BAD) return RTERROR;
// Ritorna il puntatore alla sessione cercata
if ((pSession = gsc_find_wrk_session(prj_code, SessionId)) == NULL) return RTERROR;
// Ritorna la lista delle classi della sessione (anche quelle non ancora estratte)
if (pSession->get_class_list(lista, false) == GS_BAD) { delete pSession; return RTERROR; }
delete pSession;
lista.sort_name();
ret = lista.to_rb();
if (ret == NULL) return RTERROR;
if (ret->restype != RTNIL) gsc_LspRetList(ret);
acutRelRb(ret);
return RTNORM;
}
/*********************************************************/
/*.doc gs_drawWrkSessionspatialareas <external> */
/*+
Questa funzione disegna le aree spaziali estratte dalle sessioni
di lavoro del progetto indicato.
Parametri: <prj>
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/*********************************************************/
int gs_drawWrkSessionspatialareas(void)
{
presbuf arg;
int prj_code, AutoCADColorIndex = 1; // rosso
C_COLOR color;
C_RECT_LIST SpatialAreaList;
C_RECT *pSpatialArea;
C_INT_INT_STR CurrentUsr;
C_INT_INT_STR_LIST UsrList;
C_WRK_SESSION_LIST WrkSessionList;
C_WRK_SESSION *pWrkSession;
C_STRING Lbl;
acedRetNil();
arg = acedGetArgs();
// codice del progetto
if (arg == NULL || arg->restype != RTSHORT) // Errore argomenti
{ GS_ERR_COD = eGSInvalidArg; return RTERROR; }
prj_code = arg->resval.rint;
// leggo l'utente corrente
if (gsc_whoami(&CurrentUsr) == GS_BAD) return RTERROR;
// leggo la lista degli utenti di GEOsim
if (gsc_getusrlist(&UsrList) == GS_BAD) return RTERROR;
// leggo lista sessioni di lavoro
if (WrkSessionList.ruserarea(CurrentUsr.get_key(), prj_code) == GS_BAD) return RTERROR;
color.setAutoCADColorIndex(AutoCADColorIndex);
pWrkSession = (C_WRK_SESSION *) WrkSessionList.get_head();
while (pWrkSession)
{
// Leggo i rettangoli che racchiudono aree spaziali estratte nella sessione
if (pWrkSession->get_spatial_area_list(SpatialAreaList) == GS_GOOD)
{
pSpatialArea = (C_RECT *) SpatialAreaList.get_head();
while (pSpatialArea)
{
Lbl = pWrkSession->get_id();
if (UsrList.search_key(pWrkSession->get_usr()))
{
Lbl += _T(" (");
Lbl += ((C_INT_INT_STR *) UsrList.get_cursor())->get_name();
Lbl += _T(")");
}
pSpatialArea->Draw(_T("0"), &color, EXTRACTION, Lbl.get_name());
pSpatialArea = (C_RECT *) SpatialAreaList.get_next();
}
}
AutoCADColorIndex++;
color.setAutoCADColorIndex(AutoCADColorIndex);
pWrkSession = (C_WRK_SESSION *) WrkSessionList.get_next();
}
acedRetT();
return RTNORM;
}
/*********************************************************/
/*.doc gs_clsextrinWrkSession <external> */
/*+
Questa funzione verifica se esiste una lista di classi estratte
nella sessione di lavoro attiva.
Restituisce RTNORM in caso di successo altrimenti RTERROR.
-*/
/*********************************************************/
int gs_clsextrinWrkSession(void)
{
C_CLS_PUNT_LIST extr_cls_list;
acedRetNil();
// Verifico che esista una sessione di lavoro attiva
if (!GS_CURRENT_WRK_SESSION) { GS_ERR_COD = eGSNotCurrentSession; return RTERROR; }
// Ricavo la lista delle classi estratte del progetto corrente
if (GS_CURRENT_WRK_SESSION->get_pPrj()->extracted_class(extr_cls_list) == GS_BAD) return RTERROR;
// Verifico se la lista delle classi estratte è vuota
if (extr_cls_list.get_count() == 0) { GS_ERR_COD = eGSNotClassExtr; return RTERROR; }
acedRetT();
return RTNORM;
}
/*********************************************************/
/*.doc gs_get_NextWrkSessionId <external> */
/*+
Questa funzione LISP ritorna il codice che sarà usato
per la nuova sessione di lavoro di GEOsim (codice incrementale).
Parametri:
Lista RESBUF <prj>
-*/
/*********************************************************/
int gs_get_NextWrkSessionId(void)
{
presbuf arg;
long new_code;
C_PROJECT *pPrj;
acedRetNil();
arg = acedGetArgs();
// codice progetto
if (arg == NULL || arg->restype != RTSHORT)
{ GS_ERR_COD = eGSInvalidArg; return RTERROR; }
// Cerca progetto nella lista GEOsimAppl::PROJECTS
if ((pPrj = (C_PROJECT *) GEOsimAppl::PROJECTS.search_key(arg->resval.rint)) == NULL)
{ GS_ERR_COD = eGSInvalidPrjCode; return RTERROR; }
// cerco nuovo codice per la sessione di lavoro
if ((new_code = pPrj->getNextWrkSessionId()) == 0) return RTERROR;
acedRetReal(new_code); // devo ritornarlo come real perchè non c'è la funzione acedRetLong
return RTNORM;
}
/*********************************************************/
/*.doc gs_create_WrkSession <external> */
/*+
Questa funzione LISP crea una sessione di lavoro di GEOsim.
Parametri:
Lista RESBUF (<prj><nome><dir>[<tipo>[<coordinate>[<keydwg>]]])
Restituisce TRUE in caso di successo altrimenti restituisce NIL.
-*/
/*********************************************************/
int gs_create_WrkSession(void)
{
C_WRK_SESSION *pSession;
C_RB_LIST lista;
presbuf arg;
long new_code;
C_PROJECT *pPrj;
acedRetNil();
arg = acedGetArgs();
// codice progetto
if (arg == NULL || arg->restype != RTSHORT)
{ GS_ERR_COD = eGSInvalidArg; return RTERROR; }
// Cerca progetto nella lista GEOsimAppl::PROJECTS
if ((pPrj = (C_PROJECT *) GEOsimAppl::PROJECTS.search_key(arg->resval.rint)) == NULL)
{ GS_ERR_COD = eGSInvalidPrjCode; return RTERROR; }
// creo resbuf per input dati
if ((lista << acutBuildList(RTLB, RTNIL, 0)) == NULL) // code
return RTERROR;
// nome sessione
if ((arg = arg->rbnext) == NULL)
{ GS_ERR_COD = eGSInvalidArg; return RTERROR; }
if ((lista += gsc_copybuf(arg)) == NULL) return RTERROR;
// direttorio sessione
if ((arg = arg->rbnext) == NULL) { GS_ERR_COD = eGSInvalidArg; return RTERROR; }
if ((lista += gsc_copybuf(arg)) == NULL) return RTERROR;
// valori opzionali
if ((arg = arg->rbnext) != NULL)
{ // tipo area
if ((lista += gsc_copybuf(arg)) == NULL) return RTERROR;
if ((arg = arg->rbnext) != NULL)
{
if ((lista += acutBuildList(RTNIL, RTNIL, 0)) == NULL) // usr, status
return RTERROR;
// sistema di coordinate
if ((lista += gsc_copybuf(arg)) == NULL) return RTERROR;
if ((arg = arg->rbnext) != NULL)
// key_dwg
if ((lista += gsc_copybuf(arg)) == NULL) return RTERROR;
}
}
if ((lista += acutBuildList(RTLE, 0)) == NULL) return RTERROR;
// Alloca un oggetto C_WRK_SESSION
if ((pSession = new C_WRK_SESSION(pPrj)) == NULL) { GS_ERR_COD = eGSOutOfMem; return RTERROR; }
// Ricopia i dati dalla struttura di ingresso
if (pSession->from_rb(lista.get_head()) == GS_BAD)
{ delete pSession; return RTERROR; }
if ((new_code = pSession->create()) == 0)
{ delete pSession; return RTERROR; }
acedRetReal(new_code); // devo ritornarlo come real perchè non c'è la funzione acedRetLong
return RTNORM;
}
/*********************************************************/
/*.doc gs_del_WrkSession <external> */
/*+
Questa funzione LISP cancella una sessione di lavoro di GEOsim
senza alcun salvataggio dei dati.
Parametri:
Lista RESBUF: <prj><area><Password>
Restituisce TRUE in caso di successo altrimenti restituisce NIL.
-*/
/*********************************************************/
int gs_del_WrkSession(void)
{
presbuf arg = acedGetArgs();
int prj;
long SessionId;
acedRetNil();
if (arg_to_prj_area(&arg, &prj, &SessionId) == GS_BAD) return RTERROR;
// Password
if ((arg = arg->rbnext) == NULL || arg->restype != RTSTR)
{ GS_ERR_COD = eGSInvalidArg; return RTERROR; }
// chiamata funzione C++
if (gsc_del_area(prj, SessionId, arg->resval.rstring) == GS_BAD) return RTERROR;
acedRetT();
return RTNORM;
}
/*********************************************************/
/*.doc gs_sel_WrkSession_class <external> */
/*+
Questa funzione LISP seleziona una lista di classi per la sessione di
lavoro corrente del progetto corrente.
Parametri:
Lista RESBUF (<cls1><cls2>...)
Restituisce TRUE in caso di successo altrimenti restituisce NIL.
-*/
/*********************************************************/
int gs_sel_WrkSession_class(void)
{
presbuf arg = acedGetArgs();
C_INT_LIST lista;
acedRetNil();
// leggo lista delle classi e sottoclassi
if (lista.from_rb(arg) == GS_BAD) return RTERROR;
if (!GS_CURRENT_WRK_SESSION) { GS_ERR_COD = eGSNotCurrentSession; return RTERROR; }
if (GS_CURRENT_WRK_SESSION->SelClasses(lista) == GS_BAD) return RTERROR;
acedRetT();
return RTNORM;
}
/*********************************************************/
/*.doc gs_currentWrkSession <external> */
/*+
Questa funzione LISP restituisce i dati della sessione corrente del
progetto corrente in caso di successo altrimenti restituisce NIL.
<code><nome><dir><type><status><usr><coordinate><data/ora creazione>
-*/
/*********************************************************/
int gs_currentWrkSession(void)
{
presbuf ret;
acedRetNil();
if (!GS_CURRENT_WRK_SESSION) return RTNORM;
if ((ret = GS_CURRENT_WRK_SESSION->to_rb()) == NULL) return RTERROR;
if (ret->restype != RTNIL) gsc_LspRetList(ret);
acutRelRb(ret);
return RTNORM;
}
/************************************************************************************************************/
/*.doc gs_freeze_WrkSession <external> */
/*+
Questa funzione LISP congela la sessione di lavoro corrente del progetto corrente.
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/************************************************************************************************************/
int gs_freeze_WrkSession(void)
{
acedRetNil();
// chiamata funzione C++
if (gsc_freeze_area() == GS_BAD) return RTERROR;
acedRetT();
return RTNORM;
}
/*****************************************************************************/
/*.doc gs_save_WrkSession <external> */
/*+
Questa funzione LISP salva tutti i dati relativi alla sessione di lavoro corrente
del progetto corrente nella banca dati centrale.
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/*****************************************************************************/
int gs_save_WrkSession(void)
{
acedRetNil();
if (!GS_CURRENT_WRK_SESSION) { GS_ERR_COD = eGSNotCurrentSession; return RTERROR; }
if (GS_CURRENT_WRK_SESSION->save() == GS_BAD) return RTERROR;
acedRetT();
return RTNORM;
}
/*****************************************************************************/
/*.doc gs_exit_WrkSession <external> */
/*+
Questa funzione LISP chiude la sessione di lavoro corrente.
In particolare se questa funzione era stata preceduta da una <gs_save_WrkSession>
l'area viene eliminata, mentre se era stata preceduta da una <gs_freeze_WrkSession>
viene impostato lo status della sessione a WRK_SESSION_FREEZE.
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/*****************************************************************************/
int gs_exit_WrkSession(void)
{
acedRetT();
if (gsc_ExitCurrSession() == GS_BAD) { acedRetNil(); return RTERROR; }
return RTNORM;
}
/****************************************************************************/
/*.doc gs_thaw_WrkSession <external> */
/*+
Questa funzione LISP seleziona ed apre una sessione di lavoro congelata
in funzione del codice del progetto e del codice della sessione.
Parametri
input: Lista RESBUF (<prj><area>)
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/************************************************************************/
int gs_thaw_WrkSession(void)
{
presbuf arg;
int prj;
long SessionId;
acedRetNil();
arg = acedGetArgs();
if (arg_to_prj_area(&arg, &prj, &SessionId) == GS_BAD) return RTERROR;
if (gsc_thaw_area(prj, SessionId) == GS_BAD) return RTERROR;
acedRetT();
return RTNORM;
}
/************************************************************************************************************/
/*.doc (new 2) gs_thaw_WrkSession2 <internal> */
/*+
Questa funzione LISP è di solo uso interno e viene utilizzata da <gs_sel_area>.
Parametri
input: Lista RESBUF (<prj><area>[RecoverDwg])
Restituisce RTNORM in caso di successo altrimenti restituisce RTERROR.
-*/
/************************************************************************************************************/
int gs_thaw_WrkSession2(void)
{
presbuf arg;
int prj;
long SessionId;
bool RecoverDwg = false;
acedRetNil();
arg = acedGetArgs();
// Codice progetto e codice sessione
if (arg_to_prj_area(&arg, &prj, &SessionId) == GS_BAD) return RTERROR;
// RecoverDwg
if ((arg = arg->rbnext) && arg->restype != RTT) RecoverDwg = true;
if (gsc_thaw_area2(prj, SessionId, RecoverDwg) == GS_BAD) return RTERROR;
acedRetT();
return RTNORM;
}
/*********************************************************/
/*.doc gsextractareaclass <external> */
/*+
Questa comando estrae le classi selezionate nella sessione
di lavoro corrente. E definito come comando per non avere il tempo
di ritardo di autocad successivo l'estrazione.
Restituisce TRUE in caso di successo altrimenti restituisce NIL.
-*/
/*********************************************************/
void gsextractareaclass(void)
{
int Mode;
C_INT_INT_LIST ErrClsCodeList;
C_STRING qryType;
GEOsimAppl::CMDLIST.StartCmd();
// modo di estrazione letto dalle impostazioni ADE
if (gsc_ade_qrygettype(&qryType) == GS_BAD) return GEOsimAppl::CMDLIST.ErrorCmd();
if (qryType.comp(_T("PREVIEW"), GS_BAD) == 0)
Mode = PREVIEW;
else if (qryType.comp(_T("DRAW"), GS_BAD) == 0)
Mode = EXTRACTION;
else
return GEOsimAppl::CMDLIST.ErrorCmd();
if (!GS_CURRENT_WRK_SESSION) return GEOsimAppl::CMDLIST.ErrorCmd();
if (GS_CURRENT_WRK_SESSION->extract(Mode, FALSE, &ErrClsCodeList) == GS_BAD ||
ErrClsCodeList.get_count() > 0)
GS_CURRENT_WRK_SESSION->DisplayMsgsForClassNotExtracted(ErrClsCodeList);
return GEOsimAppl::CMDLIST.EndCmd();
}
/*********************************************************/
/*.doc gs_retrieve_WrkSession <external> */
/*+
Questa funzione LISP recupera un'area in cui si era interrotta
l'applicazione.
Parametri:
Lista RESBUF (<prj><area>)
Restituisce TRUE in caso di successo altrimenti restituisce NIL.
-*/
/*********************************************************/
int gs_retrieve_WrkSession(void)
{
presbuf arg;
int prj;
long SessionId;
acedRetNil();
arg = acedGetArgs();
if (arg_to_prj_area(&arg, &prj, &SessionId) == GS_BAD) return RTERROR;
if (gsc_retrieve_area(prj, SessionId) == GS_BAD) return RTERROR;
acedRetT();
return RTNORM;
}
////////////////// INIZIO FUNZIONI C (gsc) ///////////////////
/*********************************************************/
/*.doc gsc_find_wrk_session <external> */
/*+
Questa funzione restituisce un oggetto C_WRK_SESSION leggendolo da DB.
Parametri:
int prj; Codice progetto
long SessionId; Codice sessione
Restituisce il puntatore alla sessione di lavoro in caso di successo
altrimenti NULL.
-*/
/*********************************************************/
C_WRK_SESSION *gsc_find_wrk_session(int prj, long SessionId)
{
C_PROJECT *pPrj;
C_STRING statement, TableRef;
_RecordsetPtr pRs;
C_WRK_SESSION *pWkrSession = NULL;
C_DBCONNECTION *pDBConn;
C_RB_LIST ColValues;
// Cerca progetto nella lista GEOsimAppl::PROJECTS
if ((pPrj = (C_PROJECT *) GEOsimAppl::PROJECTS.search_key(prj)) == NULL)
{ GS_ERR_COD = eGSInvalidPrjCode; return NULL; }
if (pPrj->getWrkSessionsTabInfo(&pDBConn, &TableRef) == GS_BAD) return NULL;
statement = _T("SELECT * FROM ");
statement += TableRef;
statement += _T(" WHERE GS_ID=");
statement += SessionId;
// leggo le righe della tabella in ordine di GS_ID senza bloccarla
if (pDBConn->ExeCmd(statement, pRs) == GS_BAD) return NULL;
if (gsc_isEOF(pRs) == GS_GOOD)
{ gsc_DBCloseRs(pRs); GS_ERR_COD = eGSInvSessionCode; return NULL; }
// lettura con conversione date
if (gsc_DBReadRow(pRs, ColValues) == GS_BAD)
{ gsc_DBCloseRs(pRs); return NULL; }
if ((pWkrSession = new C_WRK_SESSION(pPrj)) == NULL)
{
gsc_DBCloseRs(pRs);
GS_ERR_COD = eGSOutOfMem;
return NULL;
}
if (pWkrSession->from_rb_db(ColValues) == GS_BAD)
{
delete pWkrSession;
gsc_DBCloseRs(pRs);
return NULL;
}
if (gsc_DBCloseRs(pRs) == GS_BAD) return NULL;
return pWkrSession;
}
/************************************************************************************************************/
/*.doc gsc_del_area <external> */
/*+
Questa funzione cancella una area di GEOsim senza alcun salvataggio.
Parametri
int prj; codice progetto
long SessionId; codice sessione
const TCHAR *Password; Password dell'utente corrente (per controllo)
Restituisce GS_GOOD in caso di successo altrimenti restituisce GS_BAD.
-*/
/************************************************************************************************************/
int gsc_del_area(int prj, long SessionId, const TCHAR *Password)
{
C_PROJECT *pPrj;
C_WRK_SESSION *pSession;
// Cerca progetto nella lista GEOsimAppl::PROJECTS
if ((pPrj = (C_PROJECT *) GEOsimAppl::PROJECTS.search_key(prj)) == NULL) return GS_BAD;
// Cerco l'area
if ((pSession = gsc_find_wrk_session(prj, SessionId)) == NULL) return GS_BAD;
// cancello la sessione di lavoro
if (pSession->del(Password) == GS_BAD) return GS_BAD;
delete pSession;
return GS_GOOD;
}
/*****************************************************************************/
/*.doc gsc_set_auxiliary_for_thaw_class <internal> */
/*+
Questa funzione (utilizzata nella funzione C_WRK_SESSION::thaw_2parte) ripristina
le strutture ausiliarie di appoggio alla lista degli attributi
delle classi presenti in CLASSES_LIST_SEZ.
Restituisce GS_GOOD in caso di successo altrimenti restituisce GS_BAD.
-*/
/*****************************************************************************/
int gsc_set_auxiliary_for_thaw_class()
{
C_CLASS *pCls;
C_SUB *pSub;
C_STRING pathfile;
TCHAR entry[ID_PROFILE_LEN];
int cls, i = 1;
C_PROFILE_SECTION_BTREE ProfileSections;
C_BPROFILE_SECTION *ProfileSection;
C_B2STR *pProfileEntry;
// deseleziono le classi da estrarre
if (gsc_desel_all_area_class() == GS_BAD) return GS_BAD;
GS_CURRENT_WRK_SESSION->get_TempInfoFilePath(pathfile);
if (gsc_read_profile(pathfile, ProfileSections) == GS_BAD) return GS_BAD;
swprintf(entry, ID_PROFILE_LEN, _T("%d"), i);
ProfileSection = (C_BPROFILE_SECTION *) ProfileSections.search(CLASSES_LIST_SEZ);
while ((pProfileEntry = (C_B2STR *) ProfileSection->get_ptr_EntryList()->search(entry)))
{
swscanf(pProfileEntry->get_name2(), _T("%d"), &cls);
// Ritorna il puntatore alla classe cercata
if ((pCls = GS_CURRENT_WRK_SESSION->find_class(cls)) == NULL) return GS_BAD;
switch (pCls->ptr_id()->sel)
{
case DESELECTED: pCls->ptr_id()->sel = SELECTED; break;
case EXTRACTED : pCls->ptr_id()->sel = EXTR_SEL; break;
default: break;
}
if (GS_CURRENT_WRK_SESSION->get_level() == GSReadOnlyData)
pCls->ptr_id()->abilit = GSReadOnlyData;
if (pCls->get_category() == CAT_EXTERN)
{
pSub = (C_SUB *) pCls->ptr_sub_list()->get_head();
while (pSub != NULL)
{
switch (pSub->ptr_id()->sel)
{