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
|
%%--------------------------------------------------------------------
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 1997-2016. All Rights Reserved.
%%
%% 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.
%%
%% %CopyrightEnd%
%%
%%
%%----------------------------------------------------------------------
%% File : orber_ifr_orb.erl
%% Purpose : Code for Orb
%%----------------------------------------------------------------------
-module(orber_ifr_orb).
-export([create_struct_tc/3,
create_union_tc/4,
create_enum_tc/3,
create_alias_tc/3,
create_exception_tc/3,
create_interface_tc/2,
create_string_tc/1,
create_wstring_tc/1,
create_sequence_tc/2,
create_recursive_sequence_tc/2,
create_array_tc/2
]).
-include("orber_ifr.hrl").
-include_lib("orber/include/ifr_types.hrl").
-include_lib("orber/include/corba.hrl").
%%%======================================================================
%%% ORB
%%%----------------------------------------------------------------------
%%% Inherited interfaces
%% none %%
%%%----------------------------------------------------------------------
%%% Non-inherited interfaces
create_struct_tc(Id, Name, Members) ->
{tk_struct,Id,Name,lists:map(fun(#structmember{name=MemName,type=Type}) ->
{MemName,Type} end,
Members)}.
create_union_tc(Id, Name, Discriminator_type, Members) ->
{tk_union, Id, Name, Discriminator_type, -1, % *** is -1 correct???
lists:map(fun(#unionmember{name=MemName, label=Label, type=Type}) ->
{Label,MemName,Type} end,
Members)}.
create_enum_tc(Id, Name, Members) ->
{tk_enum, Id, Name, Members}.
create_alias_tc(Id, Name, Original_type) ->
{tk_alias, Id, Name, orber_ifr_utils:get_field(Original_type,type)}.
create_exception_tc(Id, Name, Members) ->
{tk_except,Id,Name,lists:map(fun(#structmember{name=MemName,type=Type}) ->
{MemName,Type} end,
Members)}.
create_interface_tc(Id, Name) ->
{tk_objref, Id, Name}.
create_string_tc(Bound) ->
{tk_string, Bound}.
create_wstring_tc(Bound) ->
{tk_wstring, Bound}.
create_sequence_tc(Bound, Element_type) ->
{tk_sequence,Element_type,Bound}.
-spec create_recursive_sequence_tc(_, _) -> no_return().
create_recursive_sequence_tc(Bound, Offset) ->
orber:dbg("[~p] ~p:create_recursive_sequence_tc(~p, ~p);~n"
"Create_recursive_sequence is not implemented.~n",
[?LINE, ?MODULE, Bound, Offset], ?DEBUG_LEVEL),
corba:raise(#'INTF_REPOS'{completion_status=?COMPLETED_NO}).
create_array_tc(Length, Element_type) ->
{tk_array, Element_type, Length}.
|