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

<cref>
  <header>
    <copyright>
      <year>2004</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>IC C Protocol Functions</title>
    <prepared></prepared>
    <docno></docno>
    <date>2004-04-06</date>
    <rev>A</rev>
  </header>
  <lib>ic_c_protocol</lib>
  <libsummary>IC C Protocol Functions</libsummary>
  <description>
    <p>This manual page lists some of the functions of the IC C runtime
      library that are used internally for the IC protocol.
      </p>
    <p>The listed functions are used internally by generated C client
      and server code. They are documented here for <em>the advanced user</em> that want to replace the default protocol (Erlang
      distribution + gen_server) by his own protocol, For each set of
      client or sever functions below with prefix <c>oe</c>, the user
      has to implement his own set of functions, the names of which
      are obtained by replacing the <c>oe</c> prefix by <c>Prefix</c>.
      The <c>Prefix</c> has to be set with the option
      <c>{user_protocol, Prefix}</c> at compile time.</p>
    <p>The following terminology is used (reflected in names of
      functions): a <em>notification</em> is a message send from
      client to server, without any reply back (i.e.  a
      <em>oneway</em> operation); a <em>request</em> is a message sent
      from client to server, and where a <em>reply</em> message is
      sent back from the server to the client.</p>
    <p>In order to understand how the functions work and what they do
      the user <em>must</em> study their implementation in the IC C
      library (source file is <c>ic.c</c>), and also consider how they
      are used in the C code of ordinary generated client stubs or
      server skeletons.</p>
    <p></p>
  </description>

  <section>
    <title>Client Protocol Functions</title>
    <p>The following functions are used internally by generated C
      client code.</p>
  </section>
  <funcs>
    <func>
      <name><ret>int</ret><nametext>oe_prepare_notification_encoding(CORBA_Environment *env)</nametext></name>
      <fsummary>Prepare client notification encoding.</fsummary>
      <desc>
        <p>The result of this function is the beginning of a binary of
          in external format of the tuple <c>{'$gen_cast', X}</c> where
          <c>X</c> is not yet filled in. </p>
        <p>In generated client code this function is the first to be called
          in the encoding function for each oneway operation.</p>
      </desc>
    </func>
    <func>
      <name><ret>int</ret><nametext>oe_send_notification(CORBA_Environment *env)</nametext></name>
      <name><ret>int</ret><nametext>oe_send_notification_tmo(CORBA_Environment *env,  unsigned int send_ms)</nametext></name>
      <fsummary>Send client notification.</fsummary>
      <desc>
        <p>Sends a client notification to a server according to the
          Erlang distribution + gen_server protocol.</p>
        <p>The <c>send_ms</c> parameter specified a timeout in milliseconds.</p>
      </desc>
    </func>
    <func>
      <name><ret>int</ret><nametext>oe_prepare_request_encoding(CORBA_Environment *env)</nametext></name>
      <fsummary>Prepare client request encoding.</fsummary>
      <desc>
        <p>The result of this function is the beginning of a binary in
          the external format of the tuple <c>{'$gen_call', {Pid, Ref}, X}</c> where <c>X</c> is not yet filled in.</p>
        <p>In generated client code this function is the first to be called
          in the encoding function for each twoway operation.</p>
      </desc>
    </func>
    <func>
      <name><ret>int</ret><nametext>oe_send_request_and_receive_reply(CORBA_Environment *env)</nametext></name>
      <name><ret>int</ret><nametext>oe_send_request_and_receive_reply_tmo(CORBA_Environment *env, unsigned int send_ms, unsigned int recv_ms)</nametext></name>
      <fsummary>Send client request and receive reply.</fsummary>
      <desc>
        <p>Sends a client request and receives the reply according to
          the Erlang distribution + gen_server protocol. This function
          calls the <c>oe_prepare_reply_decoding</c> function in order
          to obtain the gen_server reply.
          </p>
        <p><c>send_ms</c> and <c>recv_ms</c> specify timeouts for send
          and receive, respectively, in milliseconds.</p>
      </desc>
    </func>
    <func>
      <name><ret>int</ret><nametext>oe_prepare_reply_decoding(CORBA_Environment *env)</nametext></name>
      <fsummary>Prepare client decoding of reply.</fsummary>
      <desc>
        <p>Decodes the binary version of the tuple <c>{Ref, X}</c>,
          where <c>X</c> is to be decoded later by the specific client
          decoding function.</p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>Server Protocol Functions</title>
    <p>The following functions are used internally by generated C
      server code.</p>
  </section>
  <funcs>
    <func>
      <name><ret>int</ret><nametext>oe_prepare_request_decoding(CORBA_Environment *env)</nametext></name>
      <fsummary>Prepare server decoding of request.</fsummary>
      <desc>
        <p>Decodes the binary version of the tuple <c>{'$gen_cast', Op}</c> (<c>Op</c> an atom), or the tuple <c>{'$gen_cast', {Op, X}}</c>, where <c>Op</c> is the operation name, and
          where <c>X</c> is to be decoded later by the specific
          operation decoding function; or</p>
        <p>decodes the binary version of the tuple <c>{'$gen_call', {Pid, Ref}, Op}</c> (<c>Op</c> an atom), or the tuple
          <c>{'$gen_call', {Pid, Ref}, {Op, X}}</c>, where <c>Op></c>
          is the operation name, and <c>X</c> is to be decode later by
          the specific operation decoding function.</p>
      </desc>
    </func>
    <func>
      <name><ret>int</ret><nametext>oe_prepare_reply_encoding(CORBA_Environment *env)</nametext></name>
      <fsummary>Prepare server encoding of reply.</fsummary>
      <desc>
        <p>Encodes the beginning of the binary version of the tuple
          <c>{{Ref,X}</c>, where <c>X</c> is to be filled in by the
          specific server encoding function.</p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>SEE ALSO</title>
    <p>ic(3), ic_clib(3), <seealso marker="ch_ic_protocol">IC Protocol</seealso></p>
  </section>
  
</cref>