forked from eclufsc/libertyParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
si2dr_liberty-PI.txt
executable file
·3743 lines (2156 loc) · 89.3 KB
/
si2dr_liberty-PI.txt
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
Documentation for the Si2dr-Liberty PI:
Number of Functions: 64
Note on Memory Management:
Before version 2.0, any si2drStringT arguments were directly inserted into the
in-memory database. This required the users of the PI to carefully watch these arguments,
and to free them when the application closed or was finished.
In version 2.0, this philosophy was changed, by using a string table, which is basically
an expandable string heap catalogued with a hash table. All strings are checked against the
table, and entered if not already there. If an entry is attempted on a string that is already
in the table, then the string is not re-entered, but rather a pointer to the already entered
string will be returned.
Therefore, all strings passed into the PI will be copied to the string table. Thus all strings
passed into the PI can be from any source, with any lifetime. These strings can be destroyed
as soon as the function returns. On the other hand, all strings given to the user by the PI,
are from the string table. The data pointed to by an si2drStringT pointer will not be changed
during the life of the session. The string table is freed by a PIQuit() call, and at that time,
every string pointer passed to the user by the PI will be destroyed, freed, and possibly re-used.
This string table based usage differs from the traditional SI2DR (CFIDR) storage philosophy.
Personally I like this approach better. The CFIDR/SI2DR traditional approach was to declare that
any string originating in the PI, was temporary, and any subsequent PI function could re-use that
space. Thus, all strings returned by the PI had to be copied by the user to more permanent
storage. This is no longer the case.
Function Descriptions::
---------------------------------------------------------------------------------------------
DECLARATION
si2drGroupIdT si2drPICreateGroup SI2_ARGS(( si2drStringT name,
si2drStringT group_type,
si2drErrorT *err));
DESCRIPTION
si2drPICreateGroup will create a group OID and set its name and type. This new OID
will be added to the PI container. It is possible to pass an
empty string for name, or even a null pointer. Names can be added later via the GroupAddName() function.
RATIONALE
RETURN VALUE
The return value is a group OID. A null OID is returned on error.
PARAMETERS
name (input) A null terminated string of 8-bit bytes. It may be
either a null pointer, or a pointer to an empty string.
If it is not empty, the string is expected to be
unique among all the other groups within the
same container of this OID.
group_type (input) A null terminated string of 8-bit bytes.
It is intended that the group type be one
that liberty would describe, like "library",
"cell", "pin", etc.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_OBJECT_ALREADY_EXISTS:
An object of the same type and name already exist in this context.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drAttrIdT si2drGroupCreateAttr SI2_ARGS(( si2drGroupIdT group,
si2drStringT name,
si2drAttrTypeT type,
si2drErrorT *err));
DESCRIPTION
Adds an Attr (attribute) to the group. The type parameter
determines whether the attr is complex or simple. The name should be unique
among the other attrs within group.
RATIONALE
RETURN VALUE
If an error is encountered, a null AttrIdT is returned. Otherwise
the OID of the Attr created is returned.
PARAMETERS
group (input) The group that will own the new attribute.
name (input) A null terminated string of 8-bit bytes. It may be
either a null pointer, or a pointer to an empty string.
If it is not empty, the string is expected to be
unique among all the other attrs within the
same container of this OID.
type (input) The type of attribute, either SI2DR_COMPLEX, or
SI2DR_SIMPLE.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_OBJECT_ALREADY_EXISTS:
An object of the same type and name already exist in this context.
SI2DR_INVALID_NAME:
The name provided is a null pointer or string, and should not be.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drAttrTypeT si2drAttrGetAttrType SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err));
DESCRIPTION
This function returns the type of the Attr.
RATIONALE
RETURN VALUE
This function returns the type of the Attr, which will be SI2DR_COMPLEX, or SI2DR_SIMPLE.
PARAMETERS
attr (input) The Attr whose type is being requested.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drStringT si2drAttrGetName SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err));
DESCRIPTION
This function returns the name of the Attr.
RATIONALE
RETURN VALUE
The return value is an si2drStringT that contains the name of the Attr.
PARAMETERS
attr (input) The Attr whose name is being requested.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drComplexAttrAddInt32Value SI2_ARGS(( si2drAttrIdT attr,
si2drInt32T intgr,
si2drErrorT *err ));
DESCRIPTION
This function adds an integer value to the ordered list of arguments
for the Complex Attr passed to the function.
RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The complex Attr to which the value should be added..
intgr (input) The si2drInt32T number to add.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drComplexAttrAddStringValue SI2_ARGS(( si2drAttrIdT attr,
si2drStringT string,
si2drErrorT *err ));
DESCRIPTION
This function adds an si2drStringT value to the ordered list of arguments
for the Complex Attr passed to the function.
RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The complex Attr to which the value should be added..
string (input) The string to put in the argument list.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drComplexAttrAddBooleanValue SI2_ARGS(( si2drAttrIdT attr,
si2drBooleanT bool,
si2drErrorT *err ));
DESCRIPTION
This function adds an si2drBooleanT value to the ordered list of
arguments for the Complex Attr passed to the function.
RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The complex Attr to which the value should be added..
bool (input) The si2drBooleanT value to add.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drComplexAttrAddFloat64Value SI2_ARGS(( si2drAttrIdT attr,
si2drFloat64T float64,
si2drErrorT *err ));
DESCRIPTION
This function adds an si2drFloat64T value to the ordered list of
arguments for the Complex Attr passwd to the function. RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The complex Attr to which the value should be added..
float64 (input) The si2drFloatT value to add.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drValuesIdT si2drComplexAttrGetValues SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err ));
DESCRIPTION
This function initiates a traversal of all the Values owned by the Complex Attr "attr".
RATIONALE
RETURN VALUE
The return value is an si2drValuesIdT referring to an Iterator ID that
iterates over Values. A valid Iterate ID is always returned, even when
an error occurs, or there are no values in the list. In the case of an
error, calling the si2drIterNextComplexValue() function returns a type
of SI2DR_UNDEFINED_VALUETYPE.
PARAMETERS
attr (input) The complex Attr to which the value should be added..
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drIterNextComplexValue SI2_ARGS(( si2drValuesIdT iter,
si2drValueTypeT *type,
si2drInt32T *intgr,
si2drFloat64T *float64,
si2drStringT *string,
si2drBooleanT *bool,
si2drErrorT *err ));
DESCRIPTION
This function returns all the information associated with a value
belonging to the iterated complex attr.
RATIONALE
RETURN VALUE
PARAMETERS
iter (input) The iterator ID representing an Iterator of Value objects.
type (output) The ValueTypeT of the value iterated. If it is set to
SI2DR_UNDEFINED_VALUETYPE, then there is no value, and the
iterator has no more values.
intgr (output) if the type is, SI2DR_INT32, the value pointed to by this arg is set to the stored value.
float64 (output) if the type is, SI2DR_FLOAT64, the value pointed to by this arg is set to the stored value.
string (output) if the type is, SI2DR_STRING, the value pointed to by this arg is set to the stored value.
bool (output) if the type is, SI2DR_BOOLEAN, the value pointed to by this arg is set to the stored value.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drValueTypeT si2drSimpleAttrGetValueType SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err ));
DESCRIPTION
This function returns the type of the value associated with the Attr "attr".
RATIONALE
RETURN VALUE
The return value is an si2drValueTypeT that indicates the type of value owned by "attr".
PARAMETERS
attr (input) The simple Attr whose value type is being requested.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drInt32T si2drSimpleAttrGetInt32Value SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err ));
DESCRIPTION
This function returns the Int32 value attribute of the Attr specified by "attr".
RATIONALE
RETURN VALUE
The return value is an si2drInt32T representing a 32-bit integer
number. If an error occurs the function returns 0.
PARAMETERS
attr (input) The simple Attr whose value is being requested.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
SI2DR_INVALID_VALUE:
The value is not set, or is not of the expected type.
PRE-CONDITIONS
POST-CONDITIONS
The integer returned is guaranteed to be in the range SI2DR_MIN_INT32 to SI2DR_MAX_INT32.
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drFloat64T si2drSimpleAttrGetFloat64Value SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err ));
DESCRIPTION
This function returns the Float64 Value attribute of the Attr specified by "attr".
RATIONALE
RETURN VALUE
The return value is an si2drFloat64T representing a 64-bit floating
point number. If an error occurs, the function returns 0.0.
PARAMETERS
attr (input) The simple Attr whose value is being requested.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INVALID_VALUE:
The value is not set, or is not of the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
The double returned is guaranteed to be in the range SI2DR_MIN_FLOAT32
to SI2DR_MAX_FLOAT32.
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drStringT si2drSimpleAttrGetStringValue SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err ));
DESCRIPTION
This function returns the si2drStringT Value attribute of the Attr specified by "attr".
RATIONALE
RETURN VALUE
The return value is an si2drStringT representing a string.
If an error occurs, the function returns an empty string.
PARAMETERS
attr (input) The simple Attr whose value is being requested.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INVALID_VALUE:
The value is not set, or is not of the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drBooleanT si2drSimpleAttrGetBooleanValue SI2_ARGS(( si2drAttrIdT attr,
si2drErrorT *err ));
DESCRIPTION
This funciton returns the Boolean Value attribute of the Attr specified by "attr".
RATIONALE
RETURN VALUE
The return value is either SI2DR_TRUE or SI2DR_FALSE. If an error
occurs the function returns SI2DR_FALSE.
PARAMETERS
attr (input) The simple Attr whose value is being requested.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INVALID_VALUE:
The value is not set, or is not of the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drSimpleAttrSetInt32Value SI2_ARGS(( si2drAttrIdT attr,
si2drInt32T intgr,
si2drErrorT *err ));
DESCRIPTION
This funciton sets the Int32 Value attribute for the Attr specified via "attr".
RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The simple Attr whose value is being set.
intgr (input) The integer number to set the Value attribute to.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drSimpleAttrSetBooleanValue SI2_ARGS(( si2drAttrIdT attr,
si2drBooleanT intgr,
si2drErrorT *err ));
DESCRIPTION
This funciton sets the Boolean Value attribute for the Attr specified via "attr".
RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The simple Attr whose value is being set.
intgr (input) The boolean number to set the Value attribute to.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drSimpleAttrSetFloat64Value SI2_ARGS(( si2drAttrIdT attr,
si2drFloat64T float64,
si2drErrorT *err ));
DESCRIPTION
This funciton sets the Float64 Value attribute for the Attr specified via "attr".
RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The simple Attr whose value is being set.
float64 (input) The double number to set the Value attribute to.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drVoidT si2drSimpleAttrSetStringValue SI2_ARGS(( si2drAttrIdT attr,
si2drStringT string,
si2drErrorT *err ));
DESCRIPTION
This funciton sets the String Value attribute for the Attr specified via "attr".
RATIONALE
RETURN VALUE
PARAMETERS
attr (input) The simple Attr whose value is being set.
string (input) The string to set the Value attribute to.
error (output) A pointer to the error returned if this function
fails. The caller is responsible for allocating
memory for this parameter.
ERROR_CODES
SI2DR_INVALID_OBJECTTYPE:
The type of the object given the function does not match the expected object type.
SI2DR_INVALID_ATTRTYPE:
The attribute type does not match the expected type.
SI2DR_INTERNAL_SYSTEM_ERROR:
some other error occurred.
SI2DR_NO_ERROR:
no error occurred.
PRE-CONDITIONS
POST-CONDITIONS
REFERENCE
---------------------------------------------------------------------------------------------
DECLARATION
si2drDefineIdT si2drGroupCreateDefine SI2_ARGS(( si2drGroupIdT group,
si2drStringT name,
si2drStringT allowed_group_name,
si2drValueTypeT valtype,
si2drErrorT *err));
DESCRIPTION
This function creates a new define, and sets its owner to group. The