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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257 | //- class: CubitAttribUser
//- Owner: Greg Nielson
//- Description: implementation of CubitAttribUser class.
//- Checked By:
//- Version: $Id:
// #include "CubitSimpleAttrib.hpp"
#include "CubitAttribUser.hpp"
#include "CastTo.hpp"
#include "Body.hpp"
#include "GeometryEntity.hpp"
#include "BasicTopologyEntity.hpp"
#include "BodySM.hpp"
#include "CAGroup.hpp"
#include "CAMergePartner.hpp"
//#include "CADeferredAttrib.hpp"
#include "RefFace.hpp"
#include "RefEdge.hpp"
#include "RefVertex.hpp"
// #include "DLIList.hpp"
// #include "CubitString.hpp"
#include "GeometryModifyTool.hpp"
#include "BridgeManager.hpp"
#include "CubitMessage.hpp"
CubitAttribUser::CubitAttribUser(CubitAttrib* cubit_attrib_ptr)
{
headAttrib = cubit_attrib_ptr;
}
CubitAttribUser::~CubitAttribUser()
{
//delete all ToolData's chained off this user.
CubitAttrib *ca_ptr = headAttrib;
while ( ca_ptr) {
CubitAttrib *next = ca_ptr->next_attrib();
delete ca_ptr;
ca_ptr = next;
}
headAttrib = NULL;
}
CubitAttrib* CubitAttribUser::get_cubit_attrib (int attrib_type,
CubitBoolean create_if_missing)
{
CubitAttrib* cubit_attrib_ptr = NULL;
RefEntity* entity = NULL;
DLIList<CubitAttrib*> attrib_list;
find_cubit_attrib_type (attrib_type, attrib_list);
if (attrib_list.size() > 0)
cubit_attrib_ptr = attrib_list.get();
else if ( create_if_missing == CUBIT_TRUE )
{
entity = CAST_TO(this, RefEntity);
cubit_attrib_ptr = CGMApp::instance()->attrib_manager()->create_cubit_attrib(attrib_type, entity, CubitSimpleAttrib());
}
return cubit_attrib_ptr;
}
CubitStatus CubitAttribUser::add_cubit_attrib (CubitAttrib* cubit_attrib_ptr)
{
if (cubit_attrib_ptr == NULL)
return CUBIT_FAILURE;
CubitStatus cubit_attribute_status = CUBIT_FAILURE;
CubitAttrib *temp_ptr;
if (headAttrib == NULL)
{
headAttrib = cubit_attrib_ptr;
cubit_attribute_status = CUBIT_SUCCESS;
}
else
{
for(temp_ptr = headAttrib;
temp_ptr->next_attrib() != NULL;
temp_ptr = temp_ptr->next_attrib());
temp_ptr->set_next_attrib(cubit_attrib_ptr);
cubit_attribute_status = CUBIT_SUCCESS;
}
return cubit_attribute_status;
}
CubitStatus CubitAttribUser::put_simple_attrib
(const CubitSimpleAttrib& new_csattrib_ptr, CubitBoolean append_it)
{
Body* Body_ptr;
Body_ptr = CAST_TO(this, Body);
BasicTopologyEntity* BTE_ptr;
BTE_ptr = CAST_TO(this, BasicTopologyEntity);
if ( Body_ptr != NULL )
{
// Get the OSME pointer
BodySM* OSME_ptr = Body_ptr->get_body_sm_ptr();
// check for duplicates
if (DEBUG_FLAG(94))
{
DLIList<CubitSimpleAttrib> cs_list;
OSME_ptr->get_simple_attribute(cs_list);
for (int i = cs_list.size(); i > 0; i--)
{
const CubitSimpleAttrib cs_attrib = cs_list.get_and_step();
if (cs_attrib == new_csattrib_ptr)
PRINT_INFO("Trying to add equivalent attribute of type %s on Body %d.\n",
new_csattrib_ptr.character_type().c_str(), Body_ptr->id());
else if (cs_attrib.character_type() == new_csattrib_ptr.character_type())
PRINT_INFO("Trying to add attribute of same type %s on Body %d.\n",
new_csattrib_ptr.character_type().c_str(), Body_ptr->id());
}
}
//________ Change Code by DZ of Cat, 3/11/99 12:25:30 PM ________
// Attach this name to it
if ( append_it )
append_simple_attribute(OSME_ptr, new_csattrib_ptr);
//________ Change End by DZ of Cat, 3/11/99 12:25:30 PM ________
}
// Deal with BasicTopologyEntities
else if ( BTE_ptr != NULL )
{
// Get the GeometryEntity pointer
GeometryEntity* GE_ptr =
BTE_ptr->get_geometry_entity_ptr();
if( NULL == GE_ptr )
return CUBIT_FAILURE;
// check for duplicates
if (DEBUG_FLAG(94))
{
DLIList<CubitSimpleAttrib> cs_list;
GE_ptr->get_simple_attribute(cs_list);
for (int i = cs_list.size(); i > 0; i--)
{
const CubitSimpleAttrib &cs_attrib = cs_list.get_and_step();
if (cs_attrib == new_csattrib_ptr)
PRINT_INFO("Trying to add equivalent attribute of type %s on %s %d.\n",
new_csattrib_ptr.character_type().c_str(),
BTE_ptr->class_name(), BTE_ptr->id());
else if (cs_attrib.character_type() == new_csattrib_ptr.character_type())
PRINT_INFO("Trying to add attribute of same type %s on %s %d.\n",
new_csattrib_ptr.character_type().c_str(),
BTE_ptr->class_name(), BTE_ptr->id());
}
}
//_________ Add Code by DZ of Cat, 3/11/99 11:10:29 AM _________
// Attach this name to it
if ( append_it )
append_simple_attribute(GE_ptr, new_csattrib_ptr);
//_________ Code End by DZ of Cat, 3/11/99 11:10:29 AM _________
}
// Deal with all other RefEntities. As these do not have any
// underlying entities (such as solid model entities) associated
// with them, this block is a do-nothing block.
else
{
}
if (DEBUG_FLAG(90))
{
RefEntity *ref_entity = CAST_TO(this, RefEntity);
PRINT_DEBUG_90( "Putting simple attribute of type %s on"
" %s %d.\n", new_csattrib_ptr.character_type().c_str(),
ref_entity->class_name(), ref_entity->id());
}
return CUBIT_SUCCESS;
}
CubitStatus CubitAttribUser::clear_simple_attribs_set_to_actuate()
{
CubitAttrib *cubit_attrib_ptr = NULL;
CubitAttrib *next_attrib_ptr = NULL;
for(cubit_attrib_ptr = headAttrib;
cubit_attrib_ptr != NULL;)
{
//ignore Assembly and Name attributes
next_attrib_ptr = cubit_attrib_ptr->next_attrib();
if( cubit_attrib_ptr->int_attrib_type() != CA_ENTITY_NAME &&
cubit_attrib_ptr->int_attrib_type() != CA_ASSEMBLY_DATA &&
CGMApp::instance()->attrib_manager()->auto_actuate_flag(
cubit_attrib_ptr->int_attrib_type()))
{
remove_cubit_attrib( cubit_attrib_ptr );
delete cubit_attrib_ptr;
}
cubit_attrib_ptr = next_attrib_ptr;
}
if (DEBUG_FLAG(94))
{
PRINT_DEBUG_94("CubitAttribUser::clear_simple_attribs()\n");
}
TopologyEntity* te_ptr = dynamic_cast<TopologyEntity*>(this);
if( !te_ptr )
return CUBIT_FAILURE;
remove_all_simple_attribute(te_ptr->bridge_manager()->topology_bridge());
write_cubit_attrib_by_type(CA_ASSEMBLY_DATA);
write_cubit_attrib_by_type( CA_ENTITY_NAME );
set_written_flag(CUBIT_FALSE);
return CUBIT_SUCCESS;
}
CubitStatus CubitAttribUser::clear_simple_attribs()
{
CubitAttrib *cubit_attrib_ptr = NULL;
CubitAttrib *next_attrib_ptr = NULL;
for(cubit_attrib_ptr = headAttrib;
cubit_attrib_ptr != NULL;)
{
//ignore Assembly and Name attributes
next_attrib_ptr = cubit_attrib_ptr->next_attrib();
if( cubit_attrib_ptr->int_attrib_type() != CA_ENTITY_NAME &&
cubit_attrib_ptr->int_attrib_type() != CA_ASSEMBLY_DATA)
{
remove_cubit_attrib( cubit_attrib_ptr );
delete cubit_attrib_ptr;
}
cubit_attrib_ptr = next_attrib_ptr;
}
if (DEBUG_FLAG(94))
{
PRINT_DEBUG_94("CubitAttribUser::clear_simple_attribs()\n");
}
TopologyEntity* te_ptr = dynamic_cast<TopologyEntity*>(this);
if( !te_ptr )
return CUBIT_FAILURE;
remove_all_simple_attribute(te_ptr->bridge_manager()->topology_bridge());
update_cubit_attrib(CA_ASSEMBLY_DATA);
write_cubit_attrib_by_type(CA_ASSEMBLY_DATA);
update_cubit_attrib(CA_ENTITY_NAME);
write_cubit_attrib_by_type( CA_ENTITY_NAME );
set_written_flag(CUBIT_FALSE);
return CUBIT_SUCCESS;
}
CubitStatus CubitAttribUser::write_specific_cubit_attrib(CubitAttrib* cubit_attrib_ptr)
{
CubitStatus result = CUBIT_SUCCESS;
// don't write if this attrib is marked as deleted or it has already been written
// Also, only write if the write flag is on for this attribute type
if ((cubit_attrib_ptr->delete_attrib() != CUBIT_TRUE) &&
// (cubit_attrib_ptr->has_written() != CUBIT_TRUE) &&
(CGMApp::instance()->attrib_manager()->auto_write_flag(cubit_attrib_ptr->int_attrib_type()) == CUBIT_TRUE))
{
if (DEBUG_FLAG(90)) {
RefEntity *this_entity = CAST_TO(this, RefEntity);
PRINT_DEBUG_90( "Writing attribute for %s %d, type %s\n",
this_entity->class_name(), this_entity->id(),
cubit_attrib_ptr->att_internal_name());
}
// set has_written flag here, before actually writing - a trick to
// allow some attributes to detect they're being written, and do any
// final setup they need to do before the actual write takes place (used
// in CAMeshContainer, for example)
cubit_attrib_ptr->has_written(CUBIT_TRUE);
const CubitSimpleAttrib &csa_ptr = cubit_attrib_ptr->cubit_simple_attrib();
result = put_simple_attrib(csa_ptr);
// if the write wasn't successful, reset the write flag
if (result != CUBIT_SUCCESS) cubit_attrib_ptr->has_written(CUBIT_FALSE);
}
return result;
}
CubitStatus CubitAttribUser::write_cubit_attrib_by_type(int attrib_type)
{
DLIList<CubitAttrib*> attrib_list;
find_cubit_attrib_type(attrib_type, attrib_list);
CubitStatus write_status = write_cubit_attrib_list(attrib_list);
return write_status;
}
CubitStatus CubitAttribUser::write_cubit_attrib_list(DLIList<CubitAttrib*>
attrib_list)
{
CubitStatus write_status = CUBIT_SUCCESS;
attrib_list.reset();
for(int i = attrib_list.size(); i > 0; i--)
{
CubitAttrib* cubit_attrib_ptr = attrib_list.get_and_step();
if (write_specific_cubit_attrib(cubit_attrib_ptr) == CUBIT_FAILURE)
write_status = CUBIT_FAILURE;
}
return write_status;
}
CubitStatus CubitAttribUser::write_cubit_attribs()
{
// write the attributes
CubitStatus write_status = CUBIT_SUCCESS;
DLIList<CubitAttrib*> attrib_list;
CubitAttrib *attrib;<--- The scope of the variable 'attrib' can be reduced. [+]The scope of the variable 'attrib' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
get_cubit_attrib_list(attrib_list);
attrib_list.reset();
int i;
for(i = attrib_list.size(); i != 0; i--)
{
attrib = attrib_list.get_and_step();
if (write_specific_cubit_attrib(attrib) == CUBIT_FAILURE)
write_status = CUBIT_FAILURE;
}
return write_status;
}
void CubitAttribUser::split_owner(DLIList<CubitSimpleAttrib> &csa_list)
{
//- if owner is to be split, get simple attribs for new entity
// first auto create attributes
/*CubitStatus success = */
CGMApp::instance()->attrib_manager()->auto_update_attribs(CAST_TO(this, RefEntity));
// call split for each attribute, getting back new csa's
DLIList<CubitAttrib*> ca_list;
get_cubit_attrib_list(ca_list);
int i;
for ( i = ca_list.size(); i > 0; i--) {
CubitAttrib *ca_ptr = ca_list.get_and_step();
CubitSimpleAttrib csa_ptr = ca_ptr->split_owner();
if (!csa_ptr.isEmpty())
csa_list.append(csa_ptr);
}
// now, check delete flag for each ca_ptr, and delete if necessary
for (i = ca_list.size(); i > 0; i--) {
CubitAttrib *ca_ptr = ca_list.get_and_step();
if (ca_ptr->delete_attrib()) {
remove_cubit_attrib(ca_ptr);
delete ca_ptr;
}
}
// ok, we're done
}
void CubitAttribUser::merge_owner(RefEntity *deletable_entity)
{
//- if owner is to be merged, combine attribs from deletable_entity with this
// if no deletable entity, keep the entity name and delete the other
// attribs on this entity
int i;
if (deletable_entity == NULL) {
DLIList<CubitAttrib*> ca_list;
get_cubit_attrib_list(ca_list);
for (i = ca_list.size(); i > 0; i--) {
CubitAttrib *ca_ptr = ca_list.get_and_step();
if (ca_ptr->int_attrib_type() != CA_ENTITY_NAME &&
ca_ptr->int_attrib_type() != CA_ASSEMBLY_DATA &&
ca_ptr->int_attrib_type() != CA_MESH_OUTPUT_GROUP)
{
remove_cubit_attrib(ca_ptr);
delete ca_ptr;
}
}
return;
}
// first auto create attributes
/*CubitStatus success = */
CGMApp::instance()->attrib_manager()->auto_update_attribs(CAST_TO(this, RefEntity));
// copy any attr's on deletable_entity but not on this
auto_create_for_merge(deletable_entity);
// call merge for each attribute, passing other as argument
DLIList<CubitAttrib*> ca_list, deletable_ca_list;
get_cubit_attrib_list(ca_list);
deletable_entity->get_cubit_attrib_list(deletable_ca_list);
assert(ca_list.size() >= deletable_ca_list.size());
for (i = ca_list.size(); i > 0; i--) {
CubitAttrib *ca_ptr = ca_list.get_and_step();
deletable_ca_list.reset();
CubitAttrib *deletable_ca_ptr = NULL;
if (deletable_ca_list.size() > 0) {
deletable_ca_ptr = deletable_ca_list.get();
// get the corresponding deletable attribute, then extract it from
// the list
while (ca_ptr->int_attrib_type() != deletable_ca_ptr->int_attrib_type() &&
!deletable_ca_list.is_at_end()) {
deletable_ca_list.step();
deletable_ca_ptr = deletable_ca_list.get();
}
if (ca_ptr->int_attrib_type() == deletable_ca_ptr->int_attrib_type())
deletable_ca_list.extract();
else deletable_ca_ptr = NULL;
}
ca_ptr->merge_owner(deletable_ca_ptr);
}
// now, check delete flag for each ca_ptr, and delete if necessary
for (i = ca_list.size(); i > 0; i--) {
CubitAttrib *ca_ptr = ca_list.get_and_step();
if (ca_ptr->delete_attrib()) {
remove_cubit_attrib(ca_ptr);
delete ca_ptr;
}
}
// ok, we're done
}
void CubitAttribUser::transf_owner(const CubitVector &matrow1,
const CubitVector &matrow2,
const CubitVector &matrow3,
const CubitVector &translate_vec,
const double scale_factor)
{
//- called if owner is to be transformed; simply passes information
//- to attribs on this entity; does *not* autocreate
DLIList<CubitAttrib*> ca_list;
get_cubit_attrib_list(ca_list);
for (int i = ca_list.size(); i > 0; i--) {
CubitAttrib *ca_ptr = ca_list.get_and_step();
ca_ptr->transf_owner(matrow1, matrow2, matrow3,
translate_vec, scale_factor);
}
// ok, we're done
}
void CubitAttribUser::auto_create_for_merge(RefEntity *deletable_entity)
{
// copy any attr's on deletable_entity but not on this
DLIList<CubitAttrib*> deletable_ca_list;
deletable_entity->get_cubit_attrib_list(deletable_ca_list);
if (deletable_ca_list.size() == 0) return;
DLIList<CubitAttrib*> new_list;
RefEntity *entity = CAST_TO(this, RefEntity);
for (int i = deletable_ca_list.size(); i > 0; i--) {
new_list.clean_out();
CubitAttrib *deletable_ca_ptr = deletable_ca_list.get_and_step();
find_cubit_attrib_type(deletable_ca_ptr->int_attrib_type(), new_list);
if (new_list.size() == 0)
{
CGMApp::instance()->attrib_manager()->create_cubit_attrib(
deletable_ca_ptr->int_attrib_type(),
entity, CubitSimpleAttrib());
}
}
}
CubitStatus CubitAttribUser::actuate_cubit_attrib (CubitAttrib* cubit_attrib_ptr)
{
CubitStatus return_value = CUBIT_FAILURE;
if (cubit_attrib_ptr != NULL )
{
if (cubit_attrib_ptr->has_actuated() == CUBIT_TRUE ||
cubit_attrib_ptr->delete_attrib() == CUBIT_TRUE) {
return CUBIT_FAILURE;
}
return_value = cubit_attrib_ptr->actuate();
if (cubit_attrib_ptr->delete_attrib() == CUBIT_TRUE)
{
return_value = remove_cubit_attrib(cubit_attrib_ptr);
delete cubit_attrib_ptr;
}
}
return return_value;
}
CubitStatus CubitAttribUser::actuate_cubit_attrib (int attrib_type)
{
DLIList<CubitAttrib*> attrib_list;
find_cubit_attrib_type(attrib_type, attrib_list);
CubitStatus actuate_status = actuate_cubit_attrib(attrib_list);
return actuate_status;
}
CubitStatus CubitAttribUser::actuate_cubit_attrib(DLIList<CubitAttrib*>
attrib_list)
{
CubitStatus actuate_status = CUBIT_SUCCESS;
attrib_list.reset();
for(int i = 0; i < attrib_list.size(); i++)
{
CubitAttrib* cubit_attrib_ptr = attrib_list.get_and_step();
if (actuate_cubit_attrib(cubit_attrib_ptr) == CUBIT_FAILURE)
actuate_status = CUBIT_FAILURE;
}
return actuate_status;
}
CubitStatus CubitAttribUser::actuate_cubit_attrib(DLIList<RefEntity*> refent_list,
int attrib_type)
{
CubitStatus actuate_status = CUBIT_SUCCESS;
DLIList<CubitAttrib*> attrib_list;
RefEntity *ref_ent;<--- The scope of the variable 'ref_ent' can be reduced. [+]The scope of the variable 'ref_ent' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
for(int i = refent_list.size(); i > 0; i--)
{
ref_ent = refent_list.get_and_step();
TopologyEntity* me_ptr = dynamic_cast<TopologyEntity*>(ref_ent);
if( me_ptr && me_ptr->deactivated() )
continue;
ref_ent->find_cubit_attrib_type(attrib_type, attrib_list);
if (attrib_list.size() > 0)
return ((attrib_list.get())->actuate_list(refent_list));
}
return actuate_status;
}
//CubitStatus CubitAttribUser::actuate_cubit_attrib ()
//{
// CubitStatus actuate_status = CUBIT_SUCCESS;
// DLIList<CubitAttrib*> attrib_list;
// CubitAttrib *attrib;
// get_cubit_attrib_list(attrib_list);
// attrib_list.reset();
//
// for(int i = attrib_list.size(); i != 0; i--)
// {
// attrib = attrib_list.get_and_step();
// if (attrib->actuate() == CUBIT_FAILURE)
// {
// actuate_status = CUBIT_FAILURE;
// }
// if (attrib->delete_attrib() == CUBIT_TRUE)
// {
// remove_cubit_attrib(attrib);
// delete attrib;
// }
// }
// return actuate_status;
//}
CubitStatus CubitAttribUser::auto_actuate_cubit_attrib (CubitBoolean from_constructor,
CubitBoolean after_geom_changes)
{
CubitStatus actuate_status = CUBIT_SUCCESS;
CubitAttrib *attrib;<--- The scope of the variable 'attrib' can be reduced. [+]The scope of the variable 'attrib' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
DLIList<CubitAttrib*> attrib_list;
get_cubit_attrib_list(attrib_list);
attrib_list.reset();
int i;
for( i = attrib_list.size(); i != 0; i--)
{
attrib = attrib_list.get_and_step();
// check first for deletable attribute; this attribute shouldn't really be here,
// but until we figure out why it is...
if (attrib->delete_attrib() == CUBIT_TRUE) {
PRINT_DEBUG_90("Trying to auto actuate deletable attribute - this is bad...\n");
}
else if (attrib->auto_actuate_flag() == CUBIT_TRUE &&
!attrib->has_actuated() &&
(!from_constructor || attrib->actuate_in_constructor()) &&
(after_geom_changes || !attrib->actuate_after_geom_changes()))
{
PRINT_DEBUG_90("Actuating attribute type %s for %s %d\n",
attrib->att_internal_name(), attrib->attrib_owner()->class_name(),
attrib->attrib_owner()->id());
if(attrib->actuate() == CUBIT_FAILURE)
{
actuate_status = CUBIT_FAILURE;
}
// need to check again for delete flag, since it might have been set
// in actuate function
if( attrib->delete_attrib() == CUBIT_TRUE)
{
remove_cubit_attrib(attrib);
delete attrib;
}
}
}
// if (CADeferredAttrib::cleanup_cadas(from_constructor, after_geom_changes) == CUBIT_FAILURE)
// actuate_status = CUBIT_FAILURE;
return actuate_status;
}
//CubitStatus CubitAttribUser::update_cubit_attrib (CubitAttrib* cubit_attrib_ptr)
//{
// if (cubit_attrib_ptr != NULL)
// return cubit_attrib_ptr->update();
// return CUBIT_FAILURE;
//}
CubitStatus CubitAttribUser::update_cubit_attrib (int attrib_type)
{
DLIList<CubitAttrib*> attrib_list;
CubitAttrib* new_attrib = NULL;
find_cubit_attrib_type(attrib_type, attrib_list);
if( attrib_list.size() > 1 )
{
PRINT_WARNING("File contains multiples of the same attrib.\n");
PRINT_INFO(" Something was not written correctly.\n");
}
if(attrib_list.size() == 0)
new_attrib = get_cubit_attrib(attrib_type);
else
new_attrib = attrib_list.get();
assert(new_attrib != 0);
CubitStatus update_status = new_attrib->update();
return update_status;
}
//CubitStatus CubitAttribUser::update_cubit_attrib(DLIList<CubitAttrib*>
// attrib_list)
//{
// CubitStatus update_status = CUBIT_SUCCESS;
// attrib_list.reset();
// for(int i = attrib_list.size(); i > 0; i--)
// {
// CubitAttrib* cubit_attrib_ptr = attrib_list.get_and_step();
// if (cubit_attrib_ptr->update() == CUBIT_FAILURE)
// update_status = CUBIT_FAILURE;
// }
// return update_status;
//}
//CubitStatus CubitAttribUser::update_cubit_attrib()
//{
// return CUBIT_FAILURE;
//}
CubitStatus CubitAttribUser::auto_update_cubit_attrib ()
{
// for this cau, automatically create and update ca's
// first, create ca's for any attribute type which has its auto
// update flag set and which isn't present yet on this entity
/*CubitStatus success = */
CGMApp::instance()->attrib_manager()->auto_update_attribs(CAST_TO(this, RefEntity));
// now, update all attributes present on this entity
CubitStatus update_status = CUBIT_SUCCESS;
DLIList<CubitAttrib*> attrib_list;
DLIList<CubitAttrib*> attribs_to_delete;
CubitAttrib *attrib;
get_cubit_attrib_list(attrib_list);
attrib_list.reset();
int i;
for( i = attrib_list.size(); i != 0; i--)
{
attrib = attrib_list.get_and_step();
if (!attrib->has_updated()) {
// if this attribute has written already, reset the information in it
// so it gets a "clean" update (otherwise information can be added to
// lists on the attrib more than once)
if (CUBIT_TRUE == attrib->has_written())
attrib->reset();
// reset the delete flag here, so we don't need to do it in every attribute
// (it'll get set back to delete if the update isn't successful)
attrib->delete_attrib(CUBIT_FALSE);
PRINT_DEBUG_90("Updating attribute type %s for %s %d, delete = ",
attrib->att_internal_name(), attrib->attrib_owner()->class_name(),
attrib->attrib_owner()->id());
update_status = attrib->update();
if( attrib->delete_attrib() )
attribs_to_delete.append( attrib );
PRINT_DEBUG_90("%s\n",
(attrib->delete_attrib() == CUBIT_FALSE ? "NO" : "YES"));
// if update was successful, reset the written flag (assumes that all
// updates are done before writing starts)
// (don't reset if it's the entity_name attrib, since this attrib is
// written automatically every time it's updated)
if (update_status == CUBIT_SUCCESS && attrib->int_attrib_type() != CA_ENTITY_NAME)
attrib->has_written(CUBIT_FALSE);
}
else
{
PRINT_DEBUG_90("Not updating attribute type %s for %s %d, delete = ",
attrib->att_internal_name(), attrib->attrib_owner()->class_name(),
attrib->attrib_owner()->id());
PRINT_DEBUG_90("%s\n",
(attrib->delete_attrib() == CUBIT_FALSE ? "NO" : "YES"));
}
}
//remove any attribs that don't need to be there
remove_cubit_attrib( attribs_to_delete );
/*
RefEntity* re_ptr;
re_ptr = CAST_TO(this, RefEntity);
DLIList<RefEntity*> children;
re_ptr->get_child_ref_entities( children );
for ( i = children.size(); i > 0; i-- )
{
children.get()->auto_update_cubit_attrib();
children.step();
}
*/
return update_status;
}
void CubitAttribUser::auto_reset_cubit_attrib (DLIList<RefEntity*> ref_ents)
{
// set the update flag back off for all attribs on these entities and their children
DLIList<RefEntity*> children, temp_list;
int i;
for (i = ref_ents.size(); i > 0; i--) {
temp_list.clean_out();
ref_ents.get_and_step()->get_all_child_ref_entities(temp_list);
children += temp_list;
}
ref_ents.merge_unique(children);
// ok, have a unique'd list if entities; now reset on each of them
ref_ents.reset();
for (i = ref_ents.size(); i > 0; i--) {
ref_ents.get()->set_written_flag(CUBIT_FALSE);
ref_ents.get_and_step()->set_updated_flag(CUBIT_FALSE);
}
}
//void CubitAttribUser::auto_reset_cubit_attrib ()
//{
// // set the update flag back off for all attribs on these entities and their children
// DLIList<CubitAttrib*> attrib_list;
// CubitAttrib *attrib;
// get_cubit_attrib_list(attrib_list);
// attrib_list.reset();
// int i;
// for( i = attrib_list.size(); i != 0; i--)
// {
// attrib = attrib_list.get_and_step();
// if (attrib->has_updated() && attrib->has_written())
// attrib->has_updated(CUBIT_FALSE);
// }
//}
CubitStatus CubitAttribUser::auto_update_cubit_attrib (DLIList<RefEntity*> &entity_list,
CubitBoolean write_too)
{
//- for entity_list, auto create, update and write ca's
// now, reset the update and write flags for these entities
// and their children
auto_reset_cubit_attrib(entity_list);
// need to update all then write all in separate loops,
// to prevent duplication of attributes
int i;
for ( i = entity_list.size(); i > 0; i--)
entity_list.get_and_step()->auto_update_cubit_attrib();
if (write_too) {
for (i = entity_list.size(); i > 0; i--)
entity_list.get_and_step()->write_cubit_attribs();
}
return CUBIT_SUCCESS;
}
CubitStatus CubitAttribUser::clear_all_simple_attrib( DLIList<RefEntity*>& entity_list )
{
CubitStatus result = CUBIT_SUCCESS;
for( int i = entity_list.size(); i--; )
if( entity_list.get_and_step()->clear_simple_attribs() != CUBIT_SUCCESS )
result = CUBIT_FAILURE;
return result;
}
CubitStatus CubitAttribUser::clear_all_simple_attrib_set_to_actuate( DLIList<RefEntity*>& entity_list )
{
CubitStatus result = CUBIT_SUCCESS;
for( int i = entity_list.size(); i--; )
if( entity_list.get_and_step()->clear_simple_attribs_set_to_actuate() != CUBIT_SUCCESS )
result = CUBIT_FAILURE;
return result;
}
void CubitAttribUser::find_cubit_attrib_type(int type,
DLIList<CubitAttrib*>& attrib_list) const
{
for(CubitAttrib* cubit_attrib_ptr = headAttrib;
cubit_attrib_ptr != NULL;
cubit_attrib_ptr = cubit_attrib_ptr->next_attrib())
{
if (type == cubit_attrib_ptr->int_attrib_type())
attrib_list.append_unique(cubit_attrib_ptr);
}
}
CubitStatus CubitAttribUser::remove_cubit_attrib(DLIList<CubitAttrib*>
attrib_list)
{
CubitStatus remove_status = CUBIT_SUCCESS;
attrib_list.reset();
for(int i = attrib_list.size(); i != 0; i--)
{
CubitAttrib* cubit_attrib_ptr = attrib_list.get_and_step();
if (remove_cubit_attrib(cubit_attrib_ptr) == CUBIT_FAILURE)
remove_status = CUBIT_FAILURE;
delete cubit_attrib_ptr;
}
return remove_status;
}
CubitStatus CubitAttribUser::remove_cubit_attrib(int attrib_type)
{
DLIList<CubitAttrib*> attrib_list;
find_cubit_attrib_type(attrib_type, attrib_list);
CubitStatus remove_status = remove_cubit_attrib(attrib_list);
return remove_status;
}
CubitStatus CubitAttribUser::remove_cubit_attrib (CubitAttrib*
cubit_attrib_ptr)
{
if (cubit_attrib_ptr == NULL)
return CUBIT_FAILURE;
CubitStatus remove_geom = remove_attrib_geometry_entity(cubit_attrib_ptr);
//CubitStatus remove_cubit = CUBIT_FAILURE;
CubitBoolean once = CUBIT_FALSE;
if (headAttrib == cubit_attrib_ptr) {
headAttrib = cubit_attrib_ptr->next_attrib();
once = CUBIT_TRUE;
}
CubitAttrib* temp_cubit_attrib_ptr = headAttrib;
while (temp_cubit_attrib_ptr != NULL) {
if (cubit_attrib_ptr == temp_cubit_attrib_ptr->next_attrib()) {
if (once) {
PRINT_DEBUG_90("Removing attribute more than once.\n");
}
temp_cubit_attrib_ptr->set_next_attrib(cubit_attrib_ptr->
next_attrib());
once = CUBIT_TRUE;
}
temp_cubit_attrib_ptr = temp_cubit_attrib_ptr->next_attrib();
}
return remove_geom;
}
//CubitStatus CubitAttribUser::remove_cubit_attrib ()
//{
// CubitAttrib *cubit_attrib_ptr = NULL;
// for(cubit_attrib_ptr = headAttrib;
// cubit_attrib_ptr != NULL;)
// {
// headAttrib = cubit_attrib_ptr->next_attrib();
// delete cubit_attrib_ptr;
// cubit_attrib_ptr = headAttrib;
// }
// remove_attrib_geometry_entity();
// return CUBIT_SUCCESS;
//}
CubitStatus CubitAttribUser::auto_read_cubit_attrib()
{
// auto read all simple attributes on this entity & create CA's for them;
// checks global and CA-specific auto read flag, and puts CSA's back on
// entity if auto read for that type is off
CubitStatus cubit_assign_status = CUBIT_FAILURE;
// Get the GeometryEntity of this RefEntity (it could be the OSME
// if it is a Body) and get its name, if it exists
DLIList<CubitSimpleAttrib> csattrib_list;
// Deal with a Body entity
Body* Body_ptr = CAST_TO(this, Body);
BasicTopologyEntity* BTE_ptr = CAST_TO(this, BasicTopologyEntity);
if ( Body_ptr != NULL )
{
BodySM* OSME_ptr = Body_ptr->get_body_sm_ptr();
OSME_ptr->get_simple_attribute(csattrib_list);
remove_all_simple_attribute(OSME_ptr);
}
else if ( BTE_ptr != NULL )
{
GeometryEntity* GE_ptr = BTE_ptr->get_geometry_entity_ptr();
GE_ptr->get_simple_attribute(csattrib_list);
remove_all_simple_attribute(GE_ptr);
}
else return CUBIT_SUCCESS;
csattrib_list.reset();
for(int i = csattrib_list.size(); i != 0; i--)
{
const CubitSimpleAttrib& cubit_simple_attrib_ptr = csattrib_list.get_and_step();
int csa_type = CGMApp::instance()->attrib_manager()->attrib_type(cubit_simple_attrib_ptr);
CubitAttrib *new_attrib = NULL;
if (CGMApp::instance()->attrib_manager()->auto_read_flag(csa_type))
// auto create this CA
new_attrib = CGMApp::instance()->attrib_manager()->create_cubit_attrib(csa_type,
CAST_TO(this, RefEntity), cubit_simple_attrib_ptr);
if (new_attrib != NULL && new_attrib->delete_attrib() == CUBIT_FALSE)
cubit_assign_status = CUBIT_SUCCESS;
else if (new_attrib != NULL && new_attrib->delete_attrib() == CUBIT_TRUE) {
remove_cubit_attrib(new_attrib);
delete new_attrib;
}
else
put_simple_attrib(cubit_simple_attrib_ptr);
}
return cubit_assign_status;
}
CubitStatus CubitAttribUser::read_cubit_attrib(int attrib_type)
{
CubitStatus read_status;
// get all simple attrib's
DLIList<CubitSimpleAttrib> csattrib_list;
// Deal with a Body entity
Body* Body_ptr = CAST_TO(this, Body);
BasicTopologyEntity* BTE_ptr = CAST_TO(this, BasicTopologyEntity);
if ( Body_ptr != NULL )
{
BodySM* OSME_ptr = Body_ptr->get_body_sm_ptr();
read_status = OSME_ptr->get_simple_attribute(csattrib_list);
remove_all_simple_attribute(OSME_ptr);
}
else if ( BTE_ptr != NULL )
{
GeometryEntity* GE_ptr = BTE_ptr->get_geometry_entity_ptr();
read_status = GE_ptr->get_simple_attribute(csattrib_list);
remove_all_simple_attribute(GE_ptr);
}
else return CUBIT_SUCCESS;
csattrib_list.reset();
for(int i = csattrib_list.size(); i != 0; i--)
{
const CubitSimpleAttrib& cubit_simple_attrib_ptr = csattrib_list.get_and_step();
int csa_type = CGMApp::instance()->attrib_manager()->attrib_type(cubit_simple_attrib_ptr);
if (attrib_type == CA_ALL_ATTRIBUTES || csa_type == attrib_type) {
// create this CA
// CubitAttrib *new_attrib =
CGMApp::instance()->attrib_manager()->create_cubit_attrib(csa_type,
CAST_TO(this, RefEntity), cubit_simple_attrib_ptr);
}
else {
// otherwise we don't want to read this one; since the get_simple_attribute
// took the attribute off, we'll have to put this one back on
put_simple_attrib(cubit_simple_attrib_ptr);
}
}
return read_status;
}
//CubitStatus CubitAttribUser::read_cubit_attrib(CubitBoolean read_children)
//{
// CubitStatus read_status = CUBIT_SUCCESS;
// if (read_cubit_attrib(CA_ALL_ATTRIBUTES) == CUBIT_FAILURE)
// read_status = CUBIT_FAILURE;
//
// if (read_children) {
// // now, call read for all children
// DLIList<RefEntity*> children;
// RefEntity* re_ptr;
// re_ptr = CAST_TO(this, RefEntity);
// re_ptr->get_all_child_ref_entities( children );
// CubitStatus temp_status;
// for ( int i = children.size(); i > 0; i-- )
// {
// temp_status = children.get()->read_cubit_attrib(CA_ALL_ATTRIBUTES);
// if (temp_status == CUBIT_FAILURE) read_status = CUBIT_FAILURE;
// children.step();
// }
// }
//
// return read_status;
//}
void CubitAttribUser::get_cubit_attrib_list (DLIList<CubitAttrib*>& attrib_list)
{
for(CubitAttrib* cubit_attrib_ptr = headAttrib;
cubit_attrib_ptr != NULL;
cubit_attrib_ptr = cubit_attrib_ptr->next_attrib()) {
assert(NULL != cubit_attrib_ptr);
attrib_list.append_unique(cubit_attrib_ptr);
}
}
int CubitAttribUser::num_cubit_attrib()
{
int number = 0;
for(CubitAttrib* cubit_attrib_ptr = headAttrib;
cubit_attrib_ptr != NULL;
cubit_attrib_ptr = cubit_attrib_ptr->next_attrib())
number++;
return number;
}
CubitStatus CubitAttribUser::remove_attrib_geometry_entity (CubitAttrib*
cubit_attrib_ptr)
{
CubitStatus removed = CUBIT_FAILURE;
if(cubit_attrib_ptr == NULL)
return removed;
CubitSimpleAttrib csattrib_ptr = cubit_attrib_ptr->cubit_simple_attrib();
if(!csattrib_ptr.isEmpty())
{
if (DEBUG_FLAG(90)) {
RefEntity *ref_entity = CAST_TO(this, RefEntity);
PRINT_DEBUG_90( "Removing simple attribute of type %s on"
" %s %d.\n", csattrib_ptr.character_type().c_str(),
ref_entity->class_name(), ref_entity->id());
}
TopologyEntity* topo_ptr = CAST_TO(this, TopologyEntity);
if (topo_ptr && topo_ptr->bridge_manager()->topology_bridge())
{
remove_simple_attribute(topo_ptr->bridge_manager()->topology_bridge(), csattrib_ptr);
removed = CUBIT_SUCCESS;
}
}
return removed;
}
//CubitStatus CubitAttribUser::remove_attrib_geometry_entity ()
//{
// CubitStatus removed = CUBIT_FAILURE;
// Body* Body_ptr = CAST_TO(this, Body);
//
// BasicTopologyEntity* BTE_ptr = CAST_TO(this, BasicTopologyEntity);
// //Deal with Bodies
// if ( Body_ptr != NULL )
// {
// // Get the OSME pointer
// BodySM* OSME_ptr = Body_ptr->get_body_sm_ptr();
// remove_all_simple_attribute(OSME_ptr);
// removed = CUBIT_SUCCESS;
// }
//
// // Deal with BasicTopologyEntities
// else if ( BTE_ptr != NULL )
// {
// // Get the GeometryEntity pointer
// GeometryEntity* GE_ptr =
// BTE_ptr->get_geometry_entity_ptr();
// remove_all_simple_attribute(GE_ptr);
// removed = CUBIT_SUCCESS;
// }
//
// // All other Entities
// else
// {
// }
// return removed;
//}
void CubitAttribUser::set_written_flag(CubitBoolean flag)
{
DLIList<CubitAttrib*> ca_list;
get_cubit_attrib_list(ca_list);
for (int i = ca_list.size(); i > 0; i--) {
if (flag == CUBIT_FALSE && ca_list.get()->has_written() == CUBIT_TRUE)
ca_list.get()->reset();
ca_list.get_and_step()->has_written(flag);
}
}
void CubitAttribUser::set_updated_flag(CubitBoolean flag)
{
DLIList<CubitAttrib*> ca_list;
get_cubit_attrib_list(ca_list);
for (int i = ca_list.size(); i > 0; i--)
ca_list.get_and_step()->has_updated(flag);
}
//void CubitAttribUser::print_attribs()
//{
// PRINT_INFO("Attributes on %s %d:\n",
// CAST_TO(this, RefEntity)->entity_name().c_str(),
// CAST_TO(this, RefEntity)->id());
// DLIList<CubitAttrib*> attrib_list;
// get_cubit_attrib_list(attrib_list);
// int i;
// for (i = attrib_list.size(); i > 0; i--)
// attrib_list.get_and_step()->print();
//
// if (attrib_list.size() == 0) PRINT_INFO("(none)\n");
//}
void CubitAttribUser::append_simple_attribute(TopologyBridge *bridge, const CubitSimpleAttrib& attrib_ptr)
{
// for merged objects, put attribute on other entities
if (CubitSimpleAttrib::get_push_attribs() == CUBIT_TRUE ||
CGMApp::instance()->attrib_manager()->auto_update_flag(CA_MERGE_PARTNER) == CUBIT_TRUE) {
DLIList<TopologyBridge*> tb_list;
bridge->bridge_manager()->get_bridge_list(tb_list);
// if this entity is merged, it will have > 1 entity in the bridge
// list
tb_list.reset();
assert(tb_list.size() == 0 || tb_list.get() == bridge);
// Special handling of MergePartner attribute.
// Need to store the bridge sense in the attribute, which
// is potentially different for different TopologyBridges.
int type = CGMApp::instance()->attrib_manager()->attrib_type_from_internal_name(attrib_ptr.character_type().c_str());
if ( type == CA_MERGE_PARTNER )
{
CubitSimpleAttrib merge_attrib = attrib_ptr;
// now adjust the attrib on each bridge to hold the
// relative sense for that bridge.
for (int i = tb_list.size(); i > 0; i--) {
TopologyBridge *temp_tb = tb_list.get_and_step();
CAMergePartner::set_bridge_sense( merge_attrib, temp_tb->bridge_sense() );
GeometryEntity *geom_ptr = dynamic_cast<GeometryEntity*>(temp_tb);
if (geom_ptr )
{
//if we're copying a merged entity, saved id should be zero
if( GeometryModifyTool::instance()->get_copy_entity() )
CAMergePartner::set_saved_id( merge_attrib, 0 );
else
CAMergePartner::set_saved_id( merge_attrib, geom_ptr->get_saved_id() );
//First bridge should be marked as "survivor"
if( i == tb_list.size() )
{
CAMergePartner::set_survivor( merge_attrib, 1 );
}
else
CAMergePartner::set_survivor( merge_attrib, 0 );
}
append_attrib_internal(temp_tb, merge_attrib);
}
}
// For anything other than CAMergePartner, just append the
// unmodified attribute to each bridge.
else
{
for ( int i = tb_list.size(); i--; )
append_attrib_internal( tb_list.get_and_step(), attrib_ptr);
}
}
else
{
// Append this name to the primary bridge
append_attrib_internal(bridge, attrib_ptr);
}
}
void CubitAttribUser::append_attrib_internal(TopologyBridge *bridge, const CubitSimpleAttrib& attrib_ptr)
{
DLIList<CubitSimpleAttrib> others;
// Check for duplicates
if ( attrib_ptr.character_type() != "DEFERRED_ATTRIB" )
{
bridge->get_simple_attribute( attrib_ptr.character_type().c_str(), others );
while ( others.size() )
{
bridge->remove_simple_attribute_virt( others.pop() );
}
}
else
{
CubitString real_name = attrib_ptr.string_data_list()[1];
bridge->get_simple_attribute("DEFERRED_ATTRIB", others);
while ( others.size() )
{
CubitSimpleAttrib dup_attrib = others.pop();
if ( dup_attrib.string_data_list()[1] == real_name )
bridge->remove_simple_attribute_virt(dup_attrib);
}
}
// append attribute
bridge->append_simple_attribute_virt(attrib_ptr);
}
void CubitAttribUser::remove_all_simple_attribute(TopologyBridge* bridge)
{
// remove this name from the primary object
bridge->remove_all_simple_attribute_virt();
// for merged objects, remove all attributes from other entities
if (CubitSimpleAttrib::get_push_attribs() == CUBIT_TRUE ||
CGMApp::instance()->attrib_manager()->auto_update_flag(CA_MERGE_PARTNER) == CUBIT_TRUE) {
DLIList<TopologyBridge*> tb_list;
bridge->bridge_manager()->get_bridge_list(tb_list);
tb_list.reset();
assert(tb_list.size() == 0 || tb_list.get() == bridge);
for (int i = tb_list.size(); i > 0; i--) {
TopologyBridge *temp_tb = tb_list.get_and_step();
if (temp_tb != bridge) temp_tb->remove_all_simple_attribute_virt();
}
}
}
void CubitAttribUser::remove_simple_attribute(TopologyBridge* bridge, const CubitSimpleAttrib& attrib_ptr)
{
// remove this name from the primary object
bridge->remove_simple_attribute_virt(attrib_ptr);
// for merged objects, remove attribute from other entities
if (CubitSimpleAttrib::get_push_attribs() == CUBIT_TRUE ||
CGMApp::instance()->attrib_manager()->auto_update_flag(CA_MERGE_PARTNER) == CUBIT_TRUE) {
DLIList<TopologyBridge*> tb_list;
BridgeManager *bm_ptr = bridge->bridge_manager();
if (bm_ptr != NULL) bm_ptr->get_bridge_list(tb_list);
tb_list.reset();
assert(tb_list.size() == 0 || tb_list.get() == bridge);
for (int i = tb_list.size(); i > 0; i--) {
TopologyBridge *temp_tb = tb_list.get_and_step();
if (temp_tb != bridge) temp_tb->remove_simple_attribute_virt(attrib_ptr);
}
}
}
|