This chapter describes programming issues when writing the client code that calls the remote procedure calls, and providing server code for the remote operations. Sample client and server source files are given in Appendix A, "A Sample Application."
This section is written for a C language programmer developing the application client and server software.
The goal of TxRPC is to provide procedure calls transparently between a client in one address space and a server in another address space, potentially on different machines. However, because the client and server are not in the same address space, there are some things to remember:
Introduction
Prerequisite Knowledge
Handling Remoteness
In the X/OPEN RPC specification, non-application errors are returned via status parameters or a status return. A For example, an operation defined in an IDL file as:
with a definition in the corresponding ACF file as:
returns an error from the server via the operation return, and an error in communications via the second parameter. Its use in the client code could be as follows:
The advantage of using status returns is that the error can be handled immediately at the point of failure for fine-grained error recovery.
The disadvantage of using status returns is that the remote function has additional parameters that the local version of the function does not have. Additionally, fine-grained error recovery can be tedious and error prone (for example, some cases may be missing).
DCE defines a second mechanism called exception handling. It is similar to C++ exception handling.
The application delimits a block of C or C++ code in which an exception may be raised with the In addition to exceptions generated by the communications and server for an RPC call, exceptions are also generated for lower level exceptions, specifically operating system signals. These exceptions are documented on the There are a large number of run-time support functions (over 100) defined in the X/OPEN RPC specification. These functions need not all be supported in an X/OPEN TxRPC IDL-only environment. Most of these functions relate to binding and management which are done transparently for BEA TUXEDO clients and servers.
One area that affects application portability is the management of memory allocated for stub input and output parameters and return values. The Stub Memory Management routines are supported in TxRPC runtime with the exception of the two routines to handle threads. The status-returning functions are
Handling Status and Exception Returns
fault_status
value is returned if there is an RPC server failure and a comm_status
value is returned if there is a communications failure. Status returns are specified by defining an operation return value or an [out]
parameter of type error_status_t
in the IDL file, and declaring the same operation or parameter to have the [fault_status]
and/or [comm_status]
attribute in the ACF file.
error_status_t op([in,out]long *parm1, [out]error_status_t *commstat);
[fault_status]op([comm_status]commstat);
if (op(&parm1, &commstat) != 0 || commstat != 0) /* handle error */
TRY
, CATCH
, CATCH_ALL
, and ENDTRY
statements. TRY
indicates the beginning of the block. CATCH
is used to indicate an exception-handling block for a specific exception, and CATCH_ALL
is used to handle any exceptions for which there is not a CATCH
statement. ENDTRY
ends the block. TRY
blocks are nested such that if an exception cannot be handled at a lower level, the exception can be raised to a higher level block using the RERAISE
statement. If an exception is raised out of any exception handling block, the program writes a message to the log and exits. Details of the exception handling macros and an example are given in the TRY
(3c) reference page.
TRY
(3c) reference page.
The Stub Support Functions
rpc_sm_allocate
The equivalent exception-returning functions are
rpc_ss_allocate
See the manual pages for details of using these functions.
The runtime functions are contained in Here are a few tips regarding memory management.
libtrpc
; building RPC clients and servers is discussed in the next section.
malloc
and free
by default. All space will be freed on return from the client stub except space allocated for [out]
pointers (including implicit [out]
pointers in the return value of the operation). To make freeing of [out]
pointers easier, call rpc_ss_enable_allocate
(), and set alloc
/ free
to rpc_ss_alloc
()/ rpc_ss_free
() before calling the RPC by calling rpc_ss_set_client_alloc_free
(). Then rpc_ss_disable_allocate
() can be used to free all of the allocated memory. For example, to simplify freeing space returned from a client stub the following could be used.
rpc_ss_set_client_alloc_free(rpc_ss_allocate, rpc_ss_free);
ptr = remote_call_returns_pointer();
/* use returned pointer here */
...
rpc_ss_disable_allocate(); /* this frees ptr */rpc_ss_allocate
is always enabled in the server stub. The [enable_allocate]
attribute in the ACF file has no effect. All memory will be freed in the server before returning the response to the client. (In DCE, memory allocation is enabled only if [ptr]
fields or parameters exist, or the programmer explicitly specifies [enable_allocate]
.)
rpc_ss_set_client_alloc_free(rpc_ss_allocate, rpc_ss_free);
rpc_ss_allocate
() or rpc_sm_allocate
(), remember to cast the output to match the data type of the pointer being set. For example
To ensure that stubs from both DCE/RPC and TxRPC can be compiled in the same environment, different header file names are used in the TxRPC implementation. This should not affect the application programmer since these header files are automatically included in the interface header file generated by the IDL compiler. However, an application program may wish to view these headers to see how a type or function is defined. The new header file names are listed here.
RPC Header Files
dce/nbase.h
, dce/nbase.idl
- renamed rpc/tbase.h
and rpc/tbase.idl
. Contain the declarations for pre-declared types error_status_t
, ISO_LATIN_1
, ISO_MULTI_LINGUAL
, and ISO_UCS
.
dce/pthread_exc.h
- renamed rpc/texc.h
. Contains the TRY
/ CATCH
exception handling macros.
These header files are located in The output from the IDL compiler is generated in a way to allow it to be compiled in a large number of environments (see the next chapter for a discussion of compilation). However, there are some constructs that don't work in various environments. Here are a few known problems.
When compiling with Classic (non-ANSI) C, "pointers to arrays" are not allowed. For example:
This will make it difficult to pass "pointers to arrays" to operations as parameters in a portable fashion.
When using an array of strings where the string attribute is applied to a multi-byte structure, the results will not be as desired if the compiler pads the structure. This is not the normal case (most compilers do not pad a structure that contains only character fields), but at least one occurrence is known to exist.
Constant values are, by default, implemented by generating a There are several restrictions in the C++ environment:
$TUXDIR/include/rpc
. The TxRPC IDL compiler will look in $TUXDIR/include
by default as the "system IDL directory."
Portability of Code
typedef long array[10][10];
func()
{
array t1;
array *t2;
t2 = &t1; /* & ignored, invalid assignment */
func2(&t1); /* & ignored */
}#define
for each constant. This means that names used for constants should not be used for any other names in the IDL file or any imported IDL files. A TxRPC-specific option on the tidl
compiler, -use_const
, may be used to get around this problem in an ANSI C environment. This option will cause const
declarations instead of #define
definitions to be generated. The constant values will be declared in the client and server stubs, and any other source file including the header file will simply get extern const
declarations. Note that this has the restriction that the client and server stubs may not be compiled into the same executable file (or duplicate definition errors will occur).
typedef
and a structure or union tag, unless the typedef
name matches the struct
or union
name.
struct t1 {
long s1;
};
typedef struct t1 t1; /* ok */
typedef long t1; /* error */
struct t1 {
struct t2 {
long s2;
} s1;
} t1;
typedef struct t3 {
struct t2 s3; /* t2 undefined error */
} t3;
When coding the client and server application software, you should use the data types generated by the IDL compiler, as defined in rpc/tidlbase.h
(listed as Emitted Macro in the following table). For instance, if you use a long
instead of idl_long_int
, then the data type may be 32 bits on some platforms and 64 bits on others; idl_long_int
will be 32 bits on all platforms. Here is a table that lists the generated data types.
Note that an anonymous structure or union (without a tag and not defined as part of a typedef) cannot be used for an operation return or a parameter.
The TxRPC executables use the BEA TUXEDO system to do the RPC communications. Other BEA TUXEDO interfaces and communications mechanisms can be used within the same clients and servers that are using the RPC calls. Thus, it is possible to have a single client making Request/Response calls (for example As with clients, servers can use any of the communication paradigms in the role of client. However, a server cannot provide (advertise) both conversational services and RPC services within the same server; as described later, an RPC server must be marked as non-conversational. Although it is possible to mix ATMI request/response and RPC services within the same server, this is not recommended. One further restriction is that RPC operations cannot call Two functions available to servers but not to clients are The TX functions provide an interface for transaction demarcation. Interactions with ATMI
tpcall
, tpacall
, and tpgetrply
), making conversational calls (tpconnect
, tpsend
, tprecv
, and tpdiscon
), and accessing the stable queue (tpenqueue
and tpdequeue
). When a client makes the first call to the BEA TUXEDO software, either an RPC call, any of these other communications calls, or any other ATMI call (such as a call for buffer allocation or unsolicited notification), the client automatically joins the application. However, if the application is running with security turned on or if the client must run as part of a particular resource manager group, then tpinit
() must be called explicitly to join the application. See the tpinit
(3c) reference page for further details, and a list of options that can be explicitly set. When an application completes work using the BEA TUXEDO system, tpterm
() should be called explicitly to leave the application and free up any associated resources. If this is not done for native (non-Workstation) clients, the monitor detects this, prints a warning in the userlog
(), and frees up the resources. In the case of Workstation clients, the resources may not be freed up and eventually the Workstation Listener or Handler will run out of resources to accept new clients.
tpreturn
() or tpforward
(). Instead, RPC operations must return as they would if called locally. Any attempt to call tpreturn
() or tpforward
() from an RPC operation will be intercepted and an error will be returned to the client (exception rpc_x_fault_unspec
or status rpc_s_fault_unspec
).
tpsvrinit
() and tpsvrdone
(), which are called when the server starts up and when it is shut down. Since the server must call tx_open
before receiving any TxRPC operation requests, tpsvrinit
() is a good place to call it. The default tpsvrinit
() function already calls tx_open
().
Interactions with TX
tx_begin
() and tx_commit
() or tx_rollback
() encapsulate any work, including communications, within a transaction. Other primitives are provided to set transaction timeout, declare the transaction as chained or unchained, and retrieve transaction information. These are discussed in detail in the X/OPEN TX Specification, and reviewed in the X/OPEN TxRPC Specification. The X/OPEN TxRPC Specification indicates the interactions between TX and RPC. These are summarized as follows:
[transaction_optional]
attribute which indicates that if the RPC is called within a transaction, the work done in the called operation will be part of the transaction.