aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orber/doc/src/orber_tc.xml
blob: 0cab8a5e4b4a695753c220a397cc6d829489aa80 (plain) (blame)
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
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>1998</year>
      <year>2016</year>
      <holder>Ericsson AB, All Rights Reserved</holder>
    </copyright>
    <legalnotice>
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

  The Initial Developer of the Original Code is Ericsson AB.
    </legalnotice>

    <title>orber_tc</title>
    <prepared>Lars Thors&eacute;n</prepared>
    <responsible>Lars Thors&eacute;n</responsible>
    <docno></docno>
    <approved>Lars Thors&eacute;n</approved>
    <checked></checked>
    <date>1998-04-20</date>
    <rev>A</rev>
  </header>
  <module>orber_tc</module>
  <modulesummary>Help functions for IDL typecodes</modulesummary>
  <description>
    <p>This module contains some functions that gives support in creating 
      IDL typecodes that can be used in for example the any types typecode field.
      For the simple types it is meaningless to use this API but the functions exist
      to get the interface complete.</p>
    <p>The type <c>TC</c> used below describes an IDL type and is a tuple according 
      to the to the Erlang language mapping.</p>
  </description>
  <funcs>
    <func>
      <name>null() -> TC</name>
      <name>void() -> TC</name>
      <name>short() -> TC</name>
      <name>unsigned_short() -> TC</name>
      <name>long() -> TC</name>
      <name>unsigned_long() -> TC</name>
      <name>long_long() -> TC</name>
      <name>unsigned_long_long() -> TC</name>
      <name>wchar() -> TC</name>
      <name>float() -> TC</name>
      <name>double() -> TC</name>
      <name>boolean() -> TC</name>
      <name>char() -> TC</name>
      <name>octet() -> TC</name>
      <name>any() -> TC</name>
      <name>typecode() -> TC</name>
      <name>principal() -> TC</name>
      <fsummary>Return the IDL typecode</fsummary>
      <desc>
        <p>These functions return the IDL typecodes for simple types.</p>
      </desc>
    </func>
    <func>
      <name>object_reference(Id, Name) -> TC</name>
      <fsummary>Return the object_reference IDL typecode</fsummary>
      <type>
        <v>Id = string()</v>
        <d>the repository ID</d>
        <v>Name = string()</v>
        <d>the type name of the object</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for object_reference.</p>
      </desc>
    </func>
    <func>
      <name>struct(Id, Name, ElementList) -> TC</name>
      <fsummary>Return the struct IDL typecode</fsummary>
      <type>
        <v>Id = string()</v>
        <d>the repository ID</d>
        <v>Name = string()</v>
        <d>the type name of the struct</d>
        <v>ElementList = [{MemberName, TC}]</v>
        <d>a list of the struct elements</d>
        <v>MemberName = string()</v>
        <d>the element name</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for struct.</p>
      </desc>
    </func>
    <func>
      <name>union(Id, Name, DiscrTC, Default, ElementList) -> TC</name>
      <fsummary>Return the union IDL typecode</fsummary>
      <type>
        <v>Id = string()</v>
        <d>the repository ID</d>
        <v>Name = string()</v>
        <d>the type name of the union</d>
        <v>DiscrTC = TC</v>
        <d>the typecode for the unions discriminant</d>
        <v>Default = integer()</v>
        <d>a value that indicates which tuple in the element list that is default (value &lt; 0 means no default)</d>
        <v>ElementList = [{Label, MemberName, TC}]</v>
        <d>a list of the union elements</d>
        <v>Label = term()</v>
        <d>the label value should be of the <em>DiscrTC</em>type</d>
        <v>MemberName = string()</v>
        <d>the element name</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for union.</p>
      </desc>
    </func>
    <func>
      <name>enum(Id, Name, ElementList) -> TC</name>
      <fsummary>Return the enum IDL typecode</fsummary>
      <type>
        <v>Id = string()</v>
        <d>the repository ID</d>
        <v>Name = string()</v>
        <d>the type name of the enum</d>
        <v>ElementList = [MemberName]</v>
        <d>a list of the enums elements</d>
        <v>MemberName = string()</v>
        <d>the element name</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for enum.</p>
      </desc>
    </func>
    <func>
      <name>string(Length) -> TC</name>
      <fsummary>Return the string IDL typecode</fsummary>
      <type>
        <v>Length = integer()</v>
        <d>the length of the string (0 means unbounded)</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for string.</p>
      </desc>
    </func>
    <func>
      <name>wstring(Length) -> TC</name>
      <fsummary>Return the wstring IDL typecode</fsummary>
      <type>
        <v>Length = integer()</v>
        <d>the length of the wstring (0 means unbounded)</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for wstring.</p>
      </desc>
    </func>
    <func>
      <name>fixed(Digits, Scale) -> TC</name>
      <fsummary>Return the fixed IDL typecode</fsummary>
      <type>
        <v>Digits = Scale = integer()</v>
        <d>the digits and scale parameters of a Fixed type</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for fixed.</p>
      </desc>
    </func>
    <func>
      <name>sequence(ElemTC, Length) -> TC</name>
      <fsummary>Return the sequence IDL typecode</fsummary>
      <type>
        <v>ElemTC = TC</v>
        <d>the typecode for the sequence elements</d>
        <v>Length = integer()</v>
        <d>the length of the sequence (0 means unbounded)</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for sequence.</p>
      </desc>
    </func>
    <func>
      <name>array(ElemTC, Length) -> TC</name>
      <fsummary>Return the array IDL typecode</fsummary>
      <type>
        <v>ElemTC = TC</v>
        <d>the typecode for the array elements</d>
        <v>Length = integer()</v>
        <d>the length of the array</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for array.</p>
      </desc>
    </func>
    <func>
      <name>alias(Id, Name, AliasTC) -> TC</name>
      <fsummary>Return the alias IDL typecode</fsummary>
      <type>
        <v>Id = string()</v>
        <d>the repository ID</d>
        <v>Name = string()</v>
        <d>the type name of the alias</d>
        <v>AliasTC = TC</v>
        <d>the typecode for the type which the alias refer to</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for alias.</p>
      </desc>
    </func>
    <func>
      <name>exception(Id, Name, ElementList) -> TC</name>
      <fsummary>Return the exception IDL typecode</fsummary>
      <type>
        <v>Id = string()</v>
        <d>the repository ID</d>
        <v>Name = string()</v>
        <d>the type name of the exception</d>
        <v>ElementList = [{MemberName, TC}]</v>
        <d>a list of the exception elements</d>
        <v>MemberName = string()</v>
        <d>the element name</d>
      </type>
      <desc>
        <p>Function returns the IDL typecode for exception.</p>
      </desc>
    </func>
    <func>
      <name>get_tc(Object) -> TC</name>
      <name>get_tc(Id) -> TC</name>
      <fsummary>Fetch typecode</fsummary>
      <type>
        <v>Object = record()</v>
        <d>an IDL specified struct, union or exception</d>
        <v>Id = string()</v>
        <d>the repository ID</d>
      </type>
      <desc>
        <p>If the get_tc/1 gets a record that is and IDL specified 
          struct, union or exception as a parameter it returns the 
          typecode.</p>
        <p>If the parameter is a repository ID it uses the Interface Repository
          to get the typecode.</p>
      </desc>
    </func>
    <func>
      <name>check_tc(TC) -> boolean()</name>
      <fsummary>Check syntax of an IDL typecode</fsummary>
      <desc>
        <p>Function checks the syntax of an IDL typecode.</p>
      </desc>
    </func>
  </funcs>
  
</erlref>