aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ic/doc/src/ch_c_client.xml
blob: e304c8acf46039e5b41f2b3eac8adfb4fecf75e2 (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
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE chapter SYSTEM "chapter.dtd">

<chapter>
  <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.
    
    </legalnotice>

    <title>The C Client Back-end</title>
    <prepared></prepared>
    <docno></docno>
    <date>2004-01-14</date>
    <rev>C</rev>
    <file>ch_c_client.xml</file>
  </header>

  <section>
    <title>Introduction</title>
    <p>With the option <c>{be, c_client}</c> the IDL Compiler generates
      C client stubs according to the IDL to C mapping, on top of the
      Erlang distribution and gen_server protocols.</p>
    <p>The developer has to write additional code, that together with
      the generated C client stubs, form a hidden Erlang node. That
      additional code uses <c>erl_interface</c> functions for defining
      the hidden node, and for establishing connections to other
      Erlang nodes.</p>
  </section>

  <section>
    <title>Generated Stub Files</title>
    <p>The generated stub files are:</p>
    <list type="bulleted">
      <item>
        <p>For each IDL interface, a C source file, the name of which
          is <c><![CDATA[<Scoped Interface Name>.c]]></c>. Each operation of the
          IDL interface is mapped to a C function (with scoped name)
          in that file;</p>
      </item>
      <item>
        <p>C source files that contain functions for type conversion,
          memory allocation, and data encoding/decoding;</p>
      </item>
      <item>
        <p>C header files that contain function prototypes and type
          definitions.</p>
      </item>
    </list>
    <p>All C functions are exported (i.e. not declared static).</p>
  </section>

  <section>
    <title>C Interface Functions</title>
    <p>For each IDL operation a C interface function is 
      generated, the prototype of which is:</p>
    <p><c><![CDATA[<Return Value> <Scoped Function Name>(<Interface Object> oe_obj, <Parameters>, CORBA_Environment *oe_env);]]></c></p>
    <p>where</p>
    <list type="bulleted">
      <item>
        <p><c><![CDATA[<Return Value>]]></c> is the value to be returned as defined
          by the IDL specification;</p>
      </item>
      <item>
        <p><c><![CDATA[<Interface Object> oe_obj]]></c> is the client interface
          object;</p>
      </item>
      <item>
        <p><c><![CDATA[<Parameters>]]></c> is a list of parameters of the
          operation, defined in the same order as defined by the IDL
          specification;</p>
      </item>
      <item>
        <p><c>CORBA_Environment *oe_env</c> is a pointer to the current
          client environment. It contains the current file descriptor,
          the current input and output buffers, etc. For details see
          <seealso marker="ch_c_corba_env#corbaenv">CORBA_Environment C Structure</seealso>.</p>
      </item>
    </list>
  </section>

  <section>
    <title>Generating, Compiling and Linking</title>
    <p>To generate the C client stubs type the following in an
      appropriate shell:</p>
    <p><c><![CDATA[erlc -I ICROOT/include "+{be, c_client}"  File.idl]]></c>,</p>
    <p>where <c>ICROOT</c> is the root of the IC application. The
      <c>-I ICROOT/include</c> is only needed if <c>File.idl</c>
      refers to <c>erlang.idl</c>.</p>
    <p>When compiling a generated C stub file, the directories
      <c>ICROOT/include</c> and <c>EICROOT/include</c>, have to be
      specified as include directories, where <c>EIROOT</c> is the
      root directory of the Erl_interface application.</p>
    <p>When linking object files the <c>EIROOT/lib</c> and
      <c>ICROOT/priv/lib</c> directories have to be specified. </p>
  </section>

  <section>
    <title>An Example</title>
    <p>In this example the IDL specification file "random.idl" is used
      for generating C client stubs (the file is contained in the IC
      <c>/examples/c-client</c> directory):</p>
    <code type="none"><![CDATA[
module rmod {
 
  interface random {
 
    double produce();
 
    oneway void init(in long seed1, in long seed2, in long seed3);
 
  };
 
};        ]]></code>
    <p>Generate the C client stubs:</p>

    <code type="none"><![CDATA[
erlc '+{be, c_client}' random.idl
Erlang IDL compiler version X.Y.Z        ]]></code>

    <p>Six files are generated. </p>
    <p>Compile the C client stubs:</p>
    <p>Please read the <c>ReadMe</c> file att the
      <c>examples/c-client</c> directory</p>
    <p>In the same
      directory you can find all the code for this example.</p>
    <p>In particular you will find the <c>client.c</c> file that contains
      all the additional code that must be written to obtain a complete
      client. </p>
    <p>In the <c>examples/c-client</c> directory you will also find
      source code for an Erlang server, which can be used for testing
      the C client.</p>
  </section>
</chapter>