3 Shared Libraries

This chapter contains information on the ASAP libraries that are shared by the provisioning (upstream) interface and the downstream interface. This chapter consists of the following sections:

Common library interface

This section describes the structures (data types) and functions that are common to both client and server applications. These structures and functions reside in either libasc, or both libclient and libcontrol. If a function is declared in both libclient and libcontrol, its behavior will depend on the implementation specifics in each library.

For example, the API function, ASC_sleep(), is common to both clients and servers, but it works differently in each case. In clients, the function puts the entire process to sleep, but in servers, it only puts the invoking thread to sleep.

The following subsections provide explanations of the variables, prefixes, and concepts used in the functions and data types contained in this section.

Global variables

The following list contains the global variables used in the Common Library Interface.

  • ProgramName: The current application UNIX executable.

  • ApplName: The logical name of the current application. To obtain the real application name, in other words, the name that is known to the network through the Interfaces file, refer to ASAP.cfg.

  • ControlSrvName: The logical name of the Control Server monitoring this application.

  • ApplUserId: The user ID to log in to the database associated with the application.

  • ApplPassword: The password for the application.

Open client library API functions

Structures and functions that begin with the following prefixes are part of the Open Client Library:

  • CM_: Data types and functions common to both clients and servers.

  • CP_: Data types and functions related to the CLIENT_PROC structure.

  • CPP_: Data types and functions related to the maintenance of pools of CLIENT_PROC structures used in application servers. This prefix is not used in the common API.

Structures and functions included in the Open Client category are:

  • ASC_cpalloc()

  • ASC_cpcheck()

  • ASC_cpclose()

  • ASC_cpfree()

  • ASC_cpopen()

  • ASC_cprpcexec()

  • CLIENT_HANDLER

  • CM_RPC

  • CM_RPC_PARAM

Oracle Functions

Functions that begin with ASC_oci are part of the Oracle Library. Functions included in this category are:

  • ASC_lda_to_oci8

  • ASC_oci8_to_lda

  • ASC_ocican_cursor

  • ASC_ociclose

  • ASC_ociclose_cursor

  • ASC_ocicreate_cmd

  • ASC_ocicreate_list

  • ASC_ocidestroy_list

  • ASC_ocifetch

  • ASC_ociopen

  • ASC_ociopen_cursor

  • ASC_ociparse

  • ASC_ocistatus

I/O management

The structures and functions included in this category are:

  • ASC_accept

  • ASC_close

  • ASC_connect

  • ASC_disconnect

  • ASC_get_dest_server

  • ASC_getc

  • ASC_listen

  • ASC_open

  • ASC_putc

  • ASC_read

  • ASC_set_fd_blocking

  • ASC_set_fd_nonblocking

  • ASC_reset_file_status

  • ASC_write

Event notification and diagnostic functions

ASAP provides event notification diagnostic functions that applications can use. These functions are described in this chapter.

The system events that may be generated by the ASAP core are described in the “ASAP Core System Events and Alarms" section, which explains how to configure these events to generate system alarms where appropriate.

Structures and functions included in this category are:

  • ASC_diag()

  • ASC_diag_format

  • ASC_diag_on

  • ASC_event()

  • ASC_event_initialize

  • ASC_hex_dump()

  • ASC_hex_dump_to_file()

  • DIAG_LEVEL

Application configuration determination functions

ASAP includes a facility to configure the entire system and each application separately, by means of name\value parameter pairs in ASAP.cfg. Such parameters are termed configuration parameters within ASAP.

You can retrieve configuration parameter values using ASC_get_config_param().

Memory management functions

The memory management functions are available to both clients and servers within the ASAP environment. Such functions must be used by all clients and servers.

If the application's diagnostic level is KERNEL, these functions log any memory allocation and deallocation to the application's diagnostic log file. Such KERNEL level diagnostics should only be used in the ASAP API.

Structures and functions included in this category are:

  • ASC_alloc()

  • ASC_bmove()

  • ASC_bzero

  • ASC_free()

  • ASC_realloc()

Performance parameter management

Several performance parameter management functions can be used within ASAP.

Performance parameters are maintained in memory. For application servers, you can retrieve performance parameters from the server with the ASC_dump_param administrative RPC to the particular server.

You may also determine whether you require such performance parameters to be logged to the Control database. If so, set the appropriate configuration parameter for the ASAP Control server.

Self-balancing trees

The self-balancing tree functions are used to manage high-performance self-balancing trees.

Structures and functions included in this category are:

  • ASC_create_SBT()

  • ASC_delete_element_SBT()

  • ASC_delete_index_SBT()

  • ASC_destroy_SBT()

  • ASC_find_first_SBT()

  • ASC_find_free_SBT()

  • ASC_find_index_SBT()

  • ASC_find_init_SBT()

  • ASC_find_next_SBT()

  • ASC_insert_element_SBT()

  • ASC_walk_SBT()

Date conversion functions

Date conversion functions include the following structures and functions:

  • ASC_cur_dts()

  • ASC_cur_tm()

  • ASC_gettimeofday

  • ASC_sec_to_dBdts()

  • TODAY()

Miscellaneous functions

The following miscellaneous functions are common to both clients and servers:

  • ASC_rstrcmp()

  • ASC_sleep()

  • ASC_srv_sleep

  • get_name_value()

Self-balancing tree examples

This section lists the self-balancing tree examples.

Comparison function

This function defines the logical ordering of elements in the tree.

Syntax:

int (*compare_fnt)(void *, void *)

Arguments:

  • First: A void pointer to the first element.

  • Second: A void pointer to the second element.

Return values:

  • -1: The first element is less than the second element.

  • 0: The first element is equal to the second element.

  • 1: The first element is greater than the second element.

Example:

int compare(void *e1, void *e2)
{
int c1=*(int *)e1;
int c2=*(int *)e2;
return ((c1==c2)?0:((c1<c2)?-1:1))
}
Delete function

The self-balancing tree element can contain complex data structures. This function deletes an element from the tree and frees the memory used by that element.

Syntax:

int (*delete_fnt)(void *)

Arguments:

  • First: A void pointer to the element to be deleted.

Example:

int delete(void *e1)
{
ASC_free(e1)
}
Action function

This function defines an action that will occur at each element of the tree.

Syntax:

int (*action_fnt)(void **, void *, int, int)

Arguments:

  • First: A void pointer to the element to be processed.

  • Second: A void pointer to the data argument passed to the ASC_walk_SBT function.

  • Third: An integer defining the level that the element is on. The root element(s) are on level zero.

  • Fourth: An integer defining the order which the element was scanned. Possible values for the fourth argument are:

    • INORDER: Scans all elements in the node then proceeds to the next node.

    • PREORDER: Scans the element and then proceeds to the next node.

    • POSTORDER: Proceeds to the next node and scans the element on the way back.

Return values:

  • 0: If you need to continue to walk the rest of the tree.

  • 1: If you are finished with the walk.

Example:

int action(void **e1, void *data, int level, int order)
{
if(order==PREORDER)
{
printf("Found(%d) on level(%d) in order(%d) with data(%d)\n", 
**(int **)e1, level, order, *(int *)data);
}
return 0;
}
Condition function

Defines the search criteria for the find and delete functions.

Syntax:

int (*condition_fnt)(void *, void *)

Arguments:

  • First: A void pointer to the element to determine if it meets the search criteria.

  • Second: A void pointer to the data argument passed to the ASC_walk_SBT function.

Return values:

  • 0: The element does not meet the search criteria.

  • 1: The element meets the search criteria.

Example:

int condition(void *e1, void *data)
{
return(*(int *)e1==*(int *)data)
}

Inline functions

The following list identifies the macros in the Common Library Interface.

  • ASC_GET_CMD (CLIENT_PROC *cp): Returns a pointer to the command structure for the connection associated with the client process (for instance, CLIENT_PROC *cp).

  • ASC_GET_NAME_SBT(SBT *sbt): Name of SBT (given when created) – used for mutex creation names, etc.

  • ASC_GET_SERVER(CLIENT_PROC *cp): Returns the name of the server associated with the client process.

  • ASC_GET_USERDATA_SBT(SBT *sbt): Void pointer on SBT. This is used for USER data storage common to SBT.

  • ASC_IS_EMPTY_SBT(SBT *sbt): Possible values:

    • 1 – SBT is empty

    • 0 – SBT is not empty

  • ASC_IS_OPEN (CLIENT_PROC *cp): Boolean value. Indicates whether the connection is open to the server.

  • ASC_NUM_ELEMENTS_SBT(SBT *sbt): Number of elements in SBT.

  • TODAY(): The current day since 1970. This macro can be used to determine if the day has changed since last invocation. Used in diagnostic file logging, for instance.

  • CM_RPC_PARAM(pinfo): The number of CM_RPC_PARAM records in the table represented by pinfo.

Common library interface functions

This section describes the functions in the Common Interface Library. The functions in this section are listed in alphabetical order.

appl_initialize

This function is the entry point for both ASAP client and server applications. It is called by the relevant API and supplies application-specific logic to the application.

See also appl_cleanup() in client applications.

For more information, see "Multithreaded procedural server initialization."

Syntax:

CS_RETCODE appl_initialize(int argc, char *argv[])

Arguments:

  • argc: Number of arguments passed to ASAP on startup.

  • argv: Array of character pointers to the arguments themselves.

Return values:

  • CS_SUCCEED: Application initialization was successful.

  • CS_FAIL: Application initialization failed.

ASC_accept

This function invokes ASC_poll() to determine whether a socket is readable and invokes accept() to accept the next client connection request. The file I/O status of the client socket connection is set to be blocking/nonblocking.

The function returns the new socket stream ID associated with the client connection. It is the caller's responsibility to set I/O control options on the socket file descriptor associated with the client connection.

Syntax:

CS_INT ASC_accept (CS_SMALLINT sa_family, CS_INT listen_sockfd, CS_FLOAT accept_timeout)

Arguments:

  • sa_family: Specifies address family.

    Valid values are: UNIX_ADDR_FAMILY and INET_ADDR_FAMILY (IMPLINK_ADDR_FAMILY and XEROX_NS_ADDR_FAMILY are not supported.)

  • listen_sockfd: Specifies the listener socket file descriptor ID.

  • accept_timeout: Specifies the timeout value of the client connect request.

Return values:

  • clt_sockfd: Socket file descriptor ID for the newly accepted connection.

ASC_alloc

This function allocates the memory on the heap and null pads the allocated memory. If it is unable to do so, it issues a diagnostic message and terminates the server.

This function then initializes the allocated memory before returning a pointer to the appropriate memory segment.

See also ASC_free(), ASC_diag().

Syntax:

VOIDPTR ASC_alloc(CS_INT size)

Arguments:

  • size: The size, in bytes, of the memory segment to be allocated.

Return values:

  • ptr: Void pointer to the allocated initialized memory segment.

ASC_bmove

This function performs a binary data transfer from the source location to the target location in both clients and servers.

See also srv_bmove(), memcpy().

Syntax:

void ASC_bmove(CS_VOID *source, CS_VOID *target, CS_INT len)

Arguments:

  • source: Pointer to the source buffer location.

  • target: Pointer to the target location.

  • len: Length of the buffer in bytes.

ASC_bzero

This function offers a common interface to null pad memory areas to both servers and clients.

Syntax:

void ASC_bzero(CS_VOID *ptr, CS_INT len)

Arguments:

  • ptr: Pointer to the memory to be null padded.

  • len: Length to be padded.

ASC_close

This function allows threads to close a UNIX device.

Syntax:

CS_INT ASC_close(CS_INT dev_fd)

Arguments:

  • dev_fd: UNIX file descriptor being closed.

Return values:

  • 0: Device closed successfully.

  • -1: Device did not close successfully.

ASC_connect

This function provides server threads and application clients with the same functionality as the UNIX connect function.

Syntax:

CS_INT ASC_connect(CS_CHAR socket_client, CS_SMALLINT sa_family, CS_CHAR *host_name, CS_CHAR *host_ipaddr, CS_USHORT port)

Arguments:

  • socket_client: Specifies whether to connect as socket client or socket server. Valid values are SOCKET_CLIENT, SOCKET_SERVER.

  • sa_family: The address family. Valid values are UNIX_ADDR_FAMILY and INET_ADDR_FAMILY (IMPLINK_ADDR_FAMILY and XEROX_NS_ADDR_FAMILY are currently unsupported.)

  • host_name: The host name. If connecting to a UNIX domain socket, this argument specifies socket file path.

  • host_ipaddr: The host IP address.

  • port: The service port number.

Return values:

  • 0: Connection to host was successful.

  • -1: Connection failed.

ASC_convert_msg

This function applies to the correct variable substitution into a specified international message. The message strings are standard C/C++ format strings and are stored in the SARM's database table “tbl_msg_convert". Because the calling function may accept a variable number of arguments (ellipsis notation “..."), there are two methods of accepting data into this function. If the calling function accepts a variable number of arguments, then it must create a va_list and populate it correctly prior to calling this function. If the calling function does not accept a variable number of arguments, then it simply passes NULL to this function and makes use of the ellipsis provided in this function.

See also ASC_convert_msg_user, ASC_imsg_types(), ASC_imsg_types_user(), ASC_load_msg_tbl().

Syntax:

CS_BOOL ASC_convert_msg(CS_CHAR *mbuf, CS_INT bsize, long msg_id, va_list ap, ...)

Arguments:

  • mbuf: Message buffer (of at least size ASC_IMBUF_L) to populate.

  • bsize: Size of the buffer (ASC_IMBUF_L is recommended as the minimum size) (input) long.

  • msg_id ID of the message to post (input).

  • va_list_ap: Variable event parameters for the message (NULL or nothing is sufficient for the messages of type ASC_IMES_NOSUBST_T) (input).

Return values:

  • CS_TRUE: The function was successfully executed.

  • CS_FALSE: An error occurred.

Example:

void sample_with_va_list(CS_INT msg_id, ...)
{
/*
** The dot dot dot above will be processed and
passed as argument into ASC_convert_msg.
** As developers, we do not know how many 
arguments are passed.
*/
va_list ap;
CS_CHAR receive_buffer[MAX_BUFFER_SIZE];
va_start(ap,msg_id);
ASC_msg_convert(receive_buffer , MAX_BUFFER_SIZE ,
msg_id , ap);
va_end(ap);
ASC_diag(NULL , LOW_LEVEL , "sample with va list" ,
__LINE__ , __FILE__ , "returned buffer =
[%s]",receive_buffer);
return;
}
void sample_without_va_list(CS_INT msg_id, CS_INT param1, CS_CHAR *param2, CS_REAL param3, CS_CHAR param4)
{
/*
** The parameters above (param1, param2, param3,
param4) are fixed and must be defined.  They will
be passed
** directly into ASC_convert_msg
*/
CS_CHAR receive_buffer[MAX_BUFFER_SIZE];
ASC_msg_convert(receive_buffer , MAX_BUFFER_SIZE ,
msg_id , NULL, param1, param2, param3, param4);
ASC_diag(NULL , LOW_LEVEL , "sample without va
list" , __LINE__ , __FILE__ , "returned buffer =
[%s]",receive_buffer);
return;
ASC_convert_msg_user

This function is similar to ASC_convert_msg function, except that programmers can define their own message table.

See also ASC_convert_msg, ASC_imsg_types(), ASC_imsg_types_user(), ASC_load_msg_tbl().

Syntax:

CS_BOOL ASC_convert_msg_user(SRQ_MSG_TBL *user_msg_tbl, CS_INT user_msg_tbl_count, CS_CHAR *mbuf, CS_INT bsize, long msg_id, ...)

Arguments:

  • user_msg_tbl: List of messages contents to be expanded (input).

  • user_msg_tbl_count: Size of messages contents list (input).

  • mbuf: Message buffer (of at least size ASC_IMBUF_L) to populate (output).

  • bsize: Size of the buffer (ASC_IMBUF_L is recommended as the minimum size) (input) long.

  • msg_id: ID of the message to post (input).

Return values:

  • CS_TRUE: The function was successfully executed.

  • CS_FALSE: An error occurred.

ASC_cpalloc

This function allocates and initializes a CLIENT_PROC structure. This function does not open connections to the server.

The configuration parameter USE_GLOBAL_CONTEXT determines whether the global context is used or a separate context is allocated for each connection.

See also ASC_cpopen, ASC_cpfree.

Syntax:

CLIENT_PROC *ASC_cpalloc(CS_CHAR *srv_name, CS_CHAR *userid, CS_CHAR *password)

Arguments:

  • srv_name: Name of the server to be used in the connection.

  • userid: User ID to establish the connection to the server.

  • password: Password to establish the connection to the server.

    Return values:

    • NULL: The function failed and the client process structure could not be allocated.

    • CLIENT_PROC *: Pointer to the CLIENT_PROC structure that was allocated and initialized.

ASC_cpcheck

This function checks the network connection to verify that the server is available.

Syntax:

CS_RETCODE ASC_cpcheck(CLIENT_PROC *cp)

Arguments:

  • cp: Pointer to the client process structure that is managing the connection.

Return values:

  • CS_SUCCEED: Server connection is established and available for processing.

  • CS_FAIL: The server connection is not available.

ASC_cpclose

This function closes the connection associated with the client process.

See also ASC_cpopen, ASC_cpfree.

Syntax:

CS_RETCODE ASC_cpclose(CLIENT_PROC *cp)

Arguments:

  • cp: Pointer to the client process structure that is managing the connection.

Return values:

  • CS_SUCCEED: Connection to the server was successfully closed.

  • CS_FAIL: The function failed and the server connection was not closed.

ASC_cpfree

This function disconnects from the server and frees the client process structure (if applicable).

See also ASC_cpalloc, ASC_cpclose.

Syntax:

void ASC_cpfree(CLIENT_PROC *cp)

Arguments:

  • cp: Client process structure allocated with ASC_cpalloc.

ASC_cpopen

This function opens a connection to the server that is specified by the client process structure.

See also ASC_cpalloc, ASC_cpclose.

Syntax:

CS_RETCODE ASC_cpopen(CLIENT_PROC *cp)

Arguments:

  • cp: Pointer to the client process structure that is managing the connection.

Return values:

  • CS_SUCCEED: Connection to the server has been established.

  • CS_FAIL: The function failed and the server connection was not created.

When an open server is terminated for any reason, the connections to and from that server are marked as dead (triggers the connection to be closed upon the next use of the connection).

The data structure does not have to be freed and reallocated, because a call to ASC_CPOPEN re-establishes the connection that was marked as dead or closed. It is recommended that you explicitly close the connection with ASC_CPCLOSE before opening the connection again.

ASC_cprpcexec

This function executes an RPC or registered procedure on the server and processes the results. The results returned by the server are mapped and then the appropriate result handler is called to process the data. If no handler is specified, a default handler provided by the API is executed.

For an example of how to use ASC_cprpcexec, see appl_init.c in $ASAP_BASE/samples.

Note:

$ASAP_BASE refers to the ASAP base path that the current ASAP instance works on.

Syntax:

CS_RETCODE ASC_cprpcexec(CLIENT_PROC *cp, CS_VOID *data, CLIENT_HANDLER *hand_tbl, CM_RPC *rpcdef, ...)

Arguments:

  • cp: Pointer to the client process structure that manages the connection.

  • data: Generic data pointer that is passed to the handlers once the results are returned by the server.

  • hand_tbl: Result handler table for processing the return data.

  • rpcdef: RPC definition structure specifying the RPC to be executed and its associated parameters.

  • ...: Variable parameter list specifying the values for the RPC parameters identified by rpcdef. All parameters must be pointers.

Return values:

  • CS_SUCCEED: RPC execution was successful and the results were handled successfully.

  • CS_FAIL: The function failed due to an RPC execution error or one of the result handlers failed.

ASC_create_SBT

This function allocates and initializes a self-balancing tree.

Syntax:

SBT *ASC_create_SBT(char name, int unique, int (*compare_fnt)(void *, void *))

Arguments:

  • name: Name of the tree or mutex.

  • unique: Variable to determine whether or not all elements in the self-balancing tree should be unique.

  • Valid values are 1 (all elements unique) and 0 (duplicate elements permitted)

  • compare_fnt: Function that defines the logical ordering of the elements. Valid arguments are First (void pointer to the first element) and Second (void pointer to the second element).

Return values:

  • NULL: An error has occurred and the tree was not created.

  • pointer to SBT: The tree was successfully created.

  • -1: If the first is less than the second element.

  • 0: If the first is equal to the second element.

  • 1: If the first is greater than the second element.

ASC_cur_dts

This function formats the current date and time and inserts the appropriate fields in the CS_DATETIME structure passed to it.

Syntax:

void ASC_cur_dts(CS_DATETIME *dts)

Arguments:

  • dts: Pointer to the CS_DATETIME structure that will have its fields updated.

ASC_cur_tm

Return the current time in seconds and microseconds since 00:00 Universal Coordinated Time, Jan 1, 1970. It uses the UNIX function call gettimeofday() to get the current time.

Syntax:

CS_FLOAT ASC_cur_tm(void)

Return values:

  • Current time: Current time in seconds and milliseconds in floating point representation.

ASC_delete_element_SBT

This function finds and deletes an element in the tree. Deleting elements from this tree does not affect the balance of the tree.

See also ASC_delete_index_SBT().

Syntax:

int ASC_delete_element_SBT(SBT *root, void *datac, int (*condition_fnt)(void *, void *), void *datad, int (*delete_fnt)(void **, void *))

Arguments:

  • root: Pointer to the tree.

  • datac: A void pointer that is passed as the second argument to the condition function.

  • condition_fnt: A function defining the criteria to delete an element. The first element found (in any logical order) will be used. Only one element is deleted per function call.

    Arguments:

    • First: Void pointer to the element determines if it meets the search criteria

    • Second: Void pointer to the data argument passed to the ASC_walk_SBT function

    Return values:

    • 0: Element does not meet the search criteria

    • 1: Element meets the search criteria

  • datad: A void pointer that is passed as the second argument to the delete function.

  • delete_fnt: Delete function which deletes data allocated prior to the insert; for example, if the element is an entire data structure such as a linked list.

Return values:

  • 0: No element matched the criteria or the tree is empty.

  • 1: An element was deleted.

ASC_delete_index_SBT()

This function deletes an element from a self-balancing tree (SBT) using the logical ordering of the tree to quickly find the element to delete. The advantage of this delete function over ASC_delete_element_SBT is that it uses the logical ordering and comparison function of the tree to delete an element. This function is therefore more efficient than ASC_delete_element_SBT.

Deleting elements from the tree does not affect the balance of the tree.

Syntax

int ASC_delete_index_SBT(SBT *root, void *element, void *data, int (*delete_fnt)(void **, void *))

Arguments

  • root: Pointer to an SBT. This is the tree to delete the element from.

  • element: Search node that is used to find the correct element in the SBT to delete. You must populate all of the fields used by the comparison function when the elements are first inserted into the tree.

  • data: Pointer that is passed into the delete function. Pass NULL if it is not needed.

  • delete_fn: Function pointer used to delete the element from the tree. You must correctly free up all memory that was allocated for this element (such as a link list or another type of data structure.)

ASC_destroy_SBT

This function deallocates and frees memory used by a self-balancing tree. It is not necessary to delete the elements of the tree prior to destroying the tree.

Syntax:

void ASC_destroy_SBT(SBT **root, void *data, int (*delete_fnt)(void **, void *))

Arguments:

  • root: Pointer to the tree.

  • data: A void pointer that is passed as the second argument to the delete function.

  • delete_fnt: Function defining the delete algorithm for each element of the tree. This is useful when the element is an entire data structure such as a link-list or another self-balancing tree.

ASC_diag

This function lets you specify a printf() format diagnostic message to be appended to the application's diagnostic file. You may also specify the diagnostic level of the message to be appended to the diagnostic file. If the application's configured diagnostic level is less than or equal to that of the function call, the message will be appended to the diagnostic file. For example, a LOW_LEVEL message will not be written if the server is at SANITY_LEVEL.

See also ASC_event.

You can also call this function with different diagnostic levels throughout the code to denote varying degrees of message logging.

Whenever a PROGRAM_LEVEL or FATAL_LEVEL diagnostic message is logged, the libcontrol ASC_diag() function appends a copy of the message to the application's logfile as well.

The libclient ASC_diag() function writes no message to the client application logfile. The ASC_diag() function is designed for messages that do not exceed the maximum size of 1024 bytes. To display a longer message, use the ASC_diag_format function. This function allows you to customize the presentation of any message (for example, a dump of an incoming message).

The output of the diagnostic file is:

>> 141152:12 : LOW:Routing Table:127: router.c 
Internal Routing Table: Locked Mutex, Id [15] 

The fields in the diagnostic file are:

  • >>: Line identifier.

  • 141152: The time format in hours, minutes, and seconds (hhmmss).

  • 12: The SPID of the thread making the diagnostic function call.

  • LOW: The level of the diagnostic message.

  • Routing Table: The type character buffer specified in the diagnostic function. This generally indicates the current function being performed.

  • 127: The line number in the file at which the log entry was generated.

  • router.c: The file from which the log entry was made.

  • Internal...: The diagnostic message itself to a maximum diagnostic file size of 3MB. Once the diagnostic file size reaches this limit, the existing file is moved to file.old, and a new diagnostics file started. If this happens again, the original diagnostics file is overwritten. Use the configuration variable, MAX_DIAG_FILE, to specify the application's configuration file that overrides the default size.

For information on configuring diagnostics for Java-based components, see com.mslv.activation.server.Diagnostic in the ASAP Online Reference.

Syntax:

void ASC_diag(VOIDPTR ptr, DIAG_LEVEL level, 
const char *type,
int line, 
const char *file, 
const char *fmt, ...); 

Arguments:

  • ptr: VOIDPTR – only used by the debugger within the Interpreter.

  • level: The diagnostic level of this particular function call. The possible diagnostic levels are outlined in the enumerated data type DIAG_LEVEL description. See "DIAG_LEVEL abstract data type" for more information.

  • type: Character pointer identifying the type or functional origin of the function call. Only the first 15 characters of this function call appear in the diagnostic file.

  • line: The line number of the function in the source file, "__LINE__".

  • file: The file from which the function was called, "__FILE__".

  • fmt: Character pointer to a sprintf() format buffer containing the diagnostic message itself.

  • "...": Variable number of parameters following the spintf() format.

Example:

The following code segment is an example of how ASC_diag() can be used by the ASAP Client and/or Server Application for diagnostic purposes.

#include "client.h"
CS_INT SRP_get_wo_revs(ASAP_WO_ID wo_id, ...)
{ 
CS_INT num_rows = -1;
char *diag_buf = "SRP_get_wo_revs";
/* do some processing here */
...;
ASC_diag(NULL, LOW_LEVEL, diag_buf, __LINE__, __FILE__,
"WO: %s, Successfully Retrieved the WO Revisions", wo_id);
return num_rows;
}
ASC_diag_format

You can use this function to generate messages in the diagnostic file of the application. When the function is called, the diagnostic message heading is generated in the log. The specified function is called providing access to the FILE pointer for the diagnostic file. The called function can then generate any message in the diagnostic file.

See also ASC_event.

Syntax:

void ASC_diag_format(VOIDPTR ptr, 
DIAG_LEVEL level, 
const char *type,
int line, 
const char *file,
void ((*format_fn)(FILE *diag_outfile, VOIDPTR ptr)));

Arguments:

  • ptr: Pointer to a data segment that is passed into the format_fn as the second argument to allow ASC_diag format to pass information to the format_fn.

  • level: The diagnostic level of this particular function call. The possible diagnostic levels are outlined in the enumerated data type DIAG_LEVEL description.

  • type: Character pointer identifying the type or functional origin of the function call. Only the first 15 characters of this function call appear in the diagnostic file.

  • line: The line number of the function in the source file, "__LINE__".

  • file: The file from which the function was called, "__FILE__".

  • format_fn: Pointer to the function that is executed to generate a message in the diagnostic file. When the format_fn function is called, it cannot call any other diagnostic functions.

ASC_diag_on

This function is used to determine whether or not the application is currently generating diagnostic messages at the specified level.

Syntax:

CS_BOOL ASC_diag_on(DIAG_LEVEL level)

Arguments:

  • level: The diagnostic level to query for.

ASC_disconnect

This function closes the specified socket connection to the host.

Syntax:

CS_RETCODE ASC_disconnect(CS_INT sock_fd)

Arguments:

  • sock_fd: UNIX socket file descriptor.

ASC_dts_to_str

This function converts CS_DATETIME to string datetime format. This function is used primarily to convert datetime formats to strings for insertion into Oracle datetime fields.

Syntax:

ASC_dts_to_str(CS_CHAR * date_str, CS_DATETIME *dts)

Arguments:

  • date_str: Pointer to datetime string in the following format: YYYYMMDD 24HH:MM:SS. For example, 20030111 16:04:00. This is the format that the Oracle Server is configured to use and is defined in the set_session database function at login.

  • dts: Returned ASAP datetime.

ASC_event

This function converts the parameters into a system event request and saves the event in the Control database. Depending on the event type, a system alarm may be generated.

Message size is limited to 80 bytes.

A system alarm can only be generated as a result of a system event. Therefore, to generate alarms, the corresponding events must be generated. If SYS_TERM is the event type, the application terminates.

For information on configuring event generation for Java-based components, see com.mslv.activation.server.EventLog in the ASAP Online Reference.

Syntax:

void ASC_event(const char *event_type, 
short line, 
const char *file, 
const char *fmt, ...);

Arguments:

  • event_type: Specifies the system event to be generated. This code is used to determine the operation to perform from the configuration tables.

  • line: Line in source file where system event was generated ("__LINE__").

  • file: Source file where system event was generated ("__FILE__").

  • fmt: "printf" type format string specifying the cause of the system event.

  • "...": Variable number of parameters following the sprintf() format.

ASC_event_initialize

This function initializes system events to be stored in the database. Whether this function saves events to the tbl_event_log is determined by the configuration variable DB_EVENT_LOGGING in the ASAP.cfg file.

Possible values for this variable are:

  • 1 – Save events to tbl_event_log.

  • 0 – Does not save events to tbl_event_log.

If the events are not saved to the database, then alarms cannot be triggered to execute when these events are generated.

Syntax:

CS_RETCODE ASC_event_initialize (void)
ASC_find_first_SBT

This function finds the first element that meets the criteria specified in the ASC_find_init_SBT function. The element that is returned can be accessed directly to change the data. It is recommended that the key fields be left unchanged so that the logical ordering of the tree is not disrupted.

Syntax:

int ASC_find_first_SBT(SBT_FIND *head,
SBT_FIND **current,
void **element)

Arguments:

  • head: Pointer to results of the previous ASC_findinit_SBT function. No maintenance is required with this data structure.

  • current: Pointer that scans the found records. No maintenance is required with this data structure.

  • element: A void pointer that receives the first found element.

Return values:

  • 0: No elements were found.

  • 1: An element was found.

ASC_find_free_SBT

This function deallocates and frees the memory used by the find functions.

The current variable used in the ASC_find_first_SBT and ASC_find_next_SBT functions is not valid after this function is called and should therefore be set to NULL.

Syntax:

void ASC_find_free_SBT(SBT_FIND **head)

Arguments:

  • head: Pointer to the results of previous ASC_findinit_SBT function. No maintenance is required with this data structure.

ASC_find_index_SBT

This function returns an element that matches the search record using the logical ordering of the tree as an index. This function uses the same comparison function as ASC_insert_element_SBT to traverse the tree. To use this function, the programmer must ensure that the unique argument is set for the tree (as defined in ASC_create_index_SBT).

The reason for the uniqueness requirement is that only one record is returned (the first to meet the comparison criteria). A simple way to guarantee the uniqueness of the index field(s) is to set the unique flag when creating the tree and when inserting a record:

if ASC_insert_element_SBT!= NULL then
update record
endif

Syntax:

void *ASC_find_index_SBT(SBT *root,
void *data)

Arguments:

  • root: Pointer to the tree to walk.

  • data: A void pointer that contains the data structure that is stored in the tree with the indexed field(s) containing the data to find in the tree.

Return values:

  • 0: No element was found.

  • void *: Pointer to the indexed element that was found.

ASC_find_init_SBT

This function allocates and initializes the find function. This function performs the search on the tree via a tree walk algorithm. To take advantage of the logical ordering of the tree, use ASC_find_index_SBT. Observe the following programming technique:

if ASC_find_init_SBT = 1 then
while ASC_find_next_SBT = 1
process found record
ASC_find_free
else
no record was found
endif

Syntax:

int ASC_find_init_SBT(SBT *root,
SBT_FIND **head,
void *data,
int(*condition_fnt)(void*, void*))

Arguments:

  • root: Pointer to the tree to walk.

  • head: Pointer that receives the results of the search. The first time that this function is used this variable MUST be set to NULL. Before scanning the tree, ASC_find_init_SBT deletes the previous find results and then passes it to ASC_find_first_SBT and ASC_find_next_SBT.

  • data: Void pointer that is passed as the second argument to the condition function.

  • condition_fnt: Function that defines the search criteria for the elements.

Return values:

  • 0: No elements were found.

  • 1: An element was found.

ASC_find_next_SBT

This function finds the next element that meets the criteria specified in the ASC_find_init_SBT function. You do not need to call ASC_find_first_SBT prior to this function.

Syntax:

int ASC_find_next_SBT(SBT_FIND *head,
SBT_FIND **current,
void **element)

Arguments:

  • head: Pointer to results of previous ASC_findinit_SBT function. No maintenance is required with this data structure.

  • current: Pointer that scans the found records. No maintenance is required with this data structure.

  • element: Void pointer that receives the next found element.

Return values:

  • 0: No elements were found.

  • 1: An element was found.

ASC_free

This function deallocates the memory previously allocated using ASC_alloc(). If it is unable to do so, it issues a system event and terminates the server.

See also ASC_alloc(), ASC_diag().

Syntax:

void ASC_free(VOIDPTR ptr)

Arguments:

  • ptr: Void pointer to a memory segment previously allocated with ASC_alloc().

ASC_GET_CMD

This is a pointer to the command in the current context on the client process structure.

Syntax:

ASC_GET_CMD(cp)
ASC_get_config_param

This function references the ASAP.cfg configuration file and returns the value of the requested parameter.

If this type of entry is not present as either an application or global configuration parameter, then the default value is returned.

The configuration variables listed in the configuration file are read initially by the application and stored internally from then on. Any change to the configuration files requires the application to be restarted in order to use the new settings.

Syntax:

CS_RETCODE ASC_get_config_param(char *param, 
char *value, 
char *default_val)

Arguments:

  • param: The parameter name itself.

  • value: Character pointer to the value of the requested parameter. The returned parameter value is placed in this location.

  • default_val: Character pointer to the default value to be used for this parameter if the parameter is not listed in the configuration file.

Return values:

  • CS_SUCCEED: Parameter value found in the configuration file or the default value returned.

ASC_GET_CONTEXT

This is a pointer to the context on the client process structure.

Syntax:

ASC_GET_CONTEXT(cp)
ASC_GET_SERVER

This is a pointer to the server name on the client process structure.

Syntax:

ASC_GET_SERVER(cp)
ASC_getc

Gets characters in a non-blocking mode from a stream file. Read timeout is achieved in UNIX code by setting alarm() before calling the getc system call.

The alarm() call cannot be used to time out the call in the ASAP server because the Sleep Manager thread provided by the ASAP Server API uses alarm() to implement sleep management. ASC_getc() calls ASC_poll() to provide timeout. For uniformity, the same approach is followed in the Client API.

See also ASC_poll(), ASC_putc(), UNIX getc(), putc().

The function declaration is the same as for the UNIX getc except for the additional parameter that specifies the timeout in seconds.

This function assumes that the file descriptor has not been set to nonblocking mode.

This function invokes ASC_poll() to check if port is readable. It is not intended to be used to read from disk files.

Syntax:

CS_INT ASC_getc(FILE *stream,
CS_FLOAT timeout)

Arguments:

  • stream: Open file descriptor to read from.

  • timeout: Timeout in seconds.

Return values:

  • c: The character read/written to the stream file.

  • -1: A UNIX error occurred on getc/putc.

  • -2: ASC_read/ASC_write timed out.

  • -3: Port hangup detected.

  • -4: EOF returned by getc/putc due to a UNIX error and no port hangup.

ASC_gettimeofday

This function gives the API a consistent method of calling the gettimeofday() UNIX function.

Syntax:

ASC_gettimeofday(tp, tzp)
ASC_hex_dump

By specifying a buffer, length, and diagnostic level similar to ASC_diag(), this function provides a method of generating a hexadecimal dump of the selected buffer in the applications diagnostic logfile.

See also ASC_diag().

Syntax:

void ASC_hex_dump(DIAG_LEVEL level, 
const char *type, 
int line, 
const char *file, 
CS_BYTE *buf, 
int buf_len);

Arguments:

  • level: The diagnostic level of the function call. See ASC_diag() for more information.

  • type: Brief description of the circumstances of the function call to identify such entries in the applications logfile.

  • line: The line in the source file at which the function was called.

  • file: The source file from which this function was called.

  • buf: The character buffer for which the hexadecimal dump is to be generated.

  • buf_len: The length of the buffer.

ASC_hex_dump_to_file

This function writes the specified binary buffer to a file in hexadecimal format.

Syntax:

void ASC_hex_dump_to_file(FILE *fptr,
CS_BINARY *buf,
int len)

Arguments:

  • fptr: File pointer to open destination file for the hex dump.

  • buf: Buffer containing the data to be dumped.

  • len: Length of the buffer in bytes.

ASC_imsg_types

This function determines the formatting mode and destination types of the specified international message.

See also ASC_load_msg_tbl(), ASC_convert_msg().

Syntax:

CS_BOOL ASC_imsg_types(long msg_id, 
CS_CHAR *frm_type,
CS_CHAR *dest_type)

Arguments:

  • long msg_id: ID of the message to post (input).

  • frm_type: Formatting type (one character long) of the message (may be NULL) (output).

    Substitution type can be one of the following: ASC_IMES_NOSUBST_T, ASC_IMES_SUBST_T, CS_CHAR

  • Dest_type: Destination type (one character long) of the message (may be NULL) (output).

    The destination type can be one of the following: ASAP_LOG_SRQ, ASAP_LOG_WOA, ASAP_LOG_SRQWOA, ASAP_LOG_NO

Return values:

  • CS_TRUE: On success.

  • CS_FALSE: On failure.

ASC_imsg_types_user

This function determines the formatting mode and destination types of the specified international message from a user-defined message table.

See also ASC_load_msg_tbl(), ASC_convert_msg().

Syntax:

CS_BOOL ASC_imsg_types_user(SRQ_MSG_TBL *user_msg_tbl,
CS_INT user_msg_tbl_count,
long msg_id,
CS_CHAR *frm_type,
CS_CHAR *dest_type)

Arguments:

  • user_msg_tbl; List of messages contents to be expanded (input).

  • user_msg_tbl_count: Size of messages contents list (input).

  • long msg_id: ID of the message to post (input).

  • frm_type: Formatting type (one character long) of the message (may be NULL) (output).

    Substitution type can be one of the following: ASC_IMES_NOSUBST_T, ASC_IMES_SUBST_T, CS_CHAR

  • Dest_type: Destination type (one character long) of the message (may be NULL) (output).

    The destination type can be one of the following: ASAP_LOG_SRQ, ASAP_LOG_WOA, ASAP_LOG_SRQWOA, ASAP_LOG_NO.

Return values:

  • CS_TRUE: The function was successfully executed.

  • CS_FALSE: An error occurred.

ASC_insert_element_SBT

This function inserts an element into the tree. Inserting elements into the tree does not affect the balance of the tree. Therefore, a resort to randomness algorithm is not required on the key fields to improve on the balancing of the tree, as is the case with a binary search tree.

Syntax:

void *ASC_insert_element_SBT(SBT *root,
void *element)

Arguments:

  • root: Pointer to the tree to insert into.

  • element: A void pointer to the element to be inserted. It is the caller's responsibility to maintain the memory for the element since only a pointer is stored in the tree.

Return values:

  • NULL: The node is inserted into the tree.

  • not NULL: Pointer to an existing node that matches the key fields of the node to be inserted. No new node was inserted.

ASC_IS_OPEN

This is a boolean flag to determine whether the current connection is open on the client process structure.

Syntax:

ASC_IS_OPEN(cp)
ASC_lda_to_oci8

This function switches the Oracle connection between oci8 and oci7.

After obtaining a CLIENT_PROC, using ASC_cppalloc() for example, the ASC_oci8_to_lda bridge API must be called to switch the OCI8 context to OCI7 LDA. Once this is done, the OCI7 wrapping functions (such as ASC_ociopen_cursor(), ASC_ociparse(), ASC_ocirpcexec() and so on) can be used.

Similarly, before freeing a CLIENT_PROC using, for example, ASC_cppfree(cp), the ASC_lda_to_oci8 API must be called to switch OCI7 LDA back to OCI8 context.

If using a high level API like ASC_cprpcexec(), this switching mechanism is not required.

Several high level wrapping functions support one connection-to-cursor array relationships. As a result, ASC_ociopen() does not open a cursor. The function to open a cursor has been moved to ASC_oci8_to_lda(). Without this bridge, the OCI parse call will fail.

Syntax:

CS_RETCODE ASC_oci8_to_lda( CLIENT_PROC *cp)

Arguments:

  • cp: Connection to the SARM database.

Return values:

  • CS_SUCCEED: Successfully switched an Oracle connection.

  • CS_FAIL: Failed to switch an Oracle connection.

ASC_listen

This function listens for connection requests on the specified port by invoking the appropriate local function based on the socket address family you specify.

The caller can then invoke ASC_accept() to accept the next incoming client connection request.

Setting socket options is not currently supported by ASC_connect().

Syntax:

CS_INT ASC_listen (CS_SMALLINT sa_family,
CS_CHAR *host_name,
CS_CHAR *host_ipaddr,
CS_USHORT port,
CS_INT backlog)

Arguments:

  • sa_family: Specifies the address family. Valid values are: UNIX_ADDR_FAMILY, INET_ADDR_FAMILY. (IMPLINK_ADDR_FAMILY, and XEROX_NS_ADDR_FAMILY are not supported)

  • host_name: The host name. If it is a UNIX domain socket, it specifies the socket file path.

  • host_ipaddr: The host IP address.

  • port: The service port number.

  • backlog: The maximum allowable length of the queue for pending connections. If a connection request arrives when the queue is full, the client receives an error.

    Backlog is currently limited by the system (silently) to be in the range of 1 to 20. If any other value is specified, the system automatically assigns the closest value within range.

Return values:

  • Listener Socket FID: The socket file descriptor ID that listens for incoming client requests is returned if the call succeeds.

  • -1: If the call fails.

ASC_load_msg_tbl

This function loads international messages and audit destinations from the SARM database into memory. It executes the function SSP_load_msg_tbl using the requested language code.

Syntax:

CS_BOOL ASC_load_msg_tbl(CLIENT_PROC *cp,
CS_CHAR *lang)

Arguments:

  • cp: Connection to the SARM database.

  • lang: Language code of messages to be loaded. If NULL, it uses the value of the configuration parameter LANGUAGE_OF_MSG. If the configuration parameter is not defined, it defaults to “USA".

Return values:

  • CS_TRUE: The function was successfully executed.

  • CS_FALSE: An error occurred.

ASC_oci8_to_lda

This function switches the Oracle connection between oci7 and oci8.

Syntax:

CS_RETCODE ASC_oci8_to_lda( CLIENT_PROC *cp)

Arguments:

  • cp: Connection to the SARM database.

Return values:

  • CS_SUCCEED: Successfully switched an Oracle connection.

  • CS_FAIL: Failed to switch an Oracle connection.

ASC_ocican_cursor

This function cancels a query on a cursor after the desired rows have been fetched.

This function is used to free up resources after you have completed processing the required number of rows and there are rows still pending in the result set.

Syntax:

CS_RETCODE ASC_ocican_cursor( Cda_Def  *cda)

Arguments:

  • cda: Pointer to a cursor data area structure.

Return values:

  • CS_SUCCEED: The function was successfully executed.

  • CS_FAIL: The function failed.

ASC_ociclose

This function closes a connection between an Open Server or Open Client and an Oracle database (using oci8 calls).

Syntax:

CS_RETCODE ASC_ociclose(CLIENT_PROC *cp)

Arguments:

  • cp: Pointer to the CLIENT_PROC structure to be closed.

Return values:

  • CS_SUCCEED: Successfully closed an Oracle connection.

  • CS_FAIL: Failed to close an Oracle connection.

ASC_ociclose_cursor

This function closes a cursor. It disconnects a cursor from the data areas in the Oracle Server with which it is associated.

Syntax:

CS_RETCODE ASC_ociclose_cursor(Cda_def *cda)

Arguments:

  • cda: Pointer to cursor data area structure.

Return values:

  • CS_SUCCEED: The function closed the cursor.

  • CS_FAIL: The function failed to close the cursor.

ASC_ocicreate_cmd

This function builds a PL/SQL block from the passed CM_RPC structure. The resulting command is passed to ASC_ociparse to be associated with an open cursor.

Syntax:

CS_RETCODE ASC_ocicreate_cmd(CS_CHAR *command, CM_RPC *rpcdef)

Arguments:

  • command: PL/SQL command buffer.

  • rpcdef: CM_RPC structure containing RPC name and associated parameters.

Return values:

  • CS_SUCCEED: The function successfully built PL/SQL block.

  • CS_FAIL: The function to build the PL/SQL block.

To receive a return status from an RPC to the Oracle server, functions are used on the server side instead of procedures. Therefore, all command strings receive a return value.

ASC_ocicreate_list

This function defines an output variable for each column of the result set. This function uses the odescr function to determine the column name, data type, and data size for every column in the cursor variable. After the column information is determined, it is used to populate the call to odefin. The odefin function is required to define the storage array for each column in the result set.

Syntax:

CS_INT ASC_ocicreate_list(CLIENT_PROC *cp, Cda_Def *cda, ORA_COLUMN *colsptr, CS_INT numrows)

Arguments:

  • cp: Points to a CLIENT_PROC structure.

  • cda: Points to a CDA structure.

  • colsptr: Points to an Oracle column structure that is defined while processing the resultant data.

  • numrows: The number of rows to allocate in the ORA_COLUMN structure. This parameter governs how many rows are returned with each fetch of the result set.

Return values:

  • CS_INT: The number of columns described in the result set.

ASC_ocidestroy_list

This function deallocates all memory allocated during the ASC_ocicreate_list function. ASC_ocidestroy_list must accompany each use of ASC_ocicreate_list after processing is complete. If not, these resources will not be available.

Syntax:

CS_RETCODE ASC_ocidestroy_list(ORA_COLUMN *cols)

Arguments:

  • cols: Points to an Oracle column structure that was defined while processing the resultant data.

Return Value:

  • CS_SUCCEED: The function was successful.

  • CS_FAIL: The function failed.

ASC_ocifetch

This function attempts to fetch as many rows as were defined by the numrows argument of the function ASC_ocicreate_list.

Syntax:

CS_RETCODE ASC_ocifetch(CLIENT_PROC *cp, Cda_Def *cda, ORA_COLUMN * cols)

Arguments:

  • cp: Points to a CLIENT_PROC structure.

  • cda: Points to a CDA structure.

  • cols: Points to an Oracle column structure that was defined while processing the resultant data.

Return values:

  • CS_SUCCEED: Row returned successfully.

  • CS_FAIL: No more rows to process.

ASC_ociopen

Opens a single Oracle connection using oci8 calls.

ASC_ociopen() does not open a cursor. The function to open a cursor has been moved to ASC_oci8_to_lda(). Custom code must explicitly call ASC_oci8_to_lda() before parsing. Without this bridge, the OCI parse call will fail.

Syntax:

CS_RETCODE ASC_ociopen(CLIENT_PROC *cp)

Arguments:

  • cp: Pointer to the CLIENT_PROC structure to be opened

Return values:

  • CS_SUCCEED: Successfully opened an Oracle connection.

  • CS_FAIL: Failed to open an Oracle connection.

ASC_ociopen_cursor

This function opens a cursor. It associates a cursor data area in the application with a data area in the Oracle server. Cursor data areas are used by Oracle to maintain state information about the processing of a SQL statement.

Syntax:

CS_RETCODE ASC_ociopen_cursor( CLIENT_PROC *cp)

Arguments:

  • cp: Pointer to a CLIENT_PROC structure.

Return values:

  • CS_SUCCEED: The function opened the cursor.

  • CS_FAIL: The function failed to open the cursor.

ASC_ociparse

This function parses a SQL statement or SQL block and associates it with the cursor data area found in CLIENT_PROC member cda. Note that for performance reasons, all parsing is performed in deferred mode. This means that any errors in the command are not detected until the command is executed.

Syntax:

CS_RETCODE ASC_ociparse(CLIENT_PROC *cp, CS_CHAR *command)

Arguments:

  • cp: Pointer to a CLIENT_PROC structure.

  • command: PL/SQL command.

Return values:

  • CS_SUCCEED: The function successfully parsed the PL/SQL block.

  • CS_FAIL: The function failed to parse the PL/SQL block.

ASC_ocistatus

This function checks the value of the passed CDA to provide error management and diagnostics. In addition, this function is responsible for determining whether the initial OCI call is blocked (due to network, server response etc.) and initiating the synchronous appearance behavior by establishing a poll() on the connection file descriptor found in the CLIENT_PROC member, connection_fd.

Syntax:

CS_VOID ASC_ocistatus(CLIENT_PROC *cp, Cda_Def *cda);

Arguments:

  • cp: Pointer to a CLIENT_PROC structure.

  • cda: Points to a CDA structure.

Return values:

  • CS_SUCCEED: The function was successful.

  • CS_FAIL: The function failed.

ASC_open

This function allows threads to open UNIX devices without blocking the application server. It is the thread-level version of the UNIX open system call.

This function is intended to be used to open devices that might potentially block and uses ASC_poll() to check if the port is writable. It is not intended to be used to open disk files.

Syntax:

CS_INT ASC_open(CS_CHAR *path_name,
CS_INT flags,
CS_FLOAT open_timeout)

Arguments:

  • path_name: Pathname to the UNIX device being accessed.

  • flags: Flags controlling the mode that the device is opened with. The flags used here are analogous to those used in the UNIX “open()" system call.

  • open_timeout: Timeout value, in seconds, to wait for the open call to be successful.

Return values:

  • >=0: Operation was successful and the UNIX file descriptor is returned.

  • -1: Operation failed.

ASC_putc

Puts characters in a non-blocking mode to a stream file. Read timeout is achieved in UNIX code by setting alarm() before calling the putc system call.

The alarm() call cannot be used to timeout the call in ASAP server since the Sleep Manager thread provided by ASAP Server API uses alarm() to implement sleep management. ASC_putc() calls ASC_poll() to provide timeout. For uniformity, the same approach is followed in the Client API.

See also ASC_poll(), UNIX getc(), putc().

The function declaration is the same as for the UNIX putc except for the additional parameter that specifies timeout in seconds.

Until all bytes are written or ASC_poll times out, ASC_putc loops the ASC_poll() to check if the port is readable/writable or timed out, and then calls read/write.

This function assumes that the file descriptor has not been set to nonblocking mode.

This function invokes ASC_poll() to check if the port is writable. It is not intended to be used to write to disk files.

Syntax:

CS_INT ASC_putc(CS_INT c,
FILE *stream,
CS_FLOAT timeout)

Arguments:

  • stream: Open file descriptor to write to.

  • timeout: Timeout in seconds.

Return values:

  • c: The character read/wrote to the stream file.

  • -1: A UNIX error occurred on getc/putc.

  • -2: ASC_read/ASC_write timed out.

  • -3: Port hangup detected.

  • -4: EOF returned by getc/putc due to a UNIX error and no port hangup.

ASC_read

This function provides timeout using nonblocking read. Read timeout is achieved in UNIX code by setting alarm() before calling a read system call. The alarm() call to timeout the read call cannot be used since the Sleep Manager thread provided by ASAP Server API uses alarm() to implement sleep management. Instead, ASC_read() calls ASC_poll() to provide timeout.

This function assumes that the file descriptor has not been set to nonblocking mode.

This function declaration is the same as for the UNIX read except for the additional parameter that specifies timeout in seconds.

Until all bytes are read or ASC_poll times out, ASC_read loops the ASC_poll() to check if the port is readable or timed out, and then calls ASC_read.

This function is intended to be used to read devices that might potentially block and uses ASC_poll() to check if port is readable. It is not intended to be used to read from disk files.

Syntax:

CS_INT ASC_read(CS_INT fd,
void *buf,
CS_INT size
CS_INT *bytes_read,
CS_FLOAT timeout)

Arguments:

  • fd: Open file descriptor to read from or write to.

  • buf: Data buffer to read to or write from.

  • size: Size of buffer.

  • bytes_read: Actual bytes read.

  • timeout: Number of seconds for read timeout. (Within Open Server, you can obtain granularity less than seconds). Valid values are: -1, 0, >0. If the timeout_seconds parameter value is -1, ASC_write blocks until the port is readable. This feature should not be used within the Open Server application since all files are supposed to be opened and set for nonblocking I/O. If timeout is set to 0, ASC_read returns immediately and mimics UNIX read().

Return values:

  • 0: Success.

  • -1: A UNIX error occurred.

  • -2: ASC_read timed out.

  • -3: Port hangup detected.

  • -4: EOF detected.

  • -5: Network Operational Error.

ASC_realloc

This function initializes newly allocated memory, copies the contents of the previously allocated memory, and frees previously allocated memory before returning a pointer to the reallocated memory segment.

See also ASC_free(), ASC_diag().

If this function is unable to reallocate previously allocated memory on the heap, this function issues a system event and terminates the process. If the size of the reallocated memory segment is specified as zero, the previously allocated memory is available and a null pointer returned.

The content of the previously allocated memory is preserved if the size of the reallocated memory segment is greater than the current size. If not, it is truncated.

Syntax:

VOIDPTR ASC_realloc(VOIDPTR ptr,
CS_INT size,
CS_INT cur_size)

Arguments:

  • ptr: Pointer to previously allocated and used memory.

  • size: The size, in bytes, of the reallocated memory segment.

  • cur_size: The size, in bytes, of the currently allocated memory segment.

Return values:

  • new_ptr: Void pointer to the re-allocated (possibly moved) memory segment.

  • NULL: If requested memory size is zero bytes.

ASC_reset_file_status

This function resets the file status to the previous file status flag value.

For more information on fcntl(), refer to UNIX documentation.

Syntax:

CS_RETCODE ASC_reset_file_status(CS_INT fd,
CS_INT oflags)

Arguments:

  • fd: File descriptor value.

  • oflags: Saved file status flag value.

Return values:

  • CS_SUCCEED: Operation successful.

  • CS_FAIL: Operation on the file descriptor failed.

ASC_rstrcmp

This function performs a reverse string comparison. It is used in B Tree search functions to compare nodes in a more random manner to generate a more balanced B tree structure.

Syntax:

int ASC_rstrcmp(const char *buf1,
const char *buf2)

Arguments:

  • buf1, buf2: Character pointers to the strings to be compared.

Return values:

  • >0: First string is lexicographically greater than the second when compared in reverse.

  • <0: Second string is lexicographically greater than the first when compared in reverse.

  • 0: First string is lexicographically equal to the second.

ASC_sec_to_dBdts

This function converts the UNIX time in seconds to a database format record.

Syntax:

void ASC_sec_to_dBdts(time_t sec,
CS_DATETIME *dts)

Arguments:

  • sec: UNIX time in seconds.

  • dts: Pointer to datetime variable to return the converted time value in.

ASC_set_fd_blocking

This function sets files to blocking mode, saving the current file status flag value. Blocking mode I/O must not be performed from within an Open Server, since it will block the whole server.

For more information on fcntl(), refer to UNIX documentation.

Syntax:

CS_RETCODE ASC_set_fd_blocking(CS_INT fd,
CS_INT *flags)

Arguments:

  • fd: File descriptor value.

  • flags: Integer pointer. Saves current file status flag value.

Return values:

  • CS_SUCCEED: Operation successful.

  • CS_FAIL:Operation on the file descriptor failed.

ASC_set_fd_nonblocking

This function sets files to nonblocking mode, saving the current file status flag value.

For more information on fcntl(), refer to UNIX documentation.

Syntax:

CS_RETCODE ASC_set_fd_nonblocking(CS_INT fd,
CS_INT *flags)

Arguments:

  • fd: File descriptor value.

  • flags: Integer pointer to save current file status flag value.

Return values:

  • CS_SUCCEED: Operation successful.

  • CS_FAIL: Operation on the file descriptor failed

ASC_set_new_handler

This function sets the _new_handler global variable to point to the new_exeption_hdl() callback function. The previous _new_handler value is not required, and is neither returned nor saved in a static variable.

Both Control API and Client API main() invoke this function when the ASAP server/client application is initialized. This eliminates the new exception handling that is specific to a platform or complier.

Syntax:

void ASC_set_new_handler(CS_BOOL diag_initialized)

Arguments:

  • diag_initialized: Boolean variable. Specifies whether ASAP diagnostics and event management variables have been initialized or not. Uses either system calls or ASAP API calls to log messages and terminate the application.

ASC_sleep

This function provides a thread with a sleep function similar to the UNIX sleep() function.

See also ASC_wakeup().

If the application is an application server, this function puts the calling thread to sleep for the specified time interval. If the application is an application client, this function puts the entire client process to sleep for the specified time interval.

Syntax:

void ASC_sleep(time_t seconds)

Arguments:

  • seconds: The sleep period, in seconds, before the application is woken up.

ASC_str_to_dts

This function converts the string date time format to ASAP datetime. This function is used primarily to convert datetime strings from Oracle database results to ASAP datetime format.

Syntax:

ASC_str_to_dts(CS_CHAR * date_str, CS_DATETIME *dts)

Arguments:

  • date_str: Pointer to datetime string in the following format: YYYYMMDD 24HH:MM:SS. For example, 19980111 10:04:00. This is the format which is returned from the Oracle Server as defined in the set_session database function at login.

  • dts: Returned ASAP datetime.

ASC_walk_SBT

This function walks the tree and performs an action at each node.

For more information, refer to the Action Function example on "Action function."

Syntax:

void ASC_walk_SBT(SBT *root,
void *data,
int(*action_fnt)(void **, void *, int, int))

Arguments:

  • root: Pointer to the tree to walk.

  • data: A void pointer that is passed as the second argument into the action function.

  • action_fnt: Function that defines the action performed by the elements. Note that a pointer to a pointer is passed and, therefore, the data can change. Do not edit the key fields as the logical ordering is disrupted.

  • First: A void pointer to the element to be processed.

  • Second: A void pointer to the data argument passed to the ASC_walk_SBT function.

  • Third: An integer defining the level that the element is on. The root element(s) are on level zero.

  • Fourth: An integer defining the order in which the element was scanned. Possible values are:

    • INORDER – Scans all elements in node before proceeding to the next.

    • PREORDER – Scans the elements and then proceeds to the next node.

    • POSTORDER – Proceeds to the next node and scans the element on the way back.

Return values:

  • 0: You need to continue to walk the rest of the tree.

  • 1: You are finished with the walk.

ASC_write

This function provides a timeout using a nonblocking write. Write Timeout is achieved in UNIX code by setting alarm() before calling a write system call.

This function assumes that the file descriptor has not been set to nonblocking mode.

The alarm() call to time out the write call cannot be used since the Sleep Manager thread provided by ASAP Server API uses alarm() to implement sleep management. Instead, ASC_write() calls ASC_poll() to provide timeout.

This function declaration is the same as the UNIX write function, except for the additional parameter that specifies the timeout in seconds.

Until all bytes are written or ASC_poll times out, ASC_write loops the ASC_poll() call to check if the port is readable/writable or timed out, and then calls write.

This function invokes ASC_poll() to check if port is readable. It is not intended to be used to read from disk files.

Syntax:

CS_INT ASC_write(CS_INT fd,
const void *buf,
CS_INT size,
CS_INT *bytes_written,
CS_FLOAT timeout)

Arguments:

  • fd: Open file descriptor to read from or write to.

  • buf: Data buffer to read from or write to.

  • size: Size of buffer.

  • bytes_written: Actual number of bytes written.

  • timeout: Number of seconds for write timeout. Within the Open Server, you can specify a granularity of less than a second. Valid values are: -1, 0, >0. If the timeout_seconds parameter is a value of -1, ASC_write blocks until the port is writable. This should not be used within the Open Server application since all files are supposed to be opened and set for nonblocking I/O. If timeout is set to 0, ASC_write returns immediately and mimics UNIX write().

Return values:

  • 0: Okay.

  • -1: A UNIX error occurred.

  • -2: ASC_write timed out.

  • -3: Port hangup detected.

  • -5: Network Operational Error (host down, network down, and so on)

get_name_value

This function extracts name and value parts for the next message line beginning in the start position you specify in the input transaction buffer.

The message is in the format NAME=VALUE;\n and the buffer should look like: NAME=VALUE;\n[NAME=VALUE;\n]. Ensure that name and value buffers are large enough to hold the information.

Syntax:

int get_name_value(char *input_buf,
int start_pos,
int buf_len,
char *name,
char *value)

Arguments:

  • input_buf: Character buffer containing the transaction.

  • start_pos: Specifies start position to get current line. (Input)

  • buf_len: Specifies length of input buffer. (Input)

  • name: Variable to save the name as part of the message in line. (Output)

  • value: Variable to save the value as part of the message in line. (Output)

Return values:

  • int: Start position for next message line in the input buffer.

MS_DIFF

This function determines the difference between two times expressed in milliseconds.

Syntax:

MS_DIFF(start, end)
TODAY

This function returns the current day of the year.

Syntax:

TODAY()     today()
int today(void)

Return values:

  • Day of the year: Current day of the year.

Example:

int yday; yday = TODAY();

Common library interface data types

The following list provides an overview of all the data types found in the Common Library Interface.

For detailed descriptions and a list of public members, arguments, return values, and remarks associated with each of data types, refer "Common library interface data types."

CLIENT_HANDLER

Informs API to call certain functions given certain return results.

  • CM_RPC: Defines an RPC to invoke or defines a registered procedure.

  • CM_RPC_PARAM: Defines a parameter for an RPC or registered procedure.

  • DIAG_LEVEL: Specifies the valid diagnostic levels of an application process using the diagnostic API functions.

The following section describes all of the data types in the Common Library Interface. The functions and structures included in this section are listed in alphabetical order.

CLIENT_HANDLER abstract data type

This structure informs the API which functions to call when certain results are returned. If you do not include a return result, the API uses the default processing to handle the data for the result set and continues processing. The default processing generally ignores the result row.

If you want to use the default processing for a return result type, do not include the result type in the table.

Syntax:

typedef struct {
CS_RETCODE (*handler)(CLIENT_PROC *cp, CS_VOID *data,
CS_INT res_type, CS_BOOL *not_done)
CS_INT res_type;
} CLIENT_HANDLER;

Members:

  • handler: The handler function to call when a return result is matched. To indicate the end of the table, this field should be set to NULL.

  • res_type: Return result type. Refer to the description for more information regarding result types.

CM_RPC abstract data type

This structure is used to define an RPC to invoke or define a registered procedure.

Syntax:

typedef struct{
CS_CHAR *rpcname;
CM_RPC_PARAM *paraminfo;
CS_INT numparam;
CS_RETCODE (*reghandler) (SRV_PROC *srvproc)
} CM_RPC;

Members:

  • rpcname: Name of RPC or registered procedure.

  • paraminfo: Pointer to the parameter structure. Set it to NULL if there is no parameter.

  • numparam: Total number of parameters defined in this structure. Set to NULL if there is no parameter required, otherwise use the macro NUM_RPC_PARAM().

  • reghandler: The handler function that is called when a registered procedure arrives.

CM_RPC_PARAM abstract data type

This structure is used to define the parameter for RPCs and registered procedures. It is used to retrieve parameters when receiving a registered procedure or sending an RPC. The parameters defined in this structure should be in the correct order expected for sending and receiving. The first parameter is passed to the function as item 1.

Syntax:

typedef struct {
    CS_DATAFMT dfmt;
    CS_BYTE *datap;
    CS_INT datalen;
} CM_RPC_PARAM;

Arguments:

  • dfmt: Data description structure defined by the header file which stores necessary format information for the parameter.

  • datap: Pointer to the data as default parameter used to define a registered procedure or retrieved from incoming registered procedure.

  • datalen: Specify the length of data pointed by the datap member. This is only used when setting up default data. Check srv_regparam for details.

DIAG_LEVEL abstract data type

This enumeration specifies the valid diagnostic levels of an application process using the diagnostic API functions.

The diagnostic levels are used with the ASC_diag() function and other diagnostic functions within the API.

If the diagnostic level of the process is higher or equal to the diagnostic level of the ASC_diag() function, then that diagnostic message is written to the diagnostic file.

The diagnostic levels are:

  • PROG

  • SANE

  • LOW

  • KERN

PROG provides the lowest level of detail of the diagnostics. The details become progressively greater for each level, with KERN being the most detailed.

The remaining levels are only used to provide backwards compatibility for ASAP, and are not available to be set.

Syntax:

typedef enum {
KERNEL_LEVEL,
LOW_LEVEL,
FUNCTION_LEVEL,
RPC_LEVEL,
CONTRACT_LEVEL,
SANITY_LEVEL,
PROGRAM_LEVEL,
FATAL_LEVEL
} DIAG_LEVEL;

Members:

  • KERNEL_LEVEL: Used by the kernel to generate diagnostic messages. It is only to be used by the core libraries for very low-level debugging of core code. You can set the application diagnostic level to KERN.

  • LOW_LEVEL: Used by the application to generate low-level diagnostic messages from any of its functions. Such messages enable the programmer to debug an application. Once debugged, the diagnostic level of the application should be changed to provide less detail. You can set the application diagnostic level to LOW.

  • FUNCTION_LEVEL: Used by the application at the beginning and end of each function to track the operation of the application. Not generally used in the core application.

  • RPC_LEVEL: Used by the application to produce RPC diagnostic messages.

  • CONTRACT_LEVEL: Used to specify the start and end of a particular instance of a contract.

  • SANITY_LEVEL: Used by the application for high-level diagnostics. This level of diagnostic messages provides user information about the processing of the system. It is used for low level diagnostic messages. A production application has its diagnostic level set at either PROG or SANE.

  • PROGRAM_LEVEL: This is primarily used to generate error messages when the application is running in a production environment.

  • FATAL_LEVEL: Used for fatal error conditions if the process is terminated. Only used if an error condition occurs within the application such that if the application continued, more errors would occur and compound the problem. For instance, if a function is missing from the database, then the application terminates for manual intervention.

Server library interface

This section details the API functionality provided to ASAP application servers. This functionality is provided by the API library, libcontrol.

This section describes server applications you can use to do the following:

  • Manage threads.

  • Receive registered procedures or remote procedure calls from client applications.

  • Handle language requests.

  • Manage the creation of pools of client connections.

  • Set up pools of DBPROCESS connections to the SQL server.

  • Incorporate I/O functions within an application server.

  • Set up utility thread functions.

  • Set up gateway functionality.

Functions and structures

The following subsections provide you with reference information on the variables, prefixes, and concepts used in the functions and structures contained in the server library interface.

Global variables

This section lists the global variables defined by this server API:

  • RealSrvName: Actual name of the application server as known to the network (that is, the name in the Interfaces file). To obtain this name from the application configuration file, use the logical application name ApplName as the configuration parameter.

  • server_context: Global context for the application server.

  • ASAP_high_availability: Boolean flag. Indicates whether or not High Availability mode is active.

  • ASAP_IS_ALIVE_INTERVAL:Global polling interval for checking connections between the servers.

Thread management functions

The server library interface provides the following thread management structures and functions:

  • ASC_alarm()

  • ASC_await_init_completion()

  • ASC_lockmutex

  • ASC_malarm()

  • ASC_msleep()

  • ASC_reg_init_func()

  • ASC_spawn()

  • ASC_unlockmutex

  • background_process_init()

  • BACKGROUND_PROCESS

Memory management functions

The server library interface provides the following memory management structures and functions:

  • ASC_blk_alloc

  • ASC_blk_free

  • ASC_blk_realloc()

RPCs and registered procedures

This section outlines the steps involved to have the application server receiving registered procedures or remote procedure calls from client applications.

Structures and functions included in this category are:

  • add_appl_rpc()

  • add_registered_proc()

  • add_rpc

  • ASC_define_events()

  • ASC_define_rpc()

  • ASC_get_reg_param()

  • ASC_get_rpc_param()

  • ASC_handle_results

  • REG_PROC

  • RPC

  • RPC_PARAM

  • USEREVENT

Language requests

This section includes functions and structures to help you handle language requests. Structures and functions included in this category are:

  • add_lang_handler()

  • ASC_convert_msg

  • ASC_convert_msg_user

  • ASC_createmsgq

  • ASC_deletemsgq

  • ASC_getmsgq

  • ASC_imsg_types

  • ASC_imsg_types_user

  • ASC_load_msg_tbl

  • ASC_putmsgq

  • ASC_send_text()

  • LANG_HANDLER

Client process connection pool functions

Client process connection pool functions create a pool of client connections to SQL servers. These functions help you manage the creation of pools of client connections for any thread to use within the application server.

The pools of connections assume that connections to the SQL server do not need to be checked periodically to determine whether the server is still running. Connections to other application servers are checked regularly because these servers may become unavailable. If this happens, all connections to that server are released. If communicating with another application server, an application server spawns a driver thread to manage the network connections and check the connection periodically.

Structures and functions included in this category are:

  • ASC_cppalloc()

  • ASC_cpdbpcreate

  • ASC_cppfree()

  • ASC_in_system()

  • ASC_in_territory

  • ASC_cpdbpdestroy

Thread I/O functions

This section includes I/O functions you can incorporate within an application server. Structures and functions included in this category are:

  • ASC_poll()

  • ASC_poll_timer()

Utility thread functions

Structures and functions included in this category are:

  • ASC_getpid()

  • ASC_threadproc()

  • ASC_sendinfo()

  • ASC_thread_field_bool()

  • ASC_thread_field_int()

  • ASC_thread_field_str()

  • ASC_srv_field_bool()

  • ASC_srv_field_int()

  • ASC_srv_field_str()

  • ASC_lock_strtok()

  • ASC_stack_trace()

  • ASC_unlock_strtok()

Inline functions

The inline functions defined by this server API are as follows:

  • APPL_STATE(state): Sets the descriptive state for the current thread. It is displayed by the sp_ps and sp_who system procedures.

  • ASC_exit(): Terminates the application server.

  • ASC_SRV_MSGQID: Open Server message queue ID that was created due to ASC_spawn.

  • ASC_SRV_DATA: Pointer to the global data segment for the thread.

  • ASC_SRV_START-UP: Pointer to the startup data segment for the thread.

  • ASC_GET_RPC_PARAM (srvproc, rpc_name, param_name, paramno, dest_type, dest, dest_len, max_len): Retrieves a parameter from an RPC call. (Note: This cannot be used for RPCs or registered procedures that are written using the System 10 model.)

Server application functions

This section details server application functions. These functions and structures are listed in alphabetical order.

add_appl_rpc

This function adds an RPC to the application server, either as an RPC or a registered procedure depending on a configuration parameter.

See also add_rpc, ASC_define_rpc.

This function has been superseded by ASC_define_rpc().

Syntax:

CS_RETCODE add_appl_rpc(RPC *rpc)

Arguments:

  • rpc: Pointer to the RPC definition structure.

Return values:

  • CS_SUCCEED: Addition successful.

  • CS_FAIL: Too many RPCs added to the server.

add_lang_handler

This function scans the current list of installed language handlers and installs a new language handler at the end of the list. If the maximum number (100) of language handlers has been exceeded, a system event is issued.

Syntax:

void add_lang_handler(LANG_HANDLER *hand)

Arguments:

  • hand: Pointer to a language handler structure containing the language handler details.

Example:

static int run_lang_handler(SRV_PROC *srvproc, CS_CHAR *langptr, CS_INT langlen);
/* Language Handler Definition */
static LANG_HANDLER run_lang_def = {
    "run", "run", run_lang_handler
};
void init_function(void)
{
...
    add_lang_handler(&run_lang_def);
}
static int run_lang_handler(SRV_PROC *srvproc, CS_CHAR *langptr, CS_INT langlen)
{
    /* Process the language buffer */
    ...
    /* Complete the language request */
    srv_sendstatus(srvproc, 0);
    srv_senddone(srvproc, SRV_DONE_FINAL, 0, 0);
    return CS_SUCCEED;
}
add_registered_proc

This function adds the registered procedure specified by the rp argument to the application server.

The use of this function is no longer recommended. Instead, use the ASC_define_rpc() function.

Syntax:

CS_RETCODE add_registered_proc(REG_PROC *rp)

Arguments:

  • rp: Pointer to the REG_PROC structure.

Return values:

  • CS_SUCCEED: Addition successful.

  • CS_FAIL: Too many RPCs added to the server.

add_rpc

This function adds a procedure to a server as a remote procedure. Use this function to add procedures that take optional parameters as registered procedures do not allow optional arguments.

Only use this function to define RPCs to the server. Such procedures take variable numbers of arguments. If the procedure takes a fixed number of non-null arguments, it should be defined as a registered procedure.

Syntax:

CS_RETCODE add_rpc(RPC *rpc)

Arguments:

  • rpc: Pointer to the RPC structure.

Return values:

  • CS_SUCCEED: Addition successful.

  • CS_FAIL: Too many RPCs added to the server.

ASC_alarm

This function sets up an asynchronous alarm for a thread. The msg argument uniquely identifies the alarm and must point to a data segment where the first four bytes is the message operation. When the alarm expires, the message is sent to msgqid with the operation set to msg_operation. To cancel the alarm, set the seconds argument of this function to zero.

Any thread calling this function MUST be awaiting messages on a previously created message queue.

The thread message structure must have a long integer as the first field. This integer field is used as the message operation field, identifying the message type to the receiving thread. The first action of this function is to assign the msg pointer to the msg_operation value, thus setting the message operation for the alarm wakeup message. After this first message field, the message can have any format that the sending and receiving threads agree upon.

Syntax:

void ASC_alarm(time_t seconds, SRV_OBJID msgqid, int *msg, long msg_operation)

Arguments:

  • seconds: Time, in seconds, after which the alarm is issued.

  • msgqid: The thread message queue to which the thread message is to be sent. Note that the calling thread must have a dedicated thread message queue in order to receive the alarm notification.

  • msg: An integer pointer to the previously allocated alarm message data area.

  • msg_operation: The message operation used to identify an alarm message being received.

ASC_await_init_completion

This function waits for the initialization process to complete before continuing to execute.

Syntax:

void ASC_await_init_completion(void)
ASC_blk_alloc

This function returns a pointer to a memory block of a specified size (bytes). The memory is from a preallocated pool. ASC_BLK_ALLOC is called to interface with this function.

See also ASC_mem_alloc.

Each memory pool has a default number of blocks. This value is configurable in ASAP.cfg.

Syntax:

VOIDPTR ASC_blk_alloc(int line, char *file, CS_INT size, CS_CHAR *type_name)

Arguments:

  • line: The line number of the function in the source file, “__LINE__".

  • file: The file from which the function was called, “__FILE__".

  • size: The number of bytes required.

  • type_name: Name of type to be allocated.

ASC_BLK_ALLOC

This macro selects a block of memory from the appropriate memory pool that satisfies the size requirements of the structure specified by count * struct_name.

One block of memory is returned that is large enough to hold a number of instances of the structure. The number of instances is specified by count.

If required, you can change the number of blocks in each memory pool in ASAP.cfg.

Table 3-1 Default Memory Pool Blocks

Size of Each Block in the Pool Default Number of Blocks Configuration Variable

16

1024

ASC_BLOCK16_POOL

32

1024

ASC_BLOCK32_POOL

64

1024

ASC_BLOCK64_POOL

96

1024

ASC_BLOCK96_POOL

128

512

ASC_BLOCK128_POOL

256

256

ASC_BLOCK256_POOL

512

128

ASC_BLOCK512_POOL

1024

64

ASC_BLOCK1024_POOL

2048

32

ASC_BLOCK2048_POOL

4096

16

ASC_BLOCK4096_POOL

8192

8

ASC_BLOCK8192_POOL

Syntax:

(struct_name*) ASC_BLK_ALLOC (struct_name, struct_desc, count)

Example:

void function()
{
MY_STRUCTURE item1, item2;
MY_STRUCTURE *array;
array = ASC_BLK_ALLOC (MY_STRUCTURE, "MY_STRUCTURE", 1);
array[0] = item1;
array = ASC_BLK_REALLOC (array, MY_STRUCTURE, "MY_STRUCTURE", 2);
array[1] = item2;
ASC_BLK_FREE (array);
}
ASC_BLK_FREE

This macro returns the block of memory, specified by ptr, to its memory pool. The default number of memory blocks is configured in ASAP.cfg.

For an example of the use of this macro, refer to ASC_BLK_ALLOC.

Syntax:

void ASC_BLK_FREE (ptr)
ASC_blk_realloc

This function returns a pointer to a new block of a specified size (bytes). The contents of the specified address are moved to the new block. ASC_BLK_REALLOC is called to interface with this function.

For more information on the default number of blocks assigned to memory pools, see "ASC_BLK_ALLOC."

Each memory pool has a default number of blocks. The ASC_BLOCK##_POOL value is configured in ASAP.cfg.

Syntax:

VOIDPTR ASC_blk_realloc(VOIDPTR addr, int line, char *file, CS_INT size, CS_CHAR *type_name)

Arguments:

  • addr: The address of current allocation.

  • line: The line number of the function in the source file, “__LINE__".

  • file: The file from which the function was called, “__FILE__".

  • size: Number of bytes required.

  • type_name: Name of type to be allocated.

ASC_BLK_REALLOC

This macro selects a block of memory from the appropriate pool that will satisfy the size requirements of the structure specified by count * struct_name.

For an example of the use of this macro, refer to ASC_BLK_ALLOC.

Copies the contents of the previous block (specified by ptr) into the new block, and then returns the previous block to its pool.

One block of memory is returned that is large enough to hold a number of instances of the structure. The number of instances is specified by count.

The default number of memory blocks is configured in ASAP.cfg.

Syntax:

struct_name*) ASC_BLK_REALLOC (ptr, struct_name, struct_desc, count)
ASC_cpdbpcreate

This function creates a CLIENT_PROC connection pool to the database server of the size you specify.

Syntax:

CLIENT_PROC_POOL ASC_cpdbpcreate(CS_CHAR *pool_name, CS_CHAR *srv_name, CS_CHAR *userid, CS_CHAR *password, CS_INT size, CP_CONNECT_TYPE cp_type)

Arguments:

  • pool_name: Name of the client process pool.

  • srv_name: Name of the server to establish a connection with.

  • userid: User ID for security validation by the server.

  • password: Password for security validation by the server.

  • size: Number of client connection processes to be established.

  • cp_type: Connection type. Valid values include:

    • OPEN_SERVER – Sybase Open Server Connection type.

    • ORACLE – Oracle Server RDBMS Connection type.

ASC_cpdbpdestroy

This function destroys the client process connection pool and frees all processes.

Syntax:

void ASC_cpdbpdestroy(CLIENT_PROC_POOL *cpp)

Arguments:

  • cpp: Pointer to the client pool.

ASC_cppalloc

This function allocates a client process from the client process connection pool.

See also ASC_cppfree.

Syntax:

CLIENT_PROC *ASC_cppalloc(CLIENT_PROC_POOL *cpp)

Arguments:

  • cpp: Pointer to the client process pool.

Return values:

  • NULL: The function failed and the client process could not be allocated. This will only happen if the client process pool is invalid.

  • CLIENT_PROC*: Pointer to the allocated client process.

ASC_cppfree

This function frees an allocated client process and returns it to the original pool.

See also ASC_cppalloc.

Syntax:

void ASC_cppfree(CLIENT_PROC *cp)

Arguments:

  • cp: Pointer to the client process structure.

ASC_createmsgq

This function creates an Open Server message queue. When a message queue is created, a mutex for that queue is also created. Therefore, the Open Server must be configured to allow the creation of enough mutexes.

See also ASC_deletemsgq, ASC_putmsgq and ASC_getmsgq.

Syntax:

CS_RETCODE ASC_createmsgq(CS_CHAR *mqname, 
CS_INT mqlen, 
SRV_OBJID *mqid)

Arguments:

  • mqname: Pointer to the message queue name.

  • mqlen: Length of the message queue name.

  • mqid: Pointer to the message queue ID.

Return values:

  • CS_SUCCEED: The message queue was created successfully.

  • CS_FAIL: The creation of the message queue failed.

ASC_createmutex

This function creates a mutex.

See also ASC_deletemutex, ASC_lockmutex, and ASC_unlockmutex.

Syntax:

CS_RETCODE ASC_createmutex(CS_CHAR *mutex_name, 
CS_INT mutex_namelen, 
SRV_OBJID *mutex_id)

Arguments:

  • mutex_name: The name of the mutex.

  • mutex_namelen: The length of the mutex name if not null terminated.

  • mutex_id: The mutex ID returned during creation.

Return values:

  • CS_SUCCEED: The mutex was created successfully.

  • CS_FAIL: An error in the operation.

ASC_define_events

This function installs handlers for user-defined events.

Syntax:

CS_RETCODE ASC_define_events(USEREVENT *tbl)

Arguments:

  • tbl: Table of user events to be installed into the application server.

Return values:

  • CS_SUCCEED: The user events were successfully installed into the application server.

  • CS_FAIL: The installation failed.

ASC_define_rpc

This function registers a procedure with the application server.

Syntax:

CS_RETCODE ASC_define_rpc(CM_RPC *reg_def)

Arguments:

  • reg_def: Pointer to the RPC definition structure.

Return values:

  • CS_SUCCEED: Addition successful.

  • CS_FAIL: RPC could not be defined in the server.

ASC_deletemsgq

This function deletes an Open Server message queue. The mutex created when the message queue was created will be removed.

See also ASC_createmsgq, ASC_putmsgq, and ASC_getmsgq.

Syntax:

CS_RETCODE ASC_deletemsgq(CS_CHAR *name, 
CS_INT length, 
SRV_OBJID id)

Arguments:

  • name: Pointer to the name of the message queue.

  • length: Length of the message queue.

  • id: The ID of the message queue.

Return values:

  • CS_SUCCEED: The message queue was deleted successfully.

  • CS_FAIL: The deletion of the message queue failed.

ASC_deletemutex

This function deletes a mutex.

See also ASC_createmutex, ASC_lockmutex, and ASC_unlockmutex.

Syntax:

CS_RETCODE ASC_deletemutex(CS_CHAR *mutex_name, 
CS_INT mutex_namelen, 
SRV_OBJID mutex_id)

Arguments:

  • mutex_name: The name of the mutex.

  • mutex_namelen: The length of the mutex name if not null terminated.

  • mutex_id: The mutex ID specified during deletion.

Return values:

  • CS_SUCCEED: The mutex was deleted successfully.

  • CS_FAIL: An error occurred during the operation.

ASC_get_reg_param

This function determines the parameters for a registered procedure.

Syntax:

CS_RETCODE ASC_get_reg_param(SRV_PROC *srvproc, CM_RPC *reg_def, ...)

Arguments:

  • srvproc: Pointer to the current thread structure.

  • reg_def: Pointer to the registered procedure definition.

  • ...: Variable list of data value pointers.

Return values:

  • CS_SUCCEED: Addition successful.

  • CS_FAIL: The determination of the parameters on the registered procedure failed.

ASC_getmsgq

This function retrieves a thread message.

See also ASC_createmsgq, ASC_putmsgq and ASC_deletemsgq.

Syntax:

CS_RETCODE ASC_getmsgq(SRV_OBJID msgqid, 
CS_VOID **msg, 
CS_INT flags, 
CS_INT *info)

Arguments:

  • msgqid: Name of the message queue.

  • msg: Indirect pointer to the thread message.

  • flags: Informational flag – Populated upon failure.

  • info: Information – Populated upon failure.

Return values:

  • CS_SUCCEED: The message was received successfully.

  • CS_FAIL: The message was not received.

ASC_getpid

This function gets the server process ID for the thread associated with the current server process.

Syntax:

CS_INT ASC_getpid(SRV_PROC *srvproc)

Arguments:

  • CS_INT: Open Server process ID for the server process you specified.

  • srvproc: The Open Server process handle.

Return values:

  • SRV_PROC*: Pointer to current server process.

  • CS_INT: Open Server process ID for the server process you specified.

ASC_get_securedata

Retrieves a secure data entry.

Syntax:

CS_RETCODE ASC_get_securedata(char *name, 
char*value);

Arguments:

  • name: Used as key to retrieve secure data entry.

  • value: Encrypted password field of the secure data entry.

ASC_handle_results

Once a command has been sent to the SQL Server, this function processes the results and passes them back to the Open Server client.

Syntax:

CS_RETCODE ASC_handle_results(CLIENT_PROC *rmtproc, 
SRV_PROC *srvproc, 
CS_INT *last_row_cnt, 
CS_INT *tot_row_cnt)

Arguments:

  • rmtproc: The Open Client Library handle to the remote DBMS.

  • srvproc: The Open Server process handle to use to send results to the client.

  • last_row_cnt: Pointer to the number of rows transmitted to the client in the last set of results in the command batch. This can be used by the calling function to determine whether any such rows were returned to the client and to set the row count in the final srv_senddone() statement. If not required, set this field to NULL.

  • tot_row_cnt: Pointer to the total number of rows transmitted to the client. This determines whether any command result rows were transmitted to the client. If not required, set this field to NULL.

Return values:

  • CS_SUCCEED: Successfully returned data rows (if any).

  • CS_FAIL: Error.

ASC_in_system

This function checks whether or not the specified component is defined in the specified territory and system. This function is related to high-availability installations.

Syntax:

CS_RETCODE ASC_in_system(CS_CHAR *territory, 
CS_CHAR *system, 
CS_CHAR *component)

Arguments:

  • territory: Name of the ASAP territory to check.

  • system: Name of the ASAP system to check within the territory.

  • component: Name of the component to check in the system.

Return values:

  • CS_SUCCEED: The component is defined for the ASAP territory and system.

  • CS_FAIL: The component is not defined for the ASAP territory and system.

ASC_in_territory

This function checks if the specified component is defined in the specified territory.

Syntax:

CS_RETCODE ASC_in_territory(CS_CHAR *territory, 
CS_CHAR *component)

Arguments:

  • territory: Name of the ASAP territory to check.

  • component: Name of the component to check in the system.

Return values:

  • CS_SUCCEED: The component is defined for the ASAP territory.

  • CS_FAIL: The component is not defined for the ASAP territory.

ASC_lockmutex

This function locks mutexes.

See also ASC_unlockmutex.

Syntax:

CS_RETCODE ASC_lockmutex(SRV_OBJID mutex_id, 
CS_INT waitflag, 
CS_INT *infop)

Arguments:

  • mutex_id: The mutex ID returned during locking.

  • waitflag: Specifies whether the thread requesting the lock of the mutex should wait or return if the mutex cannot be locked.

  • infop: A pointer to a CS_INT. Refer to the appropriate Sybase documentation for appropriate values.

Return values:

  • CS_SUCCEED: The mutex was locked successfully.

  • CS_FAIL: An error in the operation.

ASC_lock_strtok

Since the UNIX function strtok() maintains a global or static variable of its current position within the string, it is not multi-thread-safe. ASC_lock_strtok is used in conjunction with strtok() in a multi-threaded environment. After you have finished using strtok(), ASC_unlock_strtok() must be called to free the associated mutex.

Syntax:

void ASC_lock_strtok(void)
ASC_malarm

This function sets up an asynchronous alarm for a thread. It provides the same functionality as ASC_alarm but is used to provide timing of less than one second.

See also "ASC_alarm."

Syntax:

void ASC_malarm(CS_FLOAT  timeout, 
SRV_OBJID msgqid, 
int *msg, 
long msg_operation)

Arguments:

  • timeout: Time, in milliseconds, after which the alarm goes off.

  • msgqid: The thread message queue to which to send the thread message. Note that the calling thread must have a dedicated thread-message queue in order to receive the alarm notification.

  • msg: An integer pointer to the previously allocated alarm message data area.

  • msg_operation: The message operation used to identify an alarm message being received.

ASC_mem_alloc

This function allocates a fixed size block from the memory pool.

See also ASC_mem_free, ASC's libcontrol RPC call “mem_usage" for usage statistics, and ASC_mem_create libcontrol API call to create a memory pool.

Upon startup, a pool of memory is created. The pool can hold several records of information. If the pool is not large enough, it is automatically resized to accommodate the new records. When ASC_mem_alloc is called, a record is assigned as in_use and returned as a VOIDPTR (a generic C pointer which can be defined as any type).

The ASAP Memory Manager controls the constant allocation, deallocation, and reallocation of memory. These procedures are expensive in terms of CPU usage. The pool is allocated only once. All the ASC_mem_allocs and ASC_mem_free functions that are called, simply update the in_use flag of each memory record.

Syntax:

VOIDPTR ASC_mem_alloc(int line, char *file, 
ASC_MEM_POOL *pool)

Arguments:

  • line: The line number of the function in the source file, "__LINE__".

  • file: The file from which the function was called, "__FILE__".

  • ASC_MEM_POOL *pool: The name of the memory pool.

ASC_mem_free

This function frees a fixed sized block and returns it to the memory pool.

See also ASC_mem_alloc, ASC's libcontrol RPC call “mem_usage" for usage statistics, and ASC_mem_create libcontrol API call to create a memory pool.

When the ASC_mem_alloc pointer allocated is no longer needed, ASC_mem_free automatically returns it to the correct pool.

The ASAP Memory Manager controls the constant allocation, deallocation, and reallocation of memory. These procedures are expensive in terms of CPU usage. The pool is allocated only once. All the ASC_mem_allocs and ASC_mem_free functions that are called update the in_use flag of each memory record.

Syntax:

void ASC_mem_free(int line, 
char *file, 
VOIDPTR p)

Arguments:

  • line: The line number of the function in the source file, "__LINE__".

  • file: The file from which the function was called, "__FILE__".

  • VOIDPTR: A generic C pointer which can be defined as any type.

ASC_msleep

This function allows a thread to sleep for the time, in seconds, that you specify. If you want to set the time in milliseconds, specify the fractional part of a second.

See also ASC_sleep.

Syntax:

void ASC_msleep(CS_FLOAT seconds)

Arguments:

  • seconds: Number of seconds to send the thread into sleep state.

ASC_poll

This function is the Application server poller that provides timeout. The Open Server Poller function srv_poll() in the blocking mode (SRV_M_WAIT) does not provide a timeout. The alarm() call cannot be used to time out the srv_poll() call since the Sleep Manager thread provided by ASAP Server API uses the alarm() to implement sleep management. ASC_poll() provides srv_poll() functionality allowing for timeout like UNIX I/O multiplexing call poll().

This function declaration is the same as for srv_poll() except for the additional parameter that specifies the timeout in seconds. There is also an additional return value, -2, which indicates that srv_poll() timed out.

ASC_poll() implements the timeout by creating a socketpair and sending the write endpoint of the socketpair in a timeout request message to the sleep manager. The read endpoint of the socketpair is added to the list of ports to be watched for. If an event occurs in any of the ports, the sleep manager is sent a timer cancellation, and the return value from the srv_poll() is returned. Otherwise, if the timeout message from sleep manager is received on the read endpoint of the socketpair connection, it returns a value of -2 to indicate timeout.

All ASAP Application servers should call ASC_poll() instead of directly calling srv_poll().

Setting a timeout of 0 is equivalent to calling srv_poll() with wait-flag set to SRV_M_NOWAIT.

Setting a timeout of -1 is equivalent to calling srv_poll() with wait-flag set to SRV_M_WAIT.

Setting a timeout > 0 provides poll-like functionality.

Syntax:

CS_INT ASC_poll(SRV_POLLFD *fdsp, 
CS_INT nfds, 
CS_FLOAT timeout)

Arguments:

  • fdsp: Pointer to an array of SRV_POLLFD structures with one element for each open file descriptor of interest.

  • nfds: Number of elements in the *fdsp array.

  • timeout: Number of seconds for srv_poll timeout. Open servers do not support granularity of less than seconds. Valid values are: -1, 0, > 0. If the timeout_seconds parameter is a value of -1, ASC_poll() does not return until at least one specified event has occurred. If the value of the parameter is 0, ASC_poll() does not wait for an event to occur but returns immediately, even if no specified event has occurred. This is consistent with UNIX poll behavior.

Return values:

  • n: The number of file descriptions.

  • 0: No file descriptors are ready, or ASC_poll timed out. This is consistent with UNIX poll behavior.

  • -1: An error occurred.

ASC_poll_timer

This function sets up an asynchronous alarm to provide timeout while polling for data for a thread. The msg argument uniquely identifies the timer and must point to a data segment where the first (4 bytes) is the message operation. When the timer expires, the message integer pointer is written to the socket sock_fid.

See also "ASC_poll."

To cancel the timer, set the timeout argument to zero (0.0) seconds.

Any thread calling this function MUST be polling for messages on the read end of the socketpair connection.

The format and contents of the message may have any format because the msg pointer is written to the sock_fid. The caller must be responsible for handling if the message pointed to has been deallocated.

Syntax:

void ASC_poll_timer(CS_FLOAT timeout, 
int sock_fid, 
int *msg)

Arguments:

  • timeout: Time, in seconds, specified as the floating point value after which the timer expires. The granularity is to the millisecond.

  • sock_fid: Write end of the socketpair connection over which the timer notification is sent. The calling thread must create a socketpair, allocate one end as the write end and the other as the read end, send it to sleep manager as part of ASC_poll_timer(), and poll for messages on the read end of the socketpair.

  • msg: An integer pointer to the previously allocated timer message data area. The caller is responsible for populating the data area with information needed on timeout notification from the sleep manager and deallocating the data area.

ASC_putmsgq

This function adds a thread message to a particular message queue.

See also ASC_createmsgq, ASC_getmsgq, and ASC_deletemsgq.

Syntax:

CS_RETCODE ASC_putmsgq(SRV_OBJID mqid, 
CS_VOID *msgp, 
CS_INT flags)

Arguments:

  • mqid: Name of the message queue.

  • msgp: Pointer to the thread message.

  • flags: Message processing flags.

Return values:

  • CS_SUCCEED: The message was sent successfully.

  • CS_FAIL: An error occurred during message send.

ASC_reg_init_func

This function registers an initialization function within the application server with a priority specified by its first argument. Such functions execute in serial order by priority by the initialization thread within the server API. While this thread executes these initialization functions, an initialization mutex is locked, preventing other threads from starting up until all the initialization functions have finished.

Such initialization functions can perform network I/O activities such as loading static tables from the database, etc. This type of network activity cannot be performed from within the SRV_START handler. Therefore, it is necessary to spawn a separate initialization thread to execute these tasks.

The initialization thread does not begin executing until the SRV_START event handler has finished, that is, appl_initialize() has returned, allowing the application to register its initialization functions before the initialization thread begins.

This function must be called from within the SRV_START handler function, either in the API or in the appl_initialize() application-supplied function.

Syntax:

void ASC_reg_init_func(int level, 
char *desc, 
CS_RETCODE (*init_func)(void))

Arguments:

  • level: Priority of the initialization function. 0 to 10 is reserved for the API. The application server code can use > 10.

  • desc: Description of the initialization function.

  • init_func: Function pointer to initialization function.

ASC_send_text

This function sends a language command, text buffer, and if required, the contents of the specified file to an application server. The command that is placed on the first line of the text to be sent determines which language handler the destination server invokes.

See also add_lang_handler().

If the filename is set, the command, the contents of the file, and the buffer are transmitted in that order. If the filename is NULL, the command and buffer are transmitted.

This function also determines whether or not there is a thread already spawned to act as a language driver thread to the specified application server. If a thread exists, it sends a synchronous thread message to that thread, which then transmits the text buffer and returns a status value to the calling function.

If no such thread currently exists, a language driver thread is spawned within the server process to establish and maintain a network connection to the destination application server. From this point on, all text transmission requests are directed to this thread.

It is important that you specify the correct command in this function so that the destination application server executes the correct language handler.

Syntax:

CS_RETCODE ASC_send_text(char *server, 
char *command, 
char *filename, 
char *buf)

Arguments:

  • server: The logical name for the application server to where the language request is to be transmitted.

  • command:Character pointer to a command that is placed in the first line of the transmitted text and is used by the receiving application server to determine the relevant language handler to execute.

  • filename: The location for the file that is to be transmitted. If you are not transmitting a file, set this to NULL.

  • buf: Character buffer to be transmitted. If you specify a filename, this buffer is appended to the file contents in the text. If you are not transmitting a buffer, set this to NULL.

Return values:

  • CS_FAIL: Unable to open a network connection to the destination server. The invocation of dbsqlexec() failed.

  • CS_SUCCEED: The text was successfully transmitted.

ASC_sendinfo

This function sends an information message to the client.

Syntax:

CS_RETCODE ASC_sendinfo(SRV_PROC *sp, 
CS_INT msgno, 
CS_CHAR *msg)

Arguments:

  • sp: Pointer to the internal thread control structure.

  • msgno: Message number being sent.

  • msg: Message text to send.

Return values:

  • CS_SUCCEED: Message was sent to client.

  • CS_FAIL: Error occurred sending message.

ASC_set_securedata

Updates or adds user-defined, secure data.

Syntax:

CS_RETCODE ASC_set_securedata(char *name, 
char*value, 
char *desc);

Arguments:

  • name: Key to retrieve the secure data entry.

  • value: Value (password) of the secure data entry.

  • desc: Description of the secure data entry.

ASC_spawn

This function sets the server process data segment and then spawns a generic Open Server thread that sets up the application thread.

Using this function, you can pass a message queue name to be created by this function. You can also specify a main function, an exit function, and request that a database connection be established for the spawned thread.

You can access the structure created within the API to manage this spawned thread using the following in-line functions:

  • ASC_SRV_DBPROC – If you request that a DBPROC be created, this macro points to the DBPROCESS structure allocated by the API for use by this thread.

  • ASC_SRV_MSGQID – If you request that a message queue be created for this thread, the message queue ID of the message queue created by the API.

  • ASC_SRV_DATA – If the dataseg_size is not zero, this serves as a pointer to the data segment that is allocated by the API for use by the spawned thread. The thread, or any function called by it, may reference this data segment at any time using this macro.

  • ASC_SRV_STARTUP – The data segment passed as an argument to the spawned function. This is the start_seg passed to ASC_spawn().

Syntax:

CS_RETCODE ASC_spawn(CS_CHAR *name, 
int (*main_fn)(VOIDPTR data_seg), 
VOIDPTR start_seg, 
CS_INT dataseg_size, 
CS_CHAR *msgname, 
CS_BOOL dbproc_required, 
CS_RETCODE (*exit_handler)(SRV_PROC *srvproc))

Arguments:

  • name: Name of the server process.

  • main_fn: Pointer to the main function of the application thread. When this function terminates, the server process terminates.

  • start_seg: Pointer to the startup data segment of the server process.

  • dataseg_size: Size of local data segment required by the application.

  • msgqname: The message queue that the server process will read. If no message queue is required, set this to NULL.

  • dbproc_required: Identifies whether or not the server process requires an application database process.

  • exit_handler: Pointer to the function that is called when the server process terminates. If no server process is required, set this field to NULL.

Return values:

  • CS_SUCCEED: The spawning of the server process was successful.

  • CS_FAIL: No server processes were available.

ASC_srv_field_bool

This function calls srv_props to return a field in the server structure:

  • ASC_srv_field_str – Retrieves strings

  • ASC_srv_field_int – Retrieves integers

  • ASC_srv_field_bool – Retrieves boolean

Syntax:

CS_BOOL ASC_srv_field_bool(CS_INT property)

Arguments:

  • property: The property to retrieve.

Return values:

  • CS_BOOL: Boolean value for the server property.

ASC_srv_field_int

This function calls srv_props to retrieve a field in the server structure:

  • ASC_srv_field_str – Retrieves strings

  • ASC_srv_field_int – Retrieves integers

  • ASC_srv_field_bool – retrieves boolean

Syntax:

CS_INT ASC_srv_field_int(CS_INT property)

Arguments:

  • property: The property to retrieve.

Return values:

  • CS_INT: Integer value for the server property.

ASC_srv_field_str

This function calls srv_props to retrieve a field in the server structure:

  • ASC_srv_field_str – retrieves strings

  • ASC_srv_field_int – Retrieves integers

  • ASC_srv_field_bool – Retrieves boolean

Syntax:

CS_VOID ASC_srv_field_str(CS_INT property,
CS_CHAR *buf, 
CS_INT size)

Arguments:

  • property: The property to retrieve.

  • buf: Pointer to the destination buffer for string properties.

  • size: Maximum size of the destination buffer.

ASC_srv_sleep

This is a wrap function around srv_sleep function. ASC adds an extra feature: if sleep is interrupted by a signal of the same variety, the thread continues to sleep.

The thread sleeps until srv_wakeup is called on the same event.

For more information on the srv_sleep function, refer to Sybase documentation.

Syntax:

CS_RETCODE ASC_srv_sleep(CS_VOID *sleepeventp, 
CS_CHAR *sleeplabelp, 
CS_INT sleepflags, 
CS_INT *infop, 
CS_VOID *reserved1, 
CS_VOID *reserved2)

Arguments:

  • sleepeventp: A generic void pointer that srv_wakeup uses to wake the thread or threads. The pointer should be unique for the operating system event that the threads are sleeping on. For example, if a message is passed to another thread, the sending thread could sleep until the message is processed. The pointer to the message would be a useful sleep event that the receiving thread could pass to srv_wakeup to wake the sender.

  • sleeplabelp: A pointer to a null terminated character string that identifies the event that the thread is sleeping on. This is useful for determining why a thread is sleeping. An application can display this information using the Open Server system registered procedure sp_ps.

  • reserved1: A platform-dependent handle to a mutex. This argument is ignored on non-preemptive platforms. Set it to (CS_VOID*)0 on non-preemptive platforms.

  • reserved2: This parameter is not currently used. Set it to 0.

  • sleepflags: The value of this flag determines the manner in which the thread wakes up.

  • infop: A pointer to a CS_INT.

For more information on the appropriate values for sleepflags and infop, refer to the Sybase documentation.

ASC_stack_trace

This function prints the stack trace to the server's diagnostic logfile. It calls the Open Server srv_dbg_stack() function to perform this operation.

See also ASC_diag(), ASC_hex_dump(), ASC_rpc_dump().

This function is supported only on platforms where Sybase supports debug capability (this is governed by the SRV_C_DEBUG capability). It is not supported under AIX.

Syntax:

void ASC_stack_trace(DIAG_LEVEL level, 
char *type, 
int line, 
char *file)

Arguments:

  • level: The diagnostic level for the function call. See ASC_diag() for more information.

  • type: Brief description of the circumstances for the function call. It helps to identify such entries in the server's logfile.

  • line: The line in the source file at which the function was called.

  • file: The source file from which this function was called.

ASC_thread_field_bool

This function calls srv_thread_props to retrieve a field in the thread structure:

  • ASC_thread_field_str – Retrieves strings

  • ASC_thread_field_int – Retrieves integers

  • ASC_thread_field_bool – Retrieves boolean

Syntax:

CS_BOOL ASC_thread_field_bool(SRV_PROC *sp, 
CS_INT property)

Arguments:

  • sp: Current thread structure.

  • property: The property to retrieve.

Return values:

  • CS_BOOL: Boolean value for the thread property.

ASC_thread_field_int

This function calls srv_thread_props to retrieve a field in the thread structure:

  • ASC_thread_field_str – Retrieves strings

  • ASC_thread_field_int – Retrieves integers

  • ASC_thread_field_bool – Retrieves boolean

Syntax:

CS_INT ASC_thread_field_int(SRV_PROC *sp, 
CS_INT property)

Arguments:

  • sp: Current thread structure.

  • property: The property to retrieve.

Return values:

  • CS_INT: Integer value for the thread property.

ASC_thread_field_str

This function calls srv_thread_props to retrieve a field in the thread structure:

  • ASC_thread_field_str – Retrieves strings

  • ASC_thread_field_int – Retrieves integers

  • ASC_thread_field_bool – Retrieves boolean

Syntax:

CS_VOID ASC_thread_field_str(SRV_PROC *sp, 
CS_INT property, 
CS_CHAR *buf, 
CS_INT size)

Arguments:

  • sp: Current thread structure.

  • property: The property to retrieve.

  • buf: Pointer to the destination buffer for string properties.

  • size: Maximum size of the destination buffer.

ASC_threadproc

This function gets the pointer to the server process associated with the current thread.

Syntax:

SRV_PROC *ASC_threadproc(void)

Return values:

  • SRV_PROC*: Pointer to current server process.

ASC_unlockmutex

This function unlocks mutexes.

See also ASC_lockmutex.

Syntax:

CS_RETCODE ASC_lockmutex(SRV_OBJID mutex_id)

Arguments:

  • mutex_id: The mutex ID.

Return values:

  • CS_SUCCEED: The mutex was unlocked successfully.

  • CS_FAIL: An error occurred.

ASC_unlock_strtok

Because the UNIX function strtok() maintains a global or static variable of its current position within the string, it is not multi-thread-safe. ASC_lock_strtok is used in conjunction with strtok() in a multithreaded environment. When finished using strtok(), ASC_unlock_strtok() must be called to free the associated mutex.

Syntax:

void ASC_unlock_strtok(void)
background_process_init

This function initializes the background processes in the server.

Syntax:

CS_RETCODE background_process_init (BACKGROUND_PROCESS *tbl)

Arguments:

  • tbl: Table listing the background processes to be started in the server.

Return values:

  • CS_SUCCEED: The background processes started successfully.

  • CS_FAIL: An error occurred and the processes could not start.

Server application data types

This section describes all of the data types for the Server Application.

The following list provides an overview of the data types for the Server Application.

  • BACKGROUND_PROCESS: Defines a background thread or service thread spawned by the application server.

  • LANG_HANDLER: Describes a language event handler.

  • REG_PROC: Registered procedure application definition.

  • RPC: Defines an RPC that will be accepted by the server.

  • RPC_PARAM: Defines the parameters for a specific RPC.

  • USEREVENT: Defines user events and the appropriate event handler.

BACKGROUND_PROCESS abstract data type

This structure defines the background or service thread spawned by the application server.

Refer to ASC_spawn() for further details about spawning service threads.

Syntax:

typedef struct {
char *qname;
SRV_OBJID *msgqxp;
int (*start)(void *data_seg);
void *data_seg;
BACKGROUND_PROCESS;

Members:

  • qname: Name of the message queue to be created for this service thread.

  • msgqxp: Pointer to the location where the message queue ID is to be placed.

  • start: Function pointer to the main thread function.

  • data_seg: Pointer to a data segment to be made available to the service thread.

LANG_HANDLER abstract data type

This structure describes a language event handler.

Syntax:

typedef struct {
char command[LANG_HAND_COMMAND_L+1];
char usage[LANG_HAND_USAGE_L+1];
int (*handler)(SRV_PROC *srvproc, CS_CHAR *langptr,
CS_INT langlen);
LANG_HANDLER;

Members:

  • command: The command associated with the language request. This will be the first line of the language text buffer that is passed to the application server.

  • usage: The usage of language handler. This usage string is returned to the user in the lang_list RPC.

  • handler: The function to call to handle this language request. The function syntax is the language handler syntax.

REG_PROC abstract data type

This data type has been superseded by the CM_RPC data type.

This data type is a registered procedure application definition.

Syntax:

typedef struct {
char *procname;
CS_RETCODE (*handler)(SRV_PROC *srvproc);
REG_PROC_PARAM *param_tbl;
REG_PROC;

Members:

  • proname: Name of the registered procedure being defined.

  • handler: RPC handler to process the registered procedure when it is executed.

  • param_tbl: Register procedure parameter table.

RPC abstract data type

Any new code for registered procedures should use the CM_RPC data type instead of this datatype. RPCs continue to use this data type.

This structure defines an RPC that is accepted by the server.

The function add_appl_rpc() is used to add the RPC to the list of RPCs being handled by the server.

Syntax:

typedef struct {
CS_CHAR *rpcname;
CS_CHAR *rpcusage;
RPC_PARAM *rpcparams;
CS_RETCODE (*rpchandler)(SRV_PROC *srvproc);
short min_params;
short max_params;
RPC;

Members:

  • rpcname: The name to be used by clients when invoking the RPC (for example, exec SERVER...rpcname).

  • rpcusage: The usage message that is sent to the user if there is a parameter mismatch.

  • rpcparams: Parameters necessary to invoke the RPC. Set this to NULL if no parameters are required to invoke the RPC.

    The “rpcparams" field uses the “RPC_PARAM" datatype to specify the parameters used by the RPC.

  • rpchandler: Pointer to a function to be called when the RPC is received by the library to handle the request. The function will have to accept a pointer to an SRV_PROC structure which contains information describing the server process.

  • min_params: The minimum number of parameters required by the RPC before it is executed.

  • max_params: The maximum number of parameters that can be accepted by the RPC before it is executed.

    The “min_params" and “max_params" fields are determined at run-time by the API when it scans the parameter table.

RPC_PARAM abstract data type

This structure defines the parameters for an RPC.

When an RPC is created using the datatype “RPC", you can specify an optional table of RPC parameters. This optional table contains a list of this datatype. Specify the end of the table by setting the paramname member to END_PARAM_TABLE.

Any new code should use the CM_RPC_PARAM data type instead of this datatype.

For more information, refer to datatype “RPC".

This structure is used to defined tables and should not be used as a general purpose data structure.

Syntax:

typedef struct {
char *paramname;
CS_BOOL null_allowed;
CS_BOOL optional;
int paramtype1;
int paramtype2;
int paramtype3;
RPC_PARAM;

Members:

  • paramname: Parameter name in the form @name. To mark the end of table, set this parameter to END_PARAM_TABLE.

  • null_allowed: A boolean field. Specifies whether the parameter allows null values.

  • optional: A boolean field. Specifies whether or not the parameter can be omitted when the RPC is called. In this case, the processing function for the RPC is generating a default value.

  • paramtype<n>: These fields specify different parameter types (maximum of three) that are valid for the parameter. The types that can be specified, including CS_CHAR_TYPE, CS_SMALLINT_TYPE, CS_INT_TYPE, etc.

USEREVENT abstract data type

This structure defines user events and the appropriate event handler. To define events, you need to define a table of this structure. To mark the end of the table, set the event field to NULL. The function ASC_define_events() is used to define user events to be handled by the server.

Syntax:

typedef struct {
int *event;
char *name;
CS_RETCODE (*event_handler)(SRV_PROC *srvproc);
USEREVENT;

Members:

  • event: Pointer to the integer that is used to identify the user-defined event in the server. To mark the end of the table, set this field to NULL.

  • name: The name of the event. This is useful for diagnostics and logs to show the current server event by name.

  • event_handler: Pointer to the function that is called to handle the event when it occurs in the server.

Client library interface

The client application API enables the Control Server to manage a client application. The client application logic must be written as part of the appl_initialize() function found in the Common Interface API.

A second client library, libclient_external, is also provided. Use libclient_external for client applications that require a separate main() function.

The functions in the client application library are:

  • Global variable and termination functions

  • Inline functions

  • Client application library functions

Global variable

The following global variable is defined by the Client API:

  • SQLSrvName: The name of the SQL Server.

Termination-related functions

The API functions related to application termination allow application-specific cleanup as part of client application termination.

Inline function

The following inline function is defined by the Client API:

  • SQL Server name: Terminates the client application.

Client application library functions

The following is a client application library function.

appl_cleanup

This API function allows the client application to perform application-specific cleanup during the termination of the application.

See also appl_initialize() in the Common Interface API.

Syntax:

void appl_cleanup(void)

Interpreter library

The Interpreter API is used to execute State Tables in ASAP. Within a server, you can define custom State Table actions to enhance the standard State Table language. The functionality described in this section is provided by the API library, libinterpret.

For servers where there are no network elements, you need to define pseudo-network elements with pseudo network element technologies and software generics. For example, when the Interpreter is used in an SRP, the network element host is typically called the name of the SRP, for instance, CISSRP, where the technology is CIS and the software generic 1.0.

With the functions described in this chapter you can perform:

  • Interpreter initialization

  • Action handling

Inline functions

The inline functions and macros specified in this section are used within a State Table action handler. The State Table action handler must be defined with its input argument called data.

  • ASDL_CMD: Identifies the current ASDL command being processed by the Interpreter.

  • CMD_DBG_INFO: This macro is used to determine whether the debugger is active for the Interpreter. This macro functions as follows: if (CMD_DBG_INFO != NULL) { ... Debugger Active ...}

  • CMD_DIAG: This macro is used to log diagnostic messages from the State Table action handlers. The macro should be used instead of ASC_diag calls. If the State Table debugger is active, the messages are sent to both the diagnostics file for the server and the trace file for the debugger. If not, the messages are sent to the diagnostics file.

  • CMD_USERID: Identifies the user who initiated the work order when the Interpreter is used in an NEP.

  • CMD_WO_ID: Identifies the ASAP work order identifier that the ASDL command belongs to when the interpreter is used in an NEP.

  • CUR_ACT_INT: Specifies the current action integer to be used by the Interpreter's action handler.

  • CUR_ACT_RECORD: Identifies the action record being used to process the current State Table action.

  • CUR_ACT_STRING: Specifies the current action string to be used by the Interpreter's action handler.

  • CUR_ACTION: Specifies the current State Table action being handled by the Interpreter.

  • CUR_LINE: Specifies the current State Table program line number being executed by the Interpreter.

  • GEN_RESPONSE_FILE ( ): Generates the UNIX filename to be used to store the switch response.

  • HOST_CLLI: Identifies the network element host associated with the Interpreter.

  • PROGRAM_COUNTER: Specifies the current program counter of the Interpreter. The State Table action handler changes this value before returning the control to the Interpreter.

  • RESPONSE_FILE: Identifies the UNIX file that is used by the command processor for storing the switch response to a network element command. This is only meaningful when used in an NEP.

  • SFTWR_LOAD: Identifies the software version of the network element.

  • SRQ_ID: Specifies the service request identifier associated with the ASDL when the Interpreter is used in a NEP.

  • TECH: Identifies the technology of the network element (for instance, DMS).

Interpreter library functions

This section describes the functions in the Interpreter Library.

ASC_alloc_Interpreter

This function allocates and initializes an Interpreter data segment and sets it up to be used by an application that is not the command processor.

Syntax:

CMD_PROC_DATA *ASC_alloc_Interpreter(CS_CHAR *host_clli, 
CMD_PROC_MSG *msg, 
PORT_BIND_ST *port)

Arguments:

  • host_clli: Determines the technology and software version.

  • msg: Pointer to the command processor message. Can be null.

  • port: Pointer to the Port Bind structure. Can be null.

Return values:

  • CMD_PROC_DATA*: Pointer to the Interpreter data segment.

  • NULL: An error occurred.

ASC_delete_int_var

This function deletes the Interpreter variable you specify.

This is an inline function.

Syntax:

CS_RETCODE ASC_delete_int_var(CMD_PROC_DATA *data, 
char *label)

Arguments:

  • data: Pointer to the Interpreter data segment.

  • label: Interpreter variable label.

ASC_free_Interpreter

This function releases the memory associated with the Interpreter data segment.

Syntax:

void ASC_free_Interpreter(CMD_PROC_DATA *data)

Arguments:

  • data: Interpreter data segment.

ASC_get_dev_sess_data

This function gets the device session information structure from the Interpreter.

This is an inline function.

See also ASC_set_dev_sess_data.

Syntax:

VOIDPTR ASC_get_dev_sess_data(COMM_DATA_ST *comm_data)

Arguments:

  • comm_data: Pointer to the communication data structure within the Interpreter data segment.

Return values:

  • dev_sess_data: Pointer to the device-specific information data structure.

ASC_get_int_appl_data

This function retrieves the application data segment for the Interpreter.

This is an inline function.

Syntax:

VOIDPTR ASC_get_int_appl_data(CMD_PROC_DATA *data)

Arguments:

  • data: Pointer to the Interpreter data segment.

Return values:

  • VOIDPTR: Application data segment in use for the Interpreter.

ASC_get_int_var

This function retrieves the value for the Interpreter variable you specify.

This is an inline function.

Syntax:

CS_RETCODE ASC_get_int_var(CMD_PROC_DATA *data, 
char *label, 
char *value)

Arguments:

  • data: Pointer to the Interpreter data segment.

  • label: Interpreter variable label.

  • value: Variable to save the value in.

Return values:

  • CS_SUCCEED: Interpreter variable retrieval was successful.

  • CS_FAIL: The retrieval failed.

ASC_init_Interpreter

This function initializes the Interpreter subsystem within a server. This initialization includes starting the cache manager, initializing the regular expression system, initializing the database process pool, etc.

The Interpreter can only be initialized once per process. Subsequent calls to ASC_init_Interpreter() are ignored.

Syntax:

void ASC_init_Interpreter(CS_CHAR *debug_host, 
DEBUG_CONFIGURATION_ST *dbg_cfg)

Arguments:

  • debug_host: String that specifies the host CLLI that is used for debugging. It is currently not required.

  • dbg_cfg: Field that specifies the debug configuration structure for the server. For servers that use an Interpreter other than an NEP, it is set to NULL.

ASC_Interpreter

This function sets up the appropriate data fields in the Interpreter data segment and calls the main Interpreter function to execute the State Table.

Syntax:

CS_RETCODE ASC_Interpreter(CMD_PROC_DATA *data, 
CS_CHAR *asdl_cmd, 
CS_BOOL auto_free) 

Arguments:

  • data: Command processor data segment.

  • asdl_cmd: ASDL command to be executed. The ASDL command is directly related to technology and software load, and this determines the State Table (as defined in tbl_nep_asdl_prog).

  • auto_free: Boolean flag. Indicates if the Interpreter parameters are automatically made available upon completing the ASDL command.

Return values:

  • CS_SUCCEED: State Table execution for the ASDL command was successful.

  • CS_FAIL: State Table execution failed for the ASDL command.

ASC_set_dev_sess_data

This function sets the device session information structure for the Interpreter.

This is an inline function.

See also ASC_get_dev_sess_data.

Syntax:

void ASC_set_dev_sess_data (CMD_PROC_DATA *data, 
VOIDPTR *dev_sess_data)

Arguments:

  • data: Pointer to the Interpreter data segment.

  • dev_sess_data: Void pointer to a device-specific information structure.

ASC_set_int_appl_data

This function sets the application data segment for the Interpreter.

This is an inline function.

Syntax:

void ASC_set_int_appl_data(CMD_PROC_DATA *data, 
VOIDPTR *appl_seg)

Arguments:

  • data: Pointer to the Interpreter data segment.

  • appl_seg: Pointer to a user-defined application data segment.

ASC_store_int_var

This function saves the Interpreter variable in the Interpreter application data segment.

Syntax:

CS_RETCODE ASC_store_int_var(CMD_PROC_DATA *data, 
char *label, 
char *value)

Arguments:

  • data: Pointer to the Interpreter data segment.

  • label: Interpreter variable label.

  • value: Variable to save the value in.

Return values:

  • CS_SUCCEED: The variable was saved in the Interpreter application data segment successfully.

  • CS_FAIL: The save failed.

CMD_delete_var

This function deletes a variable in the Interpreter data segment.

Syntax:

CS_RETCODE CMD_delete_var(CMD_PROC_DATA *data, 
char *label)

Arguments:

  • data: Pointer to the Interpreter data segment.

  • label: Interpreter variable label.

Return values:

  • CS_SUCCEED: The variable was deleted successfully in the Interpreter data segment.

  • CS_FAIL: The deletion failed.

CMD_expand_action_string

This function copies the current action string into the buffer you specify and performs variable substitution.

Syntax:

CS_RETCODE CMD_expand_action_string(CMD_PROC_DATA *data, 
char *buf)

Arguments:

  • data: Pointer to the local data segment for the command processor.

  • buf: Pointer to the buffer that holds the expanded action string.

Return values:

  • CS_SUCCEED: Successfully expanded the action string to the specified buffer.

  • CS_FAIL: Could not expand the action string.

CMD_free_assignment

This function releases the memory for a specified assignment buffer that has been allocated using the CMD_get_assignment function.

Syntax:

void CMD_free_assignment(CMD_ASSIGNMENT_BUF *buf)

Arguments:

  • buf: Pointer to the assignment buffer to be freed.

CMD_free_bvar_assignment

This function releases the memory for an assignment buffer that has been allocated using the CMD_get_bvar_assignment function.

See also CMD_get_bvar_assignment.

Syntax:

void CMD_free_bvar_assignment(CMD_BVAR_ASSIGNMENT_BUF *buf)

Arguments:

  • buf: Pointer to the assignment buffer to be freed.

CMD_free_dbproc

This function frees the database process.

Syntax:

void CMD_free_dbproc(DBPROCESS *dbproc)

Arguments:

  • dbproc: Pointer to the DBPROCESS.

CMD_get_assignment

This function allocates an assignment buffer, parses the current action string, and stores the results in the buffer of a linked list. The primary difference between this function and the CMD_parse_assignment is that, with this function, the number of arguments is unlimited. If an error is detected, NULL is returned.

Variable substitution is performed when you specify variables in the action string. The format of the action string is as follows:

<arg>::=constant/%var
%var::=<arg1>:<arg2>:..:<argN>

It is the caller's responsibility to free the allocated buffer (which is a linked list) by calling CMD_free_assignment after processing is done.

Syntax:

CMD_ASSIGNMENT_BUF *CMD_get_assignment (CMD_PROC_DATA *data)

Arguments:

  • data: Pointer to Interpreter data segment.

Return values:

  • Pointer to assignment buffer: Pointer to the retrieved assignment buffer.

CMD_get_bvar

This function scans the variable table for the variable you specify and then returns the appropriate value and status.

Syntax:

CS_RETCODE CMD_get_bvar(CMD_PROC_DATA *data, 
CS_CHAR *label, 
CS_VOID **value, 
CS_INT *len, 
CS_VOID **template)

Arguments:

  • data: Pointer to the local data segment for the command processor.

  • label: Field that specifies the name of the binary variable.

  • value: Indirect pointer to the data buffer in which the binary value is saved (return parameter).

  • len: Integer pointer to save length of the buffer (return parameter).

  • template: Indirect pointer to the binary data template structure. If used, it describes the fields and structure of the binary variable (return parameter).

Return values:

  • CS_SUCCEED: The variable is defined and its value has been stored in the destination specified.

  • CS_FAIL: The variable does not exist or it is not a binary variable.

CMD_get_bvar_assignment

This function allocates an assignment buffer, parses the current action string, and stores the results in the buffer of a linked list. A difference between this function and the CMD_get_assignment is that, with this function, the linked list node can hold binary data.

Variable substitution is performed when you specify variables in the action string. The format of the action string is as follows:

<arg>::=constant/ASCII variable/Binary variable
%var::=<arg1>:<arg2>:..:<argN>

It is the caller's responsibility to free the allocated buffer (which is a linked list) by calling CMD_free_bvar_assignment after processing is done.

Syntax:

CMD_BVAR_ASSIGNMENT_BUF *CMD_get_bvar_assignment(CMD_PROC_DATA *data)

Arguments:

  • data: Pointer to Interpreter data segment.

Return values:

  • Assignment buffer: Pointer to assignment buffer.

CMD_get_var

This function scans the variable table for the ASCII variable you specify and then returns the value and status.

See also "CMD_store_var."

Syntax:

CS_RETCODE CMD_get_var(CMD_PROC_DATA *data, 
char *label, 
char *value)

Arguments:

  • data: Pointer to the local data segment for the command processor.

  • label: Name of the variable.

  • value: Buffer where the value of the variable is to be stored.

Return values:

  • CS_SUCCEED: The variable is defined and its value has been stored in the destination specified.

  • CS_FAIL: The variable does not exist or is not an ASCII variable.

CMD_lock_regexpr

This function locks the mutex associated with regular expression management.

See also "CMD_unlock_regexpr."

Syntax:

void CMD_lock_regexpr(void)
CMD_parse_assignment

This function is superseded by CMD_get_assignment() which has no limit on the number of arguments.

This function scans the current action string to locate the destination variable and the three arguments for the action function. The format for the action string is as follows:

%var ::=<arg1>:<arg2>:<arg3>
where <arg> is a variable <%var> or a value (for example, %x=%y:10:%z)

Syntax:

CS_RETCODE CMD_parse_assignment(CMD_PROC_DATA *data, 
PARSE_BUF *buf)

Arguments:

  • data: Pointer to the local data segment for the command processor.

  • parse_buf: Pointer to a parse buffer.

Return values:

  • CS_SUCCEED: Parse of the string was successful.

  • CS_FAIL: Parse of the string failed.

CMD_store_bvar

This function stores information about a binary ASDL program variable in the command processor or program variable table or updates the variable if it already exists in the table.

See also "CMD_get_bvar."

Syntax:

CS_RETCODE CMD_store_bvar(CMD_PROC_DATA *data, 
CS_CHAR *label, 
CS_VOID *value, 
CS_INT len, 
CS_VOID * void (*template_destructor)(CS_VOID *template))

Arguments:

  • data: Pointer to the local data segment for the command processor.

  • label: Name of the binary variable.

  • value: Void pointer to the data buffer in which the binary value is saved.

  • len: Length of the buffer.

  • template: Pointer to the binary data template structure. If used, it describes the fields and structure of the binary variable.

  • template_destructor: Pointer to the destructor function to be called to deallocate the template. If it is not required, set it to NULL.

Return values:

  • CS_SUCCEED: The variable was successfully stored or updated in the variable table.

  • CS_FAIL: The variable was not stored in the variable table.

CMD_store_var

This function stores an ASCII ASDL program variable in the command processor or program variable table. If the program variable already exists in the table, this function updates it.

See also "CMD_get_var."

Syntax:

CS_RETCODE CMD_store_var(CMD_PROC_DATA *data, 
char *label, 
char *value)

Arguments:

  • data: Pointer to the local data segment for the command processor.

  • label: Name of the variable.

  • value: Value of the variable.

Return values:

  • CS_SUCCEED: The variable was successfully stored or updated in the variable table.

  • CS_FAIL: The variable was not stored in the variable table.

CMD_store_zero_pad_var

This function stores an ASCII ASDL program variable in the command processor or program variable table. If the program variable already exists in the table, this function updates it. In addition, this function formats the variable based on the maximum field length, padding the field with leading zeroes. If the string length is greater than the total field length specified, the truncated value is saved in the variable.

See also "CMD_get_var."

Syntax:

CS_RETCODE CMD_store_zero_pad_var(CMD_PROC_DATA *data, 
char *label, 
char *value, 
CS_INT total_field_len zero_pad)

Arguments:

  • data: Pointer to the local data segment for the command processor.

  • label: Name of the variable.

  • value: Value of the variable.

  • zero_pad: Maximum field length to be used when formatting this numerical field.

Return values:

  • CS_SUCCEED: The variable was successfully stored or updated in the variable table.

  • CS_FAIL: The variable was not stored in the variable table.

CMD_unlock_regexpr

This function unlocks the mutex associated with regular expression management.

See also "CMD_lock_regexpr."

Syntax:

void CMD_unlock_regexpr(void)
CMD_user_actions

This function adds an action to the action table in the main Interpreter State Table action tree. If the action already exists, the new action overrides the existing action.

Syntax:

CS_RETCODE CMD_user_actions(ACTION_RECORD *action_tbl)

Arguments:

  • action_tbl: User action table. Must be terminated with the last entry having an action equal to NULL.

Return values:

  • CS_SUCCEED: User-specific State Table action successfully added.

  • CS_FAIL: User actions could not be installed into the Interpreter action table.

Control configuration interface

This section describes the functions for the Control subsystem.

The Control subsystem supports static table configuration. Use functions instead of SQL insert scripts to interface with the static configuration database tables.

The function-based interface reduces the dependency between administrators who configure the system and product developers who need to make changes to the static tables to support new functionality.

Note:

If you invoke an CSP_del_* function without parameters, all rows in the table are deleted.

If you invoke the CSP_list_* functions without parameters, all rows are listed.

Interface definitions

This section lists the syntax, descriptions, parameters, and results for Control configuration actions.

CSP_db_admin

This function purges all performance data that have been stored for more than a specified number of days. The default value of a_days is 3 days if it is not provided.

For more information about using functions, see "Oracle Execution Examples."

Affected tables:

  • tbl_alarm_log

  • tbl_event_log

  • tbl_process_info

Table 3-2 CSP_db_admin Parameters

Name Description Req'd (I)nput/(O)utput

days

Specifies the age (in days) of log data to delete. All data older than the specified number of days is deleted.

Yes

I

CSP_del_alarm

This function deletes a system alarm code from tbl_system_alarm.

For more information about using functions, see "Oracle Execution Examples."

Table 3-3 CSP_del_alarm Parameters

Name Description Req'd (I)nput/(O)utput

alarm_code

System alarm code identifier.

No

I

CSP_del_appl

This function deletes ASAP application registration information from the Control database (tbl_appl_proc).

For more information about using functions, see "Oracle Execution Examples."

Table 3-4 CSP_del_appl Parameters

Name Description Req'd (I)nput/(O)utput

appl_cd

Logical name of the ASAP application server.

No

I

CSP_del_center

This function deletes an alarm center definition from the control database (tbl_alarm_center).

For more information about using functions, see "Oracle Execution Examples."

Table 3-5 CSP_del_center Parameters

Name Description Req'd (I)nput/(O)utput

alarm_center

The alarm center to be deleted.

No

I

CSP_del_code

This function deletes an administration system code from the database (tbl_code_list).

For more information about using functions, see "Oracle Execution Examples."

Table 3-6 CSP_del_code Parameters

Name Description Req'd (I)nput/(O)utput

code_type

Type of code. For example: “DB": database script related entry.

No

I

code

The code.

No

I

value

Value of the code.

No

I

CSP_del_component

This function deletes an ASAP component from tbl_component.

For more information about using functions, see "Oracle Execution Examples."

Table 3-7 CSP_del_component Parameters

Name Description Req'd (I)nput/(O)utput

territory

The ASAP territory.

No

I

system

The ASAP system.

No

I

component

The ASAP component.

No

I

CSP_del_db_thresh

This function deletes a database threshold definition from tbl_db_threshold.

For more information about using functions, see "Oracle Execution Examples."

Table 3-8 CSP_del_db_thresh Parameters

Name Description Req'd (I)nput/(O)utput

asap_sys

The ASAP environment (“TEST", “PROD", etc.).

No

I

db_name

The database name.

No

I

CSP_del_event

This function deletes an ASAP event type from the database (tbl_event_type).

For more information about using functions, see "Oracle Execution Examples."

Table 3-9 CSP_del_event Parameters

Name Description Req'd (I)nput/(O)utput

event_type

The event type. For example, “ABNORMAL", “SYS_ERR", etc.

No

I

CSP_del_fs_thresh

This function deletes a file system threshold definition from tbl_fs_threshold.

For more information about using functions, see "Oracle Execution Examples."

Table 3-10 CSP_del_fs_thresh Parameters

Name Description Req'd (I)nput/(O)utput

asap_sys

The ASAP environment (TEST, PROD, etc.).

No

I

file_system

The UNIX file system for which the threshold definition is to be deleted.

No

I

CSP_del_listener

This function deletes a listener entry from tbl_listeners.

For more information about using functions, see "Oracle Execution Examples."

Table 3-11 CSP_del_listeners Parameters

Name Description Req'd (I)nput/(O)utput

srv_name

Name of the server that starts a socket listener. The SARM must start a socket listener to receive incoming Java SRP requests.

For a Java-enabled NEP, this is the name of the NEP ($NEP).

For the Java SRP, this column contains the SARM name.

Yes

I

listener_name

The name of the listener thread.

For a Java-enabled NEP, the listener name describes the listener in the Java process that accepts interpreter requests from the C process. This listener name must always be $NEP_jlistener.

For the Java SRP, observe the naming convention of “<Java SRP application name>_jsrplistener". This column is used by the Java SRP to retrieve the listener configurations.

Yes

I

CSP_del_nvp

This function deletes a name/value pair from the database (tbl_name_value_pair).

For more information about using functions, see "Oracle Execution Examples."

Table 3-12 CSP_del_nvp Parameters

Name Description Req'd (I)nput/(O)utput

name

Name of the name/value pair.

No

I

CSP_get_listener

This function lists listener entries associated with an NEP (tbl_listeners).

For more information about using functions, see "Oracle Execution Examples."

Table 3-13 CSP_get_listener Parameters

Name Description Req'd (I)nput/(O)utput

srv_name

Name of the server that starts a socket listener. The SARM must start a socket listener to receive incoming Java SRP requests.

For a Java-enabled NEP, this is the name of the NEP ($NEP).

For the Java SRP, this column contains the SARM name.

Yes

I

CSP_list_alarm

This function lists system alarms contained in tbl_system_alarm.

For more information about using functions, see "Oracle Execution Examples."

Table 3-14 CSP_list_alarm Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

alarm_code

System alarm code.

No

I

Table 3-15 CSP_list_alarm Results

Name Datatype Description

alarm_code

TYP_code

The alarm code.

description

TYP_desc

Brief description of the system alarm.

alarm_level

TYP_alarm_level

Level of the alarm.

escalation_code

TYP_code

Escalation code of the alarm.

escalation_time

TYP_time

Escalation time.

auto_clear

TYP_yes_no

Determines whether the alarm must be automatically cleared.

route#_period

TYP_short

Interval in minutes for the alarm to be sent to the alarm center.

# can be a number between 1 and 5 to designate up to five routings.

route#_start

TYP_time

Daily start time in minutes after midnight.

# can be a number between 1 and 5 to designate up to five routings.

route#_end

TYP_time

Daily end time in minutes after midnight.

# can be a number between 1 and 5 to designate up to five routings.

route#_center

TYP_code

Alarm center to route alarm to.

# can be a number between 1 and 5 to designate up to five routings.

CSP_list_appl

This function lists ASAP application registration information for the specified appl_cd or all applications from the Control database (tbl_appl_proc).

For more information about using functions, see "Oracle Execution Examples."

Table 3-16 CSP_list_appl Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

appl_cd

The logical name of the ASAP application server.

No

I

Table 3-17 CSP_list_appl Results

Name Datatype Description

start_seq

TYP_start_seq

Controls the sequence in which the applications are started. For example, certain client applications may be required to start before server applications, and other client applications after the server applications.

appl_type

TYP_appl_type

Specifies whether the ASAP application is an application server or a client application. Specify:

  • S – For server

  • C – For client

  • M – For master control server

  • R – For remote slave control server

appl_cd

TYP_code

ASAP logical client/server name, for example, SARM, NEP01, NEP02.

control_svr

TYP_code

The logical ASAP application control server that spawns this application and monitors its behavior.

description

TYP_desc

Brief description of the ASAP application.

diag_file

TYP_unix_file

The name of the diagnostics logfile to which diagnostic messages are written. This file is created in the $LOGDIR directory under a dated directory, for example, in the $LOGDIR/yymmdd format.

auto_start

TYP_yesno

An autostart flag that determines if the application is to be started automatically when ASAP starts.

program

varchar(40)

The name of the UNIX program that executes to start the ASAP application. The UNIX program must reside in the $PROGRAMS directory and be executable.

diag_level

TYP_diag_level

The diagnostic level of the ASAP application. The diagnostic level is used to determine whether or not to log diagnostic information based on the diagnostic level of the ASC_diag() API function call.

isactive

TYP_yesno

A yes/no flag denoting whether the ASAP server is currently active.

last_start

datetime

The last start date and time of the ASAP server.

last_halt

datetime

The last halt or terminate date and time of the ASAP server.

last_abnormal

datetime

The last abnormal termination of the Control server.

svr_type

varchar(8)

This field defines the type of server.

CSP_list_center

This function lists alarm center definitions from the control database (tbl_alarm_center).

For more information about using functions, see "Oracle Execution Examples."

Table 3-18 CSP_list_center Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

alarm_center

The alarm center to be deleted.

No

I

Table 3-19 CSP_list_center Results

Name Datatype Description

alarm_center

TYP_code

The unique code representing the alarm center.

control_prog

TYP_unix_file

The program to be executed to communicate the alarm to the alarm center.

description

TYP_desc

Brief description of the alarm center.

opt#_type

TYP_option

First option to the control program, where # represents a value between 1 and 5.

opt#_value

TYP_opt_value

Argument to the first option, where # represents a value between 1 and 5.

CSP_list_code

This function lists Administration System code(s) from tbl_code_list.

If you invoke the function without any parameters, all rows in the table are listed.

For more information about using functions, see "Oracle Execution Examples."

Table 3-20 CSP_list_code Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

code_type

Type of code. For example, DB for a database script related entry.

No

I

code

The code entry.

No

I

value

Value of the code.

No

I

Table 3-21 CSP_list_code Results

Name Datatype Description

code_type

TYP_code_type

Type of code.

code

TYP_code_text

Type of code.

value

TYP_code_value

Parameter value associated with the label.

code_desc

TYP_desc

Brief description of the code.

parm#

TYP_code_parm

General purpose parameter, where # represents a value between 1 and 4.

CSP_list_component

This function lists ASAP components contained in tbl_component.

If you invoke the function without any parameters, all rows in the table are listed.

For more information about using functions, see "Oracle Execution Examples."

Table 3-22 CSP_list_component Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

territory

Identifies the ASAP territory.

No

I

system

Identifies the ASAP system.

No

I

component

Identifies the ASAP component.

No

I

Table 3-23 CSP_list_component Results

Name Datatype Description

territory

varchar(20)

ASAP territory.

system

varchar(20)

ASAP system.

component

varchar(40)

ASAP component.

CSP_list_db_thresh

This function lists database threshold definition(s) contained in tbl_db_threshold.

If you invoke the function without any parameters, all rows in the table are listed.

For more information about using functions, see "Oracle Execution Examples."

Table 3-24 CSP_list_db_thresh Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

asap_sys

The ASAP environment (for example, TEST, PROD etc.)

No

I

db_name

Database name.

No

I

Table 3-25 CSP_list_db_thresh Results

Name Datatype Description

asap_sys

TYP_code

ASAP environment.

db_name

varchar(80) TYP_desc

Database name.

data_threshold

int

Database threshold, in Mb.

tran_threshold

int

Transaction log threshold.

data_event

TYP_code

Event issued if the database threshold is exceeded.

tran_event

TYP_code

Event to be issued if the transaction log threshold is exceeded.

CSP_list_event

This function lists ASAP event definitions contained in tbl_event_type.

If you invoke the function without any parameters, all rows in the table are listed.

For more information about using functions, see "Oracle Execution Examples."

Table 3-26 CSP_list_event Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

event_type

Event type. For example, the core uses some of the following event types: ABNORMAL, SYS_ERR, etc.

No

I

Table 3-27 CSP_list_event Results

Name Datatype Description

event_type

TYP_event

The event type. The core module includes some of the following event types: ABNORMAL, SYS_ERR, etc.

description

varchar(40) TYP_desc

Brief description of the event.

alarm_code

TYP_code

The alarm code associated with the event.

alarm_action

TYP_alarm_action

Specifies whether the alarm is enabled or disabled.

CSP_list_fs_thresh

This function lists file system threshold definitions contained in tbl_fs_threshold.

If you invoke the function without any parameters, all rows in the table are listed.

For more information about using functions, see "Oracle Execution Examples."

Table 3-28 CSP_list_fs_thresh Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

asap_sys

The ASAP environment (TEST, PROD, etc.).

No

I

file_system

The UNIX file system for which the threshold definition is to be deleted.

No

I

Table 3-29 CSP_list_fs_thresh Results

Name Datatype Description

asap_sys

TYP_code

The ASAP environment.

file_system

varchar(100) TYP_desc

File system name.

full_threshold

int

File system full threshold.

full_event

TYP_code

Event to be generated if the full threshold is exceeded.

CSP_list_nvp

This function lists name/value pairs from the database (tbl_name_value_pair).

If you invoke the function without any parameters, all rows in the table are deleted.

For more information about using functions, see "Oracle Execution Examples."

Table 3-30 CSP_list_nvp Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

name

Name of the name-value pair.

No

I

Table 3-31 CSP_list_nvp Results

Name Datatype Description

name

varchar(40)

Name of the parameter.

value

int

Parameter value associated with the label.

CSP_new_alarm

This function defines a system alarm which may be generated by ASAP system events. This includes the start time, interval, and end time for the alarm.

This function populates tbl_system_alarm.

Example:

The following example creates an alarm for the abnormal termination of an application process to the ADMINPGR center that is continuous on a five minute period any time of the day, type the following:

var retval number;
exec :retval := CSP_new_alarm ('ABNORMAL', 'Abnormal process termination', 'CRITICAL', '',NULL, 'N', 5, 0, 1440, 'ADMINPGR');

print retval;

For more information about using functions, see "Oracle Execution Examples."

Table 3-32 CSP_new_alarm Parameters

Name Description Req'd (I)nput/(O)utput

RC1

Oracle Database Ref Cursor.

Yes

I/O

alarm_code

System alarm code.

Yes

I

description

Brief description of the system alarm.

Yes

I

alarm_level

The level of the alarm, for example, MAJOR, MINOR, CRITICAL.

Yes

I

escalation_code

The escalation code for the alarm if the alarm is not corrected within the escalation time (defined next).

Yes

I

escalation_time

Time after the alarm was raised that the escalation of the alarm must take place.

Yes

I

auto_clear

Flag that determines if the alarm should be automatically cleared upon generation.

Yes

I

route#_period

Interval in minutes for the alarm to be sent to the alarm center, where # represents a value between 1 and 5.

Yes (if # = 1), No (if # = 2 to 5)

I

route#_start

The daily start time in minutes since midnight for alarms to go to this alarm center, where # represents a value between 1 and 5.

Yes (if # = 1), No (if # = 2 to 5)

I

route#_end

The daily end time in minutes since midnight, where # represents a value between 1 and 5.

Yes (if # = 1), No (if # = 2 to 5)

I

route#_center

Alarm center to route alarm to, where # represents a value between 1 and 5.

Yes (if # = 1), No (if # = 2 to 5)

I

CSP_new_appl

This function defines a new ASAP client or server application in tbl_appl_proc.

For more information about using functions, see "Oracle Execution Examples."

Table 3-33 CSP_new_appl Parameters

Name Description Req'd (I)nput/(O)utput

start_seq

Specifies the ASAP startup sequence. This determines the sequence in which applications are started.

Yes

I

appl_type

Specifies the ASAP application server:

  • S – For server

  • C – For client

  • M – For master control server

  • R – For remote slave control server

Yes

I

appl_cd

The logical ASAP application code, for example, SARM, NEP01, NEP02.

Yes

I

control_svr

Logical ASAP Control server.

Yes

I

auto_start

An autostart flag.

Yes

I

program

The name of the UNIX program to execute to start the ASAP application.

Yes

I

diag_level

The diagnostic level of the ASAP application. This is used to determine whether or not to log certain diagnostic information based on the diagnostic level of the ASC_diag() API function call. See the associated rule for possible values.

Yes

I

diag_file

The name of the diagnostics file in which diagnostic messages are to be placed. This file is created in the $LOGDIR directory under a dated directory, for example, using the $LOGDIR/yymmdd format.

Yes

I

description

A description of the ASAP application.

Yes

I

svr_type

ASAP server type. Possible values include:

  • CTRL – Control server

  • MASTER – Master Control server (must be only one per system)

  • SARM – SARM server

  • SRP – SRP server

  • NEP – NEP server

  • OTHER

No

I

Example:

To configure ASAP to manage and monitor this processes, enter the following commands. This example assumes this processes is executed automatically at startup and the Low level diagnostics are active.

var retval number;
exec :retval := CSP_new_appl (4, 'S', 'NEPAXE', 'CONTROL2','Y', 'LOW', 'NEPAXE.diag', 'NEP for AXE Switches')

Once the control servers are started on their respective machines, you can start and shut down the application processes automatically from the master system.

CSP_new_center

This function defines an alarm center to which alarm notifications are sent by the Control server. This function populates tbl_alarm_center.

Syntax:

var retval number;
exec :retval :=  CSP_new_center ('alarm_center', 'control_prog', ['description'], ...);

Example:

In the following example, admin.sh is the ADMIN center and adminpg is the ADMINPGR center. You must place the final versions of these programs in the ASAP programs directory and identify them using the environment variable $PROGRAMS.

var retval number;
exec :retval :=  CSP_new_center ('ADMIN', 'admin.sh', 'General Admin. Center');

For more information about using functions, see "Oracle Execution Examples."

Table 3-34 CSP_new_center Parameters

Name Description Req'd (I)nput/(O)utput

alarm_center

A unique code representing the alarm center.

Yes

I

control_prog

The program to be executed to communicate the alarm to the alarm center.

Yes

I

description

A brief description of the alarm center or control program.

No

I

opt#_type

Option name to be passed to the control program, where # represents a value between 1 and 5.

No

I

opt#_value

Value of the option, where # represents a value between 1 and 5.

No

I

CSP_new_code

This function populates tbl_code_list with core or custom code used by ASAP. For instance, this function to identify codes that track the cartridges deployed within ASAP.

For more information about using functions, see "Oracle Execution Examples."

Table 3-35 CSP_new_code Parameters

Name Description Req'd (I)nput/(O)utput

code_type

Type of code. For example, DB for database script related entry.

Yes

I

code

The code.

Yes

I

value

Value of the code.

Yes

I

code_desc

Brief description of the code.

No

I

parm#

General purpose parameter, where # can be a number between 1 and 4.

No

I

CSP_new_component

This function defines an ASAP component in a territory and adds it to database table tbl_component.

For more information about using functions, see "Oracle Execution Examples."

Table 3-36 CSP_new_component Parameters

Name Description Req'd (I)nput/(O)utput

territory

Identifies the ASAP territory.

Yes

I

system

Identifies the ASAP system.

Yes

I

component

Identifies an ASAP system component within a territory and system. For example, SRP, SARM, etc.

Yes

I

CSP_new_db_thresh

This function defines database and/or transaction log thresholds to be used by the Control server, and writes the information to tbl_db_threshold. The Control server monitors the database/transaction log size and issues the appropriate data event/transaction event when the threshold is exceeded.

Syntax:

var retval number;
exec :retval :=  CSP_new_db_thresh ('asap_sys', 'db_name', 'db_threshold', 'tran_threshold', 'data_event', 'tran_event')

Example:

var retval number;
exec :retval :=  CSP_new_db_thresh ('PROD', 'SDB_P01_asap', 80, 20, 'DB2FULL', 'TRANFULL';

in this example, the database threshold is set to 80 percent. If the database becomes more than 80 percent full, the DB2FULL system event is issued. This command also sets the transaction log threshold for the database. When the transaction log for the database exceeds 20 MB, the TRANFULL system event is issued.

Database thresholds must be defined in the component table.

For more information about using functions, see "Oracle Execution Examples."

Table 3-37 CSP_new_db_thresh Parameters

Name Description Req'd (I)nput/(O)utput

asap_sys

The ASAP environment (for example, TEST, PROD, etc.).

Yes

I

db_name

Database name.

Yes

I

db_threshold

Database threshold, in Mb.

Yes

I

tran_threshold

Transaction log threshold.

Yes

I

data_event

Data event.

Yes

I

tran_event

Transaction log event.

Yes

I

CSP_new_event

This function defines an “event type" within ASAP, and optionally, the associated “alarm code" that is associated with the event. System events can be generated when an error condition is encountered in ASAP. CSP_new_event populates tbl_event_type.

For more information about using functions, see "Oracle Execution Examples."

Table 3-38 CSP_new_event Parameters

Name Description Req'd (I)nput/(O)utput

event_type

Event type. For example, the core uses some of the following event types: ABNORMAL, SYS_ERR, etc.

Yes

I

description

A brief description of the ASDL command.

No

I

alarm_code

The system alarm code associated with the event. If NULL, no alarm will be generated and only the database log entry will be created.

No

I

alarm_action

Specifies the alarm action, and may specify whether the alarm is presently enabled or disabled.

No

I

notify_aims

This is not currently implemented.

Syntax:

var retval number;
exec :retval :=  CSP_new_event ('event_type', ['description'], ['alarm_code'], [“alarm_action'];

Example:

The following example shows an ABNORMAL system event mapped to the ABNORMAL alarm.

var retval number;
exec :retval :=  CSP_new_event ('ABNORMAL', 'Abnormal Process Termination Event', 'ABNORMAL', 'E';
CSP_new_fs_thresh

This function defines a file system threshold to be used by the Control server. The Control server monitors the file system size and if the threshold is exceeded, the appropriate system event is generated. File system threshold information is stored in tbl_fs_threshold.

For more information about using functions, see "Oracle Execution Examples."

CSP_new_listener

This function adds a listener entry to tbl_listeners. You must configure this table to allow the SARM to start up socket listeners for incoming SRP requests. As well, every Java-enabled NEP must maintain a dedicated connection to its JInterpreter.

For more information about using functions, see "Oracle Execution Examples."

Table 3-39 CSP_new_listener Parameters

Name Description Req'd (I)nput/(O)utput

srv_name

Name of the server that starts a socket listener. The SARM must start a socket listener to receive incoming Java SRP requests.

For a Java-enabled NEP, this is the name of the NEP ($NEP).

For the Java SRP, this column contains the SARM name.

Yes

I

host_name

The host name or the IP address on which the server application resides.

For the JInterpreter, this value must always be localhost.

For the Java SRP, the host_name identifies the location of the SARM.

Yes

I

listener_name

The name of the listener thread.

For a Java-enabled NEP, the listener name describes the listener in the Java process that accepts interpreter requests from the C process. This listener name must always be $NEP_jlistener.

For the Java SRP, observe the naming convention of “<Java SRP application name>_jsrplistener". This column is used by the Java SRP to retrieve the listener configurations.

Yes

I

port

A free port on which the server can start the socket listener.

Yes

I

CSP_new_nvp

This function defines parameters (name value pairs) that are required to maintain the control database. Typical parameters include “audit trail window", “log retention window", etc. This information is stored in tbl_name_value_pair.

For more information about using functions, see "Oracle Execution Examples."

Table 3-40 CSP_new_nvp Parameters

Name Description Req'd (I)nput/(O)utput

name

Name of the parameter.

Yes

I

value

Value of the parameter.

Yes

I

Object oriented (OO) common library

This section describes the design of an object-oriented programming interface (class library) that forms the general framework for building object-oriented multithread-safe applications.

An application framework manages initialization and cleanup when you start up and shut down the system. In addition, it provides basic facilities, including managing connections to servers, handling client and server messages, retrieving application configurations, logging diagnostic messages to appropriate files, and generating system events on server side, etc., for use within the application.

This object-oriented interface is designed to fulfill the above requirements with guaranteed multithread safety on these operations in a multithreaded environment. Using the interface in the object-oriented applications hides the detailed operations behind an interface and enforces type checking on the interface. In addition, this interface is based on a vendor-independent general multithreading package. Consequently, it provides a unified way to handle threads and synchronization regardless of the thread library being used.

The liboo_asc library includes the following classes:

  • ASC_Main – Uses all the classes listed below in the library. It establishes and initializes a default operating environment for the application and then instantiates it. It also provides a pure virtual method appl_initialize (), that is used to override the code written in the subclass. You must do the following:

    • subclass the ASC_Main class and write the application-specific code within member function appl_initialize()

    • write application specific cleanup code within appl_cleanup() if any

    • call startup() after instantiating the subclass in the core code

  • Diagnosis – Provides a facility for logging diagnostic messages. It also maintains a single service thread for dequeueing diagnostic messages from a dedicated message queue and dumping them to the diagnostic files, if required.

  • Event – Logs system events onto the database servers and diagnostic messages into the local diagnostic files. Event messages are queued on a dedicated event message queue waiting for pickup by the EventAgent.

  • EventAgent – Has only one instance per application. It maintains a service thread to dequeue event messages from the event message queue and send log_event RPCs to the appropriate control server ClientProc objects that are managed by ClntProcMgr objects.

  • ClientProc – Manages one connection to a specific server (for example, control server or database server) and sends RPCs to, and gets results back from, that server through the connection.

  • ClntProcMgr – Manages multiple ClientProc objects (for example, multiple connections to a server). You can get the required ClientProc objects from appropriate ClntProcMgr objects using getObj () method and return them using returnObj () method.

  • Config – Retrieves application configuration parameters set in the ASAP.cfg file. The first Config object instantiated from ASC_Main loads all the parameters into a binary tree, from which subsequent objects can retrieve what they need.

  • Common – Utility class containing only static methods. These methods are used by the classes above and can be used anywhere if needed.

The following sections provide detailed definitions of the C++ classes in the liboo_asc library.

ASC_Main class

This class provides all the initialization methods required by ASAP applications, and it is the mainline front-end class of ASAP API. Application programmers must derive their own subclass from this class and override the virtual method ApplInit() to provide application specific features, and then use the startup() method to start it.

The ASC_Main class has the following initialization methods:

  • Configuration parameters initialization method config_param_init. This method loads the parameters from ASAP.cfg file and places them into an SBT.

  • Sybase OpenClient library initialization method ct_init. This method does all the Sybase Open Client library related initialization actions.

  • Input arguments processor process_input. This method processes the input parameters from the command line and places them into appropriate structures and variables.

  • Signal handlers initialization methods default_signal_handlers and install_signal_handler. These methods install signal handlers and register these handlers to the Sybase Open Client library.

  • Client application environment initialization method, initialize. This method:

    • Creates default event and diagnostic message queues.

    • Instantiates the first Diagnosis object and performs the initialization required. A diagnostic service thread is created at this stage if specified in the configuration file.

    • Retrieves server-related parameters.

    • Creates a default control database server connection manager (a ClntProcMgr object) that creates and manages a specified number of ClientProc objects connecting to the control database server.

    • Creates a default master control server connection manager (a ClntProcMgr object) that creates and manages a specified number of ClientProc objects connecting to the master control server.

    • If the slave control server differs from the master control server, this initialization method creates the default slave control server connection manager (a ClntProcMgr object) that creates and manages a specified number of ClientProc objects that connect to the slave control server.

    • Instantiates an EventAgent object that creates and manages an event service thread to wait for event messages on the default event message queue.

A pure virtual method appl_initialize is provided to enable application programmers to write their own application code in their subclasses.

If application programmers want to write custom cleanup code, they must define their own appl_cleanup method to override the do nothing behavior in the default method.

Synopsis
class ASC_Main: public Config, public ASC_ThreadAppl
{
public:
ASC_Main (int argc, char *argv[]);
~ASC_Main (void);
int threadMain(void **Rtn) { return CS_SUCCEED; }; 
CS_RETCODE config_param_init (void);
CS_RETCODE ctlib_init (void);
void process_input (void);
CS_RETCODE initialize (void);
void default_signal_handlers (void);
CS_RETCODE install_signal_handler (CS_INT signum, CS_VOID * func);
virtual CS_RETCODE appl_initialize (void) = 0;
virtual void appl_cleanup (void) {};
void startup(void);
protected:
int m_argc_;
// Local copy of main()'s argc.
char **m_argv_;
// Local copy of main()'s argv;
DIAG_CONFIG m_diag_cfg;
// Initialization structure use by class Diagnosis
// static Diagnosis *m_diag;
// Original diag object pointer.
EventAgent * m_event_ea_;
// EventAgent service thread object pointer.
char m_SQLSrvName[80];
// Physical SQL Server for the Control DB.
char m_MasterCtrlSvr[80];
// Logical Master Control Server.
static CS_CONTEXT *m_client_context_;
// Context of the client process.
// The following routines are Unix signal handlers.
// They are installed by Sybase's ct_callback() 
// routine in default_signal_handlers() method.
// They can also be used as other signal's handler 
// which should be installed separately by
// install_signal_handler() method.
static void terminate_signal(int sig);
static void core_dump_signal(int sig);
static void child_terminate(int sig);
static void ignore_signal(int sig);
static void terminate_pgm(void);
// routine used by signal handlers.
static ASC_Main *m_this_ptr;
// copy of this pointer. 
};
Constructors
ASC_Main (int argc, char *argv[]);

This constructor uses all the initialization methods to establish the required client application environment. If the ASC_Main object instantiates successfully, the next step is to execute an application-specific code.

Arguments:

An ASC_Main object must be initialized with the following input arguments:

  • argc: The number of elements in the argv[ ] array. You must pass the argc of main () to this argument.

  • argv: An array of string pointers. You pass the argv of main () to this argument. Valid elements are:

    • applName – Application name

    • -c ctrlSvrName – Master control server name

    • -l diagLevel – Diagnostic level

    • -f diagFile – Diagnostic file name

Public methods

The following are the public methods.

appl_initialize, appl_cleanup

You must override appl_initialize and appl_cleanup using the application-specific methods provided in the application programmers' subclasses. The overridden methods can use any facility provided by this class library and spawn as many threads as required, as long as they do not violate the rules.

Syntax:

virtual CS_RETCODE appl_initialize (void) = 0;
virtual void appl_cleanup (void) {};
startup

The startup method is used to start the execution of application code in appl_initialize () that you have defined. After the ASC_Main object has been successfully instantiated, startup () should be called to pass program control to the application.

Syntax:

void startup(void);
threadMain

Required by ASC_ThreadAppl as the thread start function.

Syntax:

int threadMain(void **Rtn) { return CS_SUCCEED; };
config_param_init

This method initializes the configuration B tree.

Syntax:

CS_RETCODE config_param_init (void);
ctlib_init

This method initializes client/server related config parameters.

Syntax:

CS_RETCODE ctlib_init (void);
process_input

This method processes the command line input parameters. It terminates the program if the input is improper.

Syntax:

void process_input (void);
initialize

Client initialization method.

Syntax:

CS_RETCODE initialize (void);
default_signal_handlers

This function installs the signal callback handlers.

Syntax:

void default_signal_handlers (void);
install_signal_handle

This method installs handler func for signal signum.

Syntax:

CS_RETCODE install_signal_handler (CS_INT signum, CS_VOID * func);
appl_initialize

This pure virtual function is the abstract method for application specific activities. Application programmers should override this function in their subclasses with their self-defined methods.

Syntax:

virtual CS_RETCODE appl_initialize (void) = 0;
appl_cleanup

This pure virtual function is the abstract method for application specific cleanup activities. Application programmers should override this function in their subclasses with their self-defined methods if there's any special cleanup to be performed at termination.

Syntax:

virtual void appl_cleanup (void) {};

Diagnosis class

This class provides methods for initializing the diagnostic environment, and generating diagnostic messages to a log file.

For more information on the ASAP Configuration file, see the ASAP Server Configuration Guide.

  • Direct Mode – In the direct mode, an internal mutex is used in each Diagnosis object to synchronize the writings from multiple threads.

  • Indirect Mode – All diagnostic messages are queued to a dedicated message queue, from which a dedicated thread takes these messages and logs them to the diagnostic file.

The name of the diagnostic file is specified with an -f prefix when initiating the process.

When you construct a Diagnostic object and generate diagnostic messages, you can create an object without an argument, or with the thread name, and then use the diag method to log diagnostic messages. No other action is required.

Internally, the following methods for logging messages are recommended:

  • All instances of the Diagnosis class can write messages to the diagnostic files directly.

  • All instances of the Diagnosis class can write to a dedicated diagnostic message queue with a no-wait option. A service thread is used to dequeue the messages and write them to the diagnostic files in this case.

If a service thread is required, the Diagnosis can create this thread and instruct it to wait on the message queue. Only one such service thread can be created if multiple instances of Diagnosis are used by the application. If the thread or the message queue do not work well, Diagnosis can switch to the first logging method.

To prevent inconsistent concurrent writings in a multithreaded environment, writing to the diagnostic files must be synchronized.

Synopsis
class Diagnosis: public Config, public ASC_ThreadAppl {
public:
Diagnosis (DIAG_CONFIG *cfg, ASC_MsgQueue *asc_msgq,
char *thrName);
// Constructor to initialize diagnostic environment with
// configuration structure **cfg**.
Diagnosis (char *thrName = "unknown"):ASC_ThreadAppl
(thrName) {};
// Do nothing constructor.
~Diagnosis(void);
virtual CS_RETCODE initialize (DIAG_CONFIG *cfg);
virtual void diag (VOIDPTR UNUSED(ptr), DIAG_LEVEL level,
char *type,int line, char *file, char *fmt
virtual void  diag_format (VOIDPTR ptr, DIAG_LEVEL
level,char *type, int line, char *file, void
(*format_fn)(FILE *outfile, VOIDPTR ptr)) {};
virtual void hex_dump (DIAG_LEVEL level, char *type, 
int line, char *file,CS_BYTE *buf, int buf_len) {};
virtual void rpc_dump (DIAG_LEVEL level, int line, 
char *file) {};
virtual void stack_trace (DIAG_LEVEL level, char *type,
int line, char *file) {};
void * service_mgr (void);
static CS_BOOL m_diag_queue;
static ASC_Mutex m_diag_mtx_;
int threadMain(void **Rtn);
protected:
void multi_diag_init (void);
//
CS_RETCODE print_queue (void);
// This method is used to take an message entry from
// the diag queue and print the associated
// message to the diag file.
CS_RETCODE create_srv_thread (void);
// This method creates a service thread used to process
// diag messages on the diag queue and print 
// them to the diag file on a FIFO basis.
DIAG_LEVEL set_diag_level (char *level_msg);
char *set_diag_level_msg (DIAG_LEVEL level);
void pre_write_diag_file (char *file);
void post_write_diag_file (DIAG_LEVEL level,
char *file, long max_size);
void diag_file_open(char *filename);
void diag_file_move(char *filename);
void dump_configuration(void);
static FILE *m_diag_outfile;
private:
static int m_last_day;
static long m_log_file_max;
static DIAG_FILE *m_diag_files;
static CS_INT m_diag_idx;
static DIAG_LEVEL m_diag_level;
static DIAG_CONFIG m_diag_config;
static CS_BOOL m_diag_line_flush;
static CS_INT m_MAX_DIAG_FILES;
static ASC_MsgQueue *m_msgq;
// the pointer to the message queue object used for
// queueing all diag messages.
};
Constructors

This class has two constructors. To create the service thread, use the attachThread method in ASC_ThreadAppl class. To provide dequeueing and printing services, service_mgr is called in the thread context.

Syntax:

Diagnosis (DIAG_CONFIG *cfg, ASC_MsgQueue *asc_msgq, 
char *thrName);
Diagnosis (char *thrName = "unknown"):ASC_ThreadAppl
(thrName){};

Arguments:

  • cfg: Initializes Diagnosis-related global settings, diagnostic files, and spawn service thread if required.

  • asc_msgq: Constructs custom Diagnosis objects. The newly-created object uses the settings, diagnostic files, and message queue initialized when instantiating the very first Diagnosis object in the ASC Main's constructor.

  • thrName: The thread Name in which the object is instantiated. It appears at the end of each diagnostic message indicating in which thread the message is generated.

Public methods

The following are the public methods.

diag

ASAP Application Server runtime diagnostic method diag is designed to generate diagnostic messages in the required format anywhere in the application.

Syntax:

virtual void diag (VOIDPTR UNUSED(ptr), DIAG_LEVEL level,
char *type, int line, char *file, char *fmt, ...);

Arguments:

  • ptr: Only used by the debugger within the Interpreter.

  • level: The diagnostic level of this particular function call.

  • type: Character pointer identifying type or functional origin of the function call. Only the first 15 characters of this function call appear in the diagnostic file.

  • line: The line number of the function in the source file, _ _LINE_ _.

  • file: The file name from which the function was called, _ _FILE_ _.

  • fmt: Character pointer to a sprintf format buffer containing the diagnostic message itself.

  • ...: Variable number of parameters following the sprintf format.

initialize

Initializes the diagnostic environment with configuration structure **cfg**.

Syntax:

virtual CS_RETCODE initialize (DIAG_CONFIG *cfg);
diag_format

SAP Application Server User Specified Diagnostic Formatting method.

Syntax:

virtual void diag_format (VOIDPTR ptr, DIAG_LEVEL
level,char *type, int line, char *file, void
(*format_fn)(FILE *outfile, VOIDPTR ptr)) {};
hex_dump

This function produces a hexadecimal dump of a character buffer in the server diagnostic logfile.

Syntax:

virtual void  hex_dump (DIAG_LEVEL level, char *type, 
int line, char *file,CS_BYTE *buf, int buf_len) {};
rpc_dump

This function prints the RPCs supported by the Open Server to the diagnostic logfile.

Syntax:

virtual void  rpc_dump (DIAG_LEVEL level, int line, 
char *file) {};
stack_trace
virtual void  stack_trace (DIAG_LEVEL level, char *type, int line, char *file) {};
service_mgr

This member function is the start function of the queue service thread used to take diagnostic messages off the diag queue and print them to the diag file.

This method must only be used in conjunction with create_srv_thread() method and must not be used elsewhere.

Syntax:

void * service_mgr (void);
m_diag_queue

This flag indicates whether diag messages are sent to a message queue. If CS_TRUE is set, all messages are sent to the queue. If this flag is set to CS_FALSE after the service thread has been created, the service thread terminates after taking all messages off the queue and processing them.

Syntax:

static CS_BOOL m_diag_queue;
m_diag_mtx_

This method is a pointer to the mutex used to synchronize access to the diag file.

Syntax:

static ASC_Mutex m_diag_mtx_;
threadMain

ASC_ThreadAppl required thread start function.

Syntax:

int threadMain(void **Rtn);

Event class

This class provides the functionality to convert parameters into a system event and save it in the control database.

All Event objects log the event messages to the diagnostic file and queue them to a dedicated message queue. From this queue an EventAgent object (in another thread) takes the messages and logs them to the control server through RPC.

You can create multiple instances of the Event class and you can access different objects concurrently.

Whenever you generate an event through an Event object, the requested object:

  • Logs a diagnostic message to the default diagnostic files.

  • Converts your input parameters into an event message.

  • Puts this event message onto the dedicated event message queue.

System event requests are not generated by Event objects. An EventAgent object dequeues the event messages from the dedicated event message queue and sends the log_event RPCs to the control server.

Synopsis
class Event: public Diagnosis
{
public:
Event (char * thrName =“Event"):
m_eventq_(default_eventq), Diagnosis(thrName) {};
void event(char *event_type, short line, char *file, char *fmt, ...);
// ASAP event logging method.
};
Constructors

The Event class uses a default event message queue to pass event messages to the EventAgent thread. A pointer to that default queue is recorded into data member m_eventq_ when an object is constructed.

Event (char * thrName = “Event"):
m_eventq_(default_eventq), Diagnosis(thrName)

You pass the thread name of the creating thread to the constructor when you instantiate the Event object. This thread name appears at the end of the diagnostic message logged into the diagnostic file. If no thread name is passed when instantiating an Event object, the event is taken as the name by default.

Arguments:

  • event_type: Specifies the system event to be generated. This code is used to determine the operation to perform from the configuration tables.

  • line: Line in source file where the system event was generated. Should be __LINE__.

  • file: Source file where the system was generated. Should be __FILE__.

  • fmt: sprintf() type format string specifying cause of the system event.

  • ...:Variable number of parameters following the sprintf() format.

Public methods

event:

ASAP event logging method.

Syntax:

void event(char *event_type, short line, char *file,
char *fmt, ...);

EventAgent class

The EventAgent class creates a service thread waiting on the dedicated event message queue for incoming event messages enqueued by Event objects. Each application process has only one such service thread.

If there is no message to be processed, this thread sleeps on the queue. When an event message comes, the service thread removes it from the queue, passes the information in the message structure to a ClientProc object, and then sends an RPC to the designated control server through the connection managed by that ClientProc object. If the RPC execution fails on the server side, a diagnostic message is written to the default diagnostic file. The ClientProc object is obtained from a ClntProcMgr object managing multiple ClientProc objects connected to the control server.

This class should only be instantiated once in an application and this unique instance should only be created in the constructor of ASC_Main. The attachThread () method from the class ASC_ThreadAppl is used in the constructor of the EventAgent class to create the service thread. The thread calls the start_service () method and waits for event messages on the default dedicated event message queue.

Synopsis
typedef struct {
int operation;
char event[APPL_EVENT_L+1];
char source_file[SOURCE_FILE_L+1];
short source_line;
char reason[APPL_REASON_L+1];
} CONTROL_AGENT_MSG;
class EventAgent: public ASC_ThreadAppl 
{
public:
EventAgent (ASC_MsgQueue *eventq = ::default_eventq,
ClntProcMgr *sql_cpp = ::default_sql_cpp, 
ClntProcMgr *ctrl_cpp = ::default_ctrl_cpp);
// This constructor initializes private data members,
// ~EventAgent (void) {};
int threadMain(void **Rtn);
// ASC_ThreadAppl required thread start routine.
void startup (void);
void start_service (void);
CS_BOOL m_should_terminate;
virtual void alarm (time_t seconds, ASC_MsgQueue *q, 
int *msg, long msg_operation) {};
ASC_Mutex m_ea_mtx_;
protected:
void write_event (ClientProc *sql_cp, ClientProc
*ctrl_cp, CS_CHAR *event, CS_CHAR *file, 
CS_INT *line, CS_CHAR *reason);
static CS_RETCODE sys_event_handler (CS_VOID *sql_cp,
CS_VOID *data,CS_RETCODE UNUSED(restype), 
CS_BOOL *UNUSED(not_done));
private:
ASC_MsgQueue *m_eventq_;
// Message queue used to pass event messages to the
// agent thread.
ClntProcMgr *m_ctrl_cpp_;
// Pointer to master control server connections 
// manager object. 
ClntProcMgr *m_sql_cpp_;
// Pointer to control sql server connections 
// manager object. 
};
Constructors
EventAgent (ASC_MsgQueue *eventq = ::default_eventq,
ClntProcMgr *sql_cpp = ::default_sql_cpp, 
ClntProcMgr *ctrl_cpp = ::default_ctrl_cpp);

This constructor initializes private data members, ~EventAgent (void) {};.

Public methods

The following are the public methods.

threadMain

ASC_ThreadAppl is a required thread to start the routine.

Syntax:

int threadMain(void **Rtn);
start_service

This method waits for event messages on the previously-created event message queue. If there is an incoming message, it generates a server event for the message.

Syntax:

void start_service (void);
m_should_terminate

This flag indicates whether the service thread should be terminated. If CS_TRUE is returned, the service thread must be terminated.

Syntax:

CS_BOOL m_should_terminate;
alarm
virtual void alarm (time_t seconds, ASC_MsgQueue *q, 
int *msg, long msg_operation) {};
m_ea_mtx_

Mutex used to synchronize access to should_terminate.

Syntax:

ASC_Mutex m_ea_mtx_;

ClientProc class

The ClientProc class contains methods for client applications to handle connections and communications between clients and servers, and to send RPC execution requests to servers through these managed connections. A ClientProc object synchronously waits for the results of the RPC executions and invokes the appropriate handlers after it receives these results. It can be used safely in both one-thread-one-connection and multiple-threads-one-connection models.

Each object of this class is a client process context that manages a connection to a specific RDBMS Server, through which you can send RPCs to and receive results from the server. A client message handler and a server message handler, which log messages from the Sybase Open Client library and servers to a diagnostic file, are also installed internally upon creation of an object. In addition, concurrent accesses to the connection are synchronized inside an object so that the object can be used safely in both single and multiple thread connection models.

The ClientProc class encapsulates Sybase Open Client functionality and synchronization facilities to provide multithread-safe context allocation/drop, connection open/close, connection status check, and RPC execution/results binding methods to the application programmers. In addition, message handler methods for both the Sybase and Oracle Client Libraries and server feedbacks are provided in the class.

A ClientProc object can work in:

  • Dedicated mode – Only accessed by a single thread (normally its creating thread) at any time.

  • Shared mode – Accessed from multiple threads, in which case the connection to the server is shared. Access to a shared ClientProc object's server connection is serialized by the object itself.

Synopsis
ClientProc class:class ClientProc: public Diagnosis
{
public:
ClientProc (CS_CHAR *srv_name, CS_CHAR *userid, 
CS_CHAR *password, CP_CONNECT_TYPE db_conn =
OPEN_SERVER);
ClientProc (CS_CHAR *srv_name, CS_CHAR *userid,
CS_CHAR *password, CS_VOID *data,
CLNT_HANDLER *hand_tbl, CM_RPC *rpcdef,
CP_CONNECT_TYPE db_conn, ...);
~ClientProc (void);
CS_RETCODE cpopen (void);
CS_RETCODE cpclose (void);
CS_RETCODE cpcheck (void);
CS_RETCODE cpbind (CS_INT base_idx, CM_RPC *rpcdef, ...);
CS_BOOL IS_OPEN (void);
CS_RETCODE  cprpcexec (CS_VOID *data, CLNT_HANDLER
*hand_tbl, CM_RPC *rpcdef, ...);
CLIENT_PROC * get_cp(void) { return m_cp_ptr_; }
CS_BOOL is_busy (void) { return m_is_busy_; }
CS_INT get_return_status (void){return m_return_status; }
CS_RETCODE cancelOperation(void);
CP_CONNECT_TYPE get_db_type(void) { return m_db_type_; }
static ASC_Mutex *m_alloc_mtx_;
static ASC_Mutex *m_init_mtx_;
static CS_RETCODE ct_msg_handler(CS_CONTEXT *cp,
CS_CONNECTION *chp,   CS_CLIENTMSG *msgp);
static CS_RETCODE srv_msg_handler(CS_CONTEXT *cp,
CS_CONNECTION *chp, CS_SERVERMSG *msgp);
#ifdef ORACLE_DB
//**********************************************************
// ORACLE database connection management public methods.
//
CS_INT ocicreate_list(Cda_Def *cda, ORA_COLUMN **colsptr,
CS_INT numrows);
CS_RETCODE ocidestroy_list(ORA_COLUMN *cols);
CS_RETCODE ocifetch(Cda_Def *cda, ORA_COLUMN *cols);
CS_RETCODE ocistatus(Cda_Def *cda);
CS_RETCODE ocican_cursor(Cda_Def *cda);
CS_RETCODE ociopen_cursor(void);
CS_RETCODE ociclose_cursor(Cda_Def *cda);
CS_RETCODE ociparse(CS_CHAR *command);
CS_RETCODE ocicreate_cmd(CS_CHAR *command, 
CM_RPC *rpcdef);
CS_RETCODE ocirpcexec(CM_RPC * rpcdef);
#endif
void dts_to_str(CS_CHAR *date_str, CS_DATETIME *dts);
void str_to_dts(CS_CHAR *date_str, CS_DATETIME *dts);
private:
CLIENT_PROC * m_cp_ptr_;
// The unique client process structure used 
// within the object.
ASC_Mutex m_glob_sync_mtx_;
// ASC_Mutex used to synchronize the access to the 
// object if this object is shared by multiple threads.
virtual CS_RETCODE 
process_status(CM_RPC *rpcdef, CS_BOOL *not_done,
CS_BOOL *rpc_error, CS_BOOL *deadlock_error, 
CS_INT retry_num);
virtual CS_RETCODE 
initialize_ct_context (CS_CONTEXT *cp,
CS_RETCODE (*clientmsg_cb)(CS_CONTEXT *cp, 
CS_CONNECTION *conn, 
CS_CLIENTMSG *msg),
CS_RETCODE (*servermsg_cb)(CS_CONTEXT *cp, 
CS_CONNECTION *conn, 
CS_SERVERMSG *msg)
;
// ct library context initialization method.
static CS_RETCODE ct_msg_handler(CS_CONTEXT *cp,
CS_CONNECTION *chp,
CS_CLIENTMSG *msgp);
static CS_RETCODE srv_msg_handler(CS_CONTEXT *cp,
CS_CONNECTION *chp, 
CS_SERVERMSG *msgp);
protected:
CS_BOOL m_is_busy_;
// This flag is used to check if this object is
// in use (busy);
// CS_TRUE is set if busy.
CS_BOOL m_is_connected_;
// This flag is used to check if this object is 
// connected to the server;
// CS_TRUE is set if connected.
};
Constructors

This constructor allocates and initializes CLIENT_PROC structure, and opens connections to the server. If it is used to instantiate an object, a connection to the server specified by the input argument srv_name is established by default. RPC execution method cprpcexec () can be used right after the object initialization. You can use it to open dedicated connections to servers.

Syntax:

ClientProc (CS_CHAR *srv_name, CS_CHAR *userid, 
CS_CHAR *password, CP_CONNECT_TYPE db_conn =
OPEN_SERVER);

This constructor allocates and initializes CLIENT_PROC structure, opens connections to the server, executes an RPC registered procedure on the server and then processes the results. If this constructor is used to instantiate an object, a connection to the server specified by the input argument srv_name is established, an RPC execution request is sent to the server and the results are processed. You can use this constructor to execute a single RPC on the server. This constructor initializes its parent class Diagnosis. This is required when an object is created for use by multiple threads. A different thread can open a connection to different servers or send RPCs to different destinations.

Syntax:

ClientProc (CS_CHAR *srv_name, CS_CHAR *userid,
CS_CHAR *password, CS_VOID *data,
CLNT_HANDLER *hand_tbl, CM_RPC *rpcdef,
CP_CONNECT_TYPE db_conn, ...);

Arguments:

  • db_conn: Indicates the connection type, and is one of the following:

    • OPEN_SERVER – Sybase Open Server connection.

    • ORACLE – Oracle Server RDBMS connection.

Public methods

This section lists the public methods.

cprpcexec
CS_RETCODE  cprpcexec (CS_VOID *data, CLNT_HANDLER
*hand_tbl, CM_RPC *rpcdef, ...);

This method executes an RPC or a registered procedure on the server and then processes the results. The returned results are mapped and then the appropriate result handler is called to process the data.

Arguments:

  • data: Generic data pointer that is passed to the handlers once the results are returned by the server.

  • hand_tbl: Result handler table to process the return data.

  • rpcdef: RPC definition structure specifying the RPC to be executed and its associated parameters.

  • ...: Variable parameter list specifying the values for the RPC parameters identified by rpcdef. All parameters must be pointers.

Return values:

  • CS_SUCCEED: RPC execution was successful and the results were handled successfully.

  • CS_FAIL: The function failed due to an RPC execution error or one of the result handlers failed.

cpopen

This method opens a connection to the server that is specified by private member cp_ptr_, which is returned by cpalloc method. CS_SUCCEED is returned if successful.

Syntax:

CS_RETCODE cpopen (void);
cpclose

This method closes the object's connection to the server. CS_SUCCEED is returned if successful.

Syntax:

CS_RETCODE cpclose (void);
cpcheck

This method checks the network connection to verify that the server is available. When an error is detected, the connection is automatically closed if it is open.

Syntax:

CS_RETCODE cpcheck (void);
IS_OPEN

This method checks if the current connection associated with the object is still open.

Syntax:

CS_BOOL IS_OPEN (void);
get_cp

Return the unique client process structure pointer.

Syntax:

CLIENT_PROC * get_cp(void) { return m_cp_ptr_; }
is_busy

Check if the object is busy.

Syntax:

CS_BOOL is_busy (void) { return m_is_busy_; }
get_return_status

Retrieves the RPC status.

Syntax:

CS_INT get_return_status (void){return m_return_status; }
cancelOperation

Cancels the current database operation.

Syntax:

CS_RETCODE cancelOperation(void);
get_db_type

Returns OPEN_SERVER (0) if connection is Open Server. Returns SYBASE (1) if connection is Sybase SQL Server. Returns ORACLE (2) if connection is Oracle Server.

Syntax:

CP_CONNECT_TYPE get_db_type(void) { return m_db_type_; }
m_alloc_mtx_

The ASC_Mutex used to synchronize context allocations and droppings.

Syntax:

static ASC_Mutex *m_alloc_mtx_;
m_init_mtx_

ASC_Mutex is used to synchronize the Open Client library ct_init() and ct_exit() function calls.

Syntax:

static ASC_Mutex *m_init_mtx_;
Public methods

The following are the ORACLE database connection management public methods.

ocicreate_list

This function uses the odescr function to determine the columns name, data type and data size for every column in the cursor variable.

Syntax:

CS_INT ocicreate_list(Cda_Def *cda, ORA_COLUMN **colsptr, CS_INT numrows);
ocidestroy_list

Frees storage allocated to ORA_COLUMN structure.

Syntax:

CS_RETCODE ocidestroy_list(ORA_COLUMN *cols);
ocifetch

This function attempts to fetch as many rows as specified in numrows.

Syntax:

CS_RETCODE ocifetch(Cda_Def *cda, ORA_COLUMN *cols);
ocistatus

Checks the status of Cda of CLIENT_PROC.

Syntax:

CS_RETCODE ocistatus(Cda_Def *cda);
ocican_cursor

Cancels a query on a cursor after the required rows have been fetched.

Syntax:

CS_RETCODE ocican_cursor(Cda_Def *cda);
ociopen_cursor

This function associates a cursor data area in the application with a data area in the Oracle server. These are used by Oracle to maintain state information about the processing of a SQL statement.

Syntax:

CS_RETCODE ociopen_cursor(void);
ociclose_cursor

This function disconnects a cursor from the data areas in the Oracle Server. Because you can associate more than one cursor with an RPC (cursor variable processing), you cannot associate all of them with a single CLIENT_PROC. Therefore, this function only takes Cda as an argument.

Syntax:

CS_RETCODE ociclose_cursor(Cda_Def *cda);
ociparse

This function parses a SQL statement and associates it with a cursor. For performance reasons, all parsing is done in deferred mode. Therefore, PLSQL syntax errors are not likely to be detected until after the RPC is executed.

Syntax:

CS_RETCODE ociparse(CS_CHAR *command);
ocicreate_cmd

This function builds a PL/SQL call based on the CM_RPC structure. The resulting command can be passed to ociparse to be associated with an open cursor. To receive a return status from an RPC to the Oracle server functions are used on the server side instead of procedures.

Syntax:

CS_RETCODE ocicreate_cmd(CS_CHAR *command, CM_RPC *rpcdef);
ocirpcexec

This function invokes the RPC associated with the specified cursor to the Oracle Server.

Syntax:

CS_RETCODE ocirpcexec(CM_RPC * rpcdef);
dts_to_str
void dts_to_str(CS_CHAR *date_str, CS_DATETIME *dts);

Converts the SYBASE datetime to string date time format.

str_to_dts
void str_to_dts(CS_CHAR *date_str, CS_DATETIME *dts);

Converts the string date time format to SYBASE datetime.

MT-Safety in shared mode

To ensure multithread safety in the shared mode, access to a shared ClientProc object must be serialized. This is enforced by lock_object () and trylock_object () methods.

Before using other methods in the class, a thread must call lock_object () or trylock_object () to lock the object. If the object is already in use by another thread, lock_object () is used. If the object is not free, trylock_object () is used. After using the object, you must call unlock_object () to enable another thread to lock it.

ClntProcMgr class

An object of this class is designed to manage all active ClientProc objects (for example, shared server connections). These ClientProc objects are connected to the same server. It maintains a list of CLNT_SVR_ST nodes for available objects. You can obtain a required ClientProc object from the ClntProcMgr object. When the object is no longer required, you can return it to the ClntProcMgr.

To replace the ClientProc object, you can call the member function replaceBadObj() directly (for example, if the object server connection is broken).

A ClntProcMgr object must never be deleted unless you are sure that no other threads are accessing this object.

The ClntProcMgr class manages grouped ClientProc objects. Each instance of the ClntProcMgr class manages a group of ClientProc objects initially connected to the same server. It creates newly managed ClientProc objects after its instantiation, if required, using the createObj method. Upon destruction, all ClientProc objects managed are deleted.

You can use the getObj method to get a pointer to a free ClientProc object for use, and use the returnObj method to return that ClientProc object for recycling.

The number of all ClientProc objects managed by an instance and the number of free ones are tracked. You use the checkNumOfFreeObj method to check the number of free objects available for use.

Synopsis
class ClntProcMgr
{
public:
ClntProcMgr (char *name, CS_CHAR *srv_name, CS_CHAR
*userid, CS_CHAR *password, CS_INT size,
CP_CONNECT_TYPE db_conn);
~ClntProcMgr (void); 
//Class Destructor
CS_RETCODE createObj (void);
void deleteAllObj (void);
ClientProc *getObj (void);
void returnObj (ClientProc *obj);
ClientProc *replaceBadObj(ClientProc *badObj);
CS_INT checkNumOfFreeObj (void); 
private:
ASC_Mutex m_conn_mtx_;
// Mutex used by objects of this class to provide
// consistent operations on the following static 
// private data members.
CS_INT m_num_of_free_;
// Number of free objects for use.
CS_INT m_num_of_obj_;v// Number of all ClientProc objects managed by this.
CLNT_SVR_ST m_list_head;
// Head of the free objects list.
char m_ObjName[80];
// The name of this ClntProcMgr object.
};
Constructors

Only one type of constructor is provided in the class. This constructor calls the createObj method to create (size) ClientProc objects, allocate and initialize CLIENT_PROC structures, and open connections to the server specified by the input argument srv_name. The argument name specifies the name of the ClntProcMgr object, which you use when you search it from a group of ClntProcMgr objects.

Syntax:

ClntProcMgr (char *name, CS_CHAR *srv_name, CS_CHAR
*userid, CS_CHAR *password, CS_INT size,
CP_CONNECT_TYPE db_conn);

Arguments:

  • db_conn: Indicates the connection type, and is one of the following:

    • OPEN_SERVER – Sybase Open Server connection.

    • ORACLE – Oracle Server RDBMS connection.

Public Methods

The following are the public methods.

createObj
CS_RETCODE createObj (void);

This method creates a ClientProc object, allocates and initializes CLIENT_PROC structures, and opens connections to the server.

deleteAllObj
void deleteAllObj (void);

This method destroys all free ClientProc objects managed by the class.

getObj
ClientProc *getObj (void);

This method is used to get a free ClientProc object pointer from the ClntProcMgr object. If no ClientProc object is available, a NULL is returned. You must check the return value of this method before using the pointer, or check the number of free ClientProc objects available using checkNumOfFreeObj method before making a call to getObj ().

returnObj
void returnObj (ClientProc *obj);

Returns ClientProc object for recycling. This method puts this object back on the available objects list. You must ensure each ClientProc is returned after being used to maximize the usability of this group of ClientProc objects.

replaceBadObj
ClientProc *replaceBadObj(ClientProc *badObj);

Passes the bad ClientProc object back and gets a new one.

checkNumOfFreeObj
CS_INT checkNumOfFreeObj (void); 

Returns the number of available objects on the object list.

Config class

This utility class retrieves system configuration parameters originally stored in the ASAP.cfg configuration file. Because public methods are static, you can use them directly with the Config:: prefix.

The Config class retrieves configuration parameters initially defined in the ASAP.cfg file. All parameters in the file are loaded and put into a self-balancing tree (SBT) by the ASC_Main constructor that initializes the application environment.

Each parameter is identified by a unique name. This class provides the get_config_param method to search the value of only one parameter per use. If the parameter does not have an entry in the self-balancing tree, an entry is inserted with the default value provided.

As concurrent access to the SBT is possible in a multithreaded environment, this class uses a mutex facility to synchronize writing (adding new node) efforts from different threads.

Use the dump_config_params method to dump all the parameters to a specified file for diagnostic purposes.

Synopsis
class Config
{
public:
Config (void) {};
//Class destructor.
~Config (void) {};
static void  get_config_param (char *param, 
char *value, char *default_vlu);
//
static void  dump_config_params (FILE *fp);
//
static int node_compare(const void *node1, 
const void *node2);
//
static void dump_param_dtls(const void *node, 
VISIT order, int level);
//
protected:
CS_RETCODE config_param_init (void);
// This method will initialize the configuration
// parameter B tree with the parameter present
// in both the global and application specific
// configuration files.
// get_config_param related methods below:
static void process_file(FILE *fp, char *file);
//
static char *insert_updt_node(char *lbl, char *vlu, 
char *file, CS_BOOL initialization);
//
static void null_end_pad(char *string);
//
private:
static FILE *m_diag_fp;
static ASC_Mutex m_conf_mtx_;
// the mutex used to synchronize cfg related operations.
};
Constructors

No parameter is required when instantiating an object. A global self-balancing tree structure is created in the ASC_Main constructor for use by all Config objects.

Syntax:

Config (void) {};
Public methods

The following are the public methods.

get_config_param

If this entry is not present as either an application or global configuration parameter, then the default value is returned and it is set as a new entry. This method references the configuration file and returns the value of the requested parameter.

Syntax:

static void get_config_param (char *param, char *value, char *default_vlu);

Arguments:

  • param: The parameter name.

  • value: Character pointer to the value of the requested parameter. The returned parameter is placed in this location.

  • default_vlu: Character pointer to the default value to be used for this parameter if the parameter is not listed in the configuration file.

dump_config_params
static void dump_config_params (FILE *fp);

This method dumps all parameters listed in the SBT to a file specified by a file descriptor fp.

Common class

The Common class is designed to provide some commonly used general purpose facilities on a platform independent basis. Currently it only provides time-related methods to get the current time and date.

Synopsis
class Common
{
public:
Common (void) {};
//Class constructor.
~Common (void) {};
//Class destructor.
static CS_RETCODE curDts(CS_DATETIME &dts);
static CS_FLOAT cur_tm(void);
static int today(void);
};
Constructors

Only one type of constructor is provided in this class.

Syntax:

Common (void) {};
Public Methods

The following are the public methods.

curDts

Gets the current date and time and places them in the dts structure.

Syntax:

static CS_RETCODE curDts(CS_DATETIME &dts);
cur_tm

Returns the current time.

Syntax:

static CS_FLOAT cur_tm(void);
today

Returns the current date.

Syntax:

static int today(void);

ASC thread library

Thread Classes are the core of the thread framework. They provide a generic interface to different thread architectures. Thread Classes consist of generic thread interface classes and vendor-specific classes.

The thread framework consists of the following classes:

  • ASC_Thread – Provides a plain thread which has basic thread functions. The vendor-specific thread class, for example, DCE_Thread, is derived from this class.

  • ASC_ThreadFactory – Has knowledge of instantiating a class.

  • ASC_ThreadAppl – The application Appl Class is derived from this class. This class provides the interfaces for the application to access the thread factor, the thread, and the messaging system. After you have generated the Appl Class and attached it to a plain thread, the thread starts to execute the application you have defined.

  • Generic Message Classes – Provides the application a generic interface to different messaging systems such as interthread communication (ITC), interprocess communication (IPC) etc. ThreadMsgQueue is ITC.

ASC_Thread class

This is an abstract class. Its member functions provide a generic interface to a thread, for example, detaching, joining, or exiting a thread. Since not all features are supported by all thread packages, the isSupported function reports when a feature is available.

Synopsis
class ASC_Thread {
public:
    ASC_Thread(void){}
    ~ASC_Thread(void){}
    virtual void exitThread(void *RtnData) = 0;
    virtual int detachSelf(void) = 0;
    virtual int detachThread(const ASC_Thread *ThreadObj) = 0;
    virtual void yieldThread(void) = 0;
    virtual int joinThread(const ASC_Thread *ThreadObj, void **RtnData) = 0;
    virtual int threadSigWait(void) = 0;
    virtual int operator==(const ASC_Thread *ThreadObj) = 0;
    virtual int isSupported(int ThreadMethod) = 0;
protected:
private:
};
Public methods

A vendor-specific thread class must subclass from ASC_Thread to interface with the vendor-specific thread functions.

The thread factory uses spawnThread to start a thread. The function interfaces with the vendor-specific thread function and physically spawns a thread. To attach the object to the thread, ApplObj is passed to the function.

ASC_ThreadFactory class

ASC_ThreadFactory is an abstract class. It provides a generic interface to start a thread. Each class library of the vendor-specific thread, has its own factory class derived from this class. The derived class contains information on how to instantiate a thread object. The object instantiated from this class is a singleton object.

Synopsis
class ASC_ThreadFactory {
public:
    ASC_ThreadFactory(void) {}
    ~ASC_ThreadFactory(void);
    ASC_Thread* createThread(ASC_ThreadAppl *ApplObj);
    virtual ASC_Mutex* createMutex(void) = 0;
    virtual ASC_Condition* createCondition(void) = 0;
    virtual void deleteMutex(ASC_Mutex *TheMutex) = 0;
    virtual void deleteCondition(ASC_Condition *TheCondition) = 0;
    virtual ASC_Mutex *getFactoryMutex(void) = 0;
    int getNumThreads(void) const {return m_ThreadInfoByID.size(); } 
    const ASC_Thread *getThreadObj(const char *ThreadName);
    void threadTermination(ASC_ThreadAppl *ThreadAppl, int isExit,
		void* ReturnData);
    void ThreadIsJoined(ASC_Thread* TheThread);
    inline std::vector<ThreadInfo*>::iterator
    find_by_threadName(std::vector<ThreadInfo*> &container, const char *threadName);
    inline std::vector<ThreadInfo*>::iterator
    find_by_threadObj(std::vector<ThreadInfo*> &container, const ASC_Thread *obj);
protected:
    virtual ASC_Thread *spawnThread(ASC_ThreadAppl *ApplObj) = 0;
    virtual void threadCleanUp(const ASC_ExitInfo &Info) = 0;
private:
    std::vector<ThreadInfo*> m_ThreadInfoByID;
    ThreadInfo* removeThreadInfo(const ASC_Thread* Thread);
    ASC_ThreadFactory(const ASC_ThreadFactory &TheThreadFactory);
    ASC_ThreadFactory & operator=(const ASC_ThreadFactory &TheThreadFactory);
};
Public methods

To start a thread, createThread is invoked by the application. This function, in turn, invokes spawnThread to instantiate a thread object and start a thread. In the framework, createThread is called by ASC_ThreadAppl.

This class also saves the thread information, such as thread identifiers, pointers to thread objects, and thread names. When a thread is generated, the information is stored. The information is not used now and can be provided for future implementation, for example, to query and access a thread from outside of the process. When a thread is terminated, the information is discarded. Specifically, createThread saves information and threadTermination removes the information. When it terminates, threadTermination is invoked by a thread object.

A mutex object is used to ensure the synchronization of starting threads, since the factory can be used by more than one thread at the same time.

ASC_ThreadAppl class

This is the most important class for those who use the thread framework. Although an understanding of ASC_Thread and ASC_ThreadFactory is not necessary, you must understand this class.

This is an abstract class that the application must derive from. This class provides all the required interface methods for the application to start a thread, attach the application to the thread, and use the messaging system.

You use this class to generate an application running in a thread.

The subclass from this class is:

class Appl: public ASC_ThreadAppl
{
public:
Appl(char *ApplName):ASC_ThreadAppl(ApplName){}
~Appl(void){}
// This is a pure virtual and you must refine it. 
// After the thread is started, this function is 
// executed automatically.
int threadMain(void **Rtn);
};
// This thread application does nothing, but sending 
// a message through a message queue again and again.
int Appl1:: threadMain(void **Rtn);
{
ASC_MsgQueue *TheQueue;
int QID, i = 0;
char *MsgText;
ASC_Msg *Msg;
// Generate a message queue with name Appl using 
// the member function of ASC_ThreadAppl.
TheQueue = genMsgQueue(“Appl", QID);
printf(“This is Appl1 with Queue %d ThreadID 
%d\n", QID, getThreadID()); 
while(1){
MsgText = new char[80]; 
sprintf(MsgText, “This is message $d", ++i);
Msg = new ASC_Msg(0, MsgText);
// Send a message using the member function
// of ASC_MsgQueue
TheQueue->putMsg(Msg, getThreadID(), 0);
}
return 0;
}

Instantiate the application object and attach it to a thread in main().

main(int argc, char *argv[])
{
// Create a thread object with name Appl
Appl *al = new Appl(“Appl");
// Attach it to a thread. After this call, the 
// threadMain function will be executed in the 
// thread and all subsequent calls.
a1->attachThread();
...
}

This class must provide all required interfaces for the application to use the thread framework. This class hides the detail how to:

  • Generate a thread through the thread factory.

  • Attach the application object to the thread.

  • Obtain a message queue from the queue manager.

This class also provides functions for using methods provided by the thread it attached, retrieving some thread information, terminating the attached thread, etc.

The following is the class definition.

Synopsis
class ASC_ThreadAppl {
public:
ASC_ThreadAppl(char *ThreadName)
:m_TheThread(0), m_QueueList(0), m_Autodelete(0),
m_ThreadStarted(1) 
{ m_ThreadName = new char[strlen(ThreadName) + 1];
strcpy(m_ThreadName, ThreadName); }
virtual ~ASC_ThreadAppl(void);
void attachThread(void);
int terminateThread(void *Rtn);
virtual int threadMain(void **Rtn) = 0;
char *getThreadName(void) { return m_ThreadName; }
int getThreadID(void);
const ASC_ThreadAttr & getThreadAttr(void) {return
m_TheAttr; }
void initAttr(void)
void setAttr(int AttrID, in Attribute);
ASC_MsgQueue* genMsgQueue(char *QueueName, int &QueueID);
ASC_MsgQueue* getMsgQueue(int QueueID);
ASC_MsgQueue* getMsgQueue(char *QueueName);
void delMsgQueue(char *QueueName);
void delMsgQueue(int *QueueID);
void delMsgQueue(ASC_MsgQueue* MsgQueue);
void setTheQueue(ASC_MsgQueue* MsgQueue, int QueueID);
ASC_MsgQueue* getTheQueue(int QueueID);
void setTheThread(ASC_Thread *TheThread)
{ m_TheThread = TheThread; }
ASC_Thread* getTheThread(void) { return m_TheThread; }
void theThreadTerminated(void) { m_TheThread = 0; }
void setAutoDelete(void) { m_AutoDelete = 1; }
int AutoDelete(void) { return m_AutoDelete; }
ASC_Mutex & getTheMutex(void) { return m_TheMutex; }
int threadStarted(void) { return m_ThreadStarted; }
private:
char *m_ThreadName;
ASC_Thread *m_TheThread;
ASC_ThreadAttr m_TheAttr;
MsgQueueList *m_QueueList;
int m_AutoDelete;
int m_ThreadStarted;
ASC_Mutex m_TheMutex;
};
Public methods

The following are the public methods.

attachThread

This function creates a new thread and attaches the application object to it. The implementation protects the race condition, where the attached thread exits before attachThread is completed. This is achieved using a mutex which attaches to the application object.

Syntax:

void attachThread(void);
terminateThread

The application uses terminateThread to terminate the attached thread. To use this method to terminate a thread, the application must not detach the thread. This method uses a dedicated daemon thread and synchronous message to ensure the application object is deleted after the thread is terminated.

Syntax:

int terminateThread(void *Rtn);
threadMain

After an application object is attached to a thread, threadMain is executed. All subsequent calls to the member functions and other functions are executed in the thread. The thread is terminated when threadMain is exited. The application can exit threadMain either through a return statement or by invoking the member function terminateThread.

If the application calls autoDelete, the application object is deleted when the thread is terminated, otherwise, the application object is kept intact after the thread is terminated.

Syntax:

virtual int threadMain(void **Rtn) = 0;
getThreadName, getThreadID

This function retrieves the thread name.

Syntax:

char *getThreadName(void) { return m_ThreadName; }
int getThreadID(void);
ASC_ThreadAttr, getThreadAttr

Gets the attribute object.

Syntax:

const ASC_ThreadAttr & getThreadAttr(void) {return m_TheAttr; }
initAttr, setAttr

Initializes the attribute object. initAttr should be called once before subsequent calls to setAttr().

Syntax:

void initAttr(void)
void setAttr(int AttrID, in Attribute);
genMsgQueue

Creates a message queue.

Syntax:

ASC_MsgQueue* genMsgQueue(char *QueueName, int &QueueID);
getMsgQueue

Gets a message queue from the session manager. For performance reasons, the application should keep the pointer to the message queue(s) it uses, instead of using getMsgQueue to retrieve it from the queue manager each time.

Syntax:

ASC_MsgQueue* getMsgQueue(int QueueID);
ASC_MsgQueue* getMsgQueue(char *QueueName);
delMsgQueue

Deletes a message by name or ID.

Syntax:

void delMsgQueue(char *QueueName);
void delMsgQueue(int *QueueID);
void delMsgQueue(ASC_MsgQueue* MsgQueue);
setTheQueue

Saves the message queue locally.

Syntax:

void setTheQueue(ASC_MsgQueue* MsgQueue, int QueueID);
getTheQueue

Gets a local message queue by ID.

Syntax:

ASC_MsgQueue* getTheQueue(int QueueID);
setTheThread

Assigns the pointer to the thread to m_TheThread.

Syntax:

void setTheThread(ASC_Thread *TheThread){ m_TheThread = TheThread; }

DCE_Thread class

The DCE thread is typically used when implementing a vendor-specific thread library. This library is linked with the generic thread class library only when the application chooses to use the DCE threads. Another vendor-specific thread library is linked otherwise.

This DCE Thread Class library contains the DCE_Thread and DCE_ThreadFactory classes.

DCE_Thread is a subclass of ASC_Thread. This class redefines all methods defined in ASC_thread as pure virtual functions. These methods provide a generic interface for the application to use the thread functions, provided by DCE thread vendors.

Synopsis
class DCE_Thread : public ASC_Thread {
public:
DCE_Thread(void):m_ThreadID(-1),m_detached(0),
m_SigSet(0),m_ApplObj(0){}~DCE_Thread(void){}
void spawnThread(int &ThreadID, ASC_ThreadAppl *ApplObj);
void exitThread(void *RtnData); 
int detachSelf(void);
int detachThread(int ThreadID);
void yieldThread(void);
int joinThread(int ThreadID, void **RtnData);
int threadSigWait(void);
int setSigSet(ASC_SigSet *SigSet);
int isSupported(int ThreadMethod){ return ASC_True; } 
// This function retrieves thread ID
int getThreadID(void) { return (int)m_ThreadID; }

// This function converts generic attributes to 
// DCE thread attributes.
pthread_attr_t getAttributes(ASC_ThreadAppl *ApplAttr);
;
Public methods

The following are the public methods.

spawnThread

Spawns a DCE thread.

Syntax:

void spawnThread(int &ThreadID, ASC_ThreadAppl *ApplObj);
isSupported

This function retrieves thread ID int getThreadID(void) { return (int)m_ThreadID; }. To determine whether a method is supported by a particular thread package, use isSupported. Returning ASC_True identifies that the method is supported. DCE threads support all methods; therefore, it returns True all the time.

Syntax:

int isSupported(int ThreadMethod){ return ASC_True; } 
getAttributes

This function converts generic attributes to DCE thread attributes.

Syntax:

pthread_attr_t getAttributes(ASC_ThreadAppl *ApplAttr);

DCE_ThreadFactory class

DCE_ThreadFactory class is a subclass of ASC_ThreadFactory. This class mainly defines the spawnThread method because only the DCE thread factory can create a DCE thread object. This method instantiates the DCE thread object, and then invokes its method, spawnThread, to spawn a DCE thread.

Synopsis
class DCE_ThreadFactory : public ASC_ThreadFactory {
public:
DCE_ThreadFactory(void){}
~DCE_ThreadFactory(void){}
ASC_Thread *spawnThread(int &ThreadID, ASC_ThreadAppl
*ApplObj);
protected:
};
Public method

The following are the public methods.

spawnThread

Spawns a DCE thread.

Syntax:

void spawnThread(int &ThreadID, ASC_ThreadAppl *ApplObj);

DCE implementation

In addition to the DCE classes mentioned above, there are DCE-related implementations. The mutex and condition functions are defined in ASC_Mutex class, however, the implementation of the methods are DCE specific.

The mutex is used by both the framework and the application. The methods of the mutex class provide a generic interface to use vendor specific mutex and conditions. The following is a mutex class.

ASC_Mutex class

You can implement these methods in the DCE library to interface with vendor-specific thread packages. You can also implement the mutex by subclassing ASC_Mutex in the DCE library and to request a mutex from DCE_ThreadFactory. In this way, a mutex must be implemented in the application as an object.

Synopsis
class ASC_Mutex {
public:
ASC_Mutex(void);
~ASC_Mutex(void);
ASC_Mutex & operator=(const ASC_Mutex &);
ASC_Mutex(const ASC_Mutex &);
int lock(void);
int unlock(void);
int tryLock(void);
int condWait(void);
int condTimeWait(float Timeout); 
int condSignal(void); 
int condBroadCast(void); 
int isSupported(int MethodID);
private:
void *m_MutexData;
};
Constructors
ASC_Mutex(void);
~ASC_Mutex(void);

This constructor initializes the mutex and condition variables.

ASC_Mutex & operator=(const ASC_Mutex &);

This is the assignment constructor.

ASC_Mutex(const ASC_Mutex &);

This is the Copy constructor.

Public methods

The following are the public methods.

lock, unlock

These functions lock and unlock the mutex.

Syntax:

int lock(void);
int unlock(void);
trylock

This function tries to lock the mutex. If it cannot, it returns instead of blocking the caller.

Syntax:

int tryLock(void);
condWait

This function waits for a condition to become true.

Syntax:

int condWait(void);
condTimeWait

This function waits for a condition to become true during a period of time specified by Timeout.

Syntax:

int condTimeWait(float Timeout); 
condSignal

Sends a signal when a condition is changed.

Syntax:

int condSignal(void); 
condBroadCast

Broadcasts a signal when a condition is changed.

Syntax:

int condBroadCast(void); 
isSupported

Use this function to determine whether a method is supported.

Syntax:

int isSupported(int MethodID);

ASC_Context class

The mutex and condition are implemented as two classes instead of one.

In this framework, a context class is introduced for the application to retrieve the thread factory and message manager.

The ASC_Context class can be implemented in the following ways.

  • Similar to the implementation of the mutex, the ASC_Context is implemented in the DCE to instantiate the DCE thread factory. In this way, the application is not required to choose the thread factory at run time, but at linking time.

  • Another way to implement this class is to let the application choose the thread factory at run and link time. In this approach, the context class is not necessary.

The first approach is not considered proper in a C++ implementation, because it exposes the class private members to other libraries.

Synopsis
class ASC_Context {
public:
~ASC_Context(void){}
static ASC_Context *getTheContext(void);
ASC_ThreadFactory *getThreadFactory(void); 
int deleteThreadFactory(void);
MsgQueueMgr *getMsgQueueMgr(void);
int deleteMsgQueueMgr(void);
protected:
// These routines must be created in platform
// dependent thread libraries.
ASC_ThreadFactory *_getThreadFactory(void);
void _deleteThreadFactory(void);
private:
ASC_Context(void){}
};
// This class provides a dummy message queue manager.
class _MsgQueueMgr : public MsgQueueMgr{
public:
_MsgQueueMgr(void){}
~_MsgQueueMgr(void){}
};

Both methods _getThreadFactory and _deleteThreadFactory must be implemented in the DCE library. getMsgQueueMgr and deleteMsgQueueMgr are implemented in the message queue manager.

Public methods

The following are the public methods.

threadMain

The threadMain method permanently blocks on the message queue waiting for requests. After it receives a request, it cleans up the remainder of a terminated thread.

If a thread object exits from threadMain, the mechanism discussed above is not used. Instead, the function invokes threadMain to do clean-up work.

Syntax:

TerminatorThread(char *ApplName):ASC_ThreadAppl(ApplName){} ~TerminatorThread(void){} int threadMain(void **Rtn);

Inter-thread messaging system

The framework provides the inter-thread messaging system for the application to send messages. Although the design allows more than one type of message to be implemented, in this release only inter-thread messages are implemented.

The Inter-thread message allows the application to send messages among the threads. The implementation allows many threads to send and receive messages from the same queue. The mutex and condition are used to ensure that only one thread can access a message at a time.

This system supports both synchronous and asynchronous messages. When a thread sends an asynchronous message, it returns immediately. When a thread sends a synchronous message, it is blocked until the receiver frees it up. In addition, a sender or receiver can delete asynchronous messages, but only the sender can delete synchronous messages.

The MsgQueueMgr allows the application to create and retrieve message queues. After the application obtains the queue, an object of ThreadMsgQueue, it can use it to pass messages to other threads which monitor this queue, or retrieve messages from this queue. Asc_MsgQueue provides a generic interface which is redefined by its subclass such as ThreadMsgQueue.

ASC_Msg provides a default message object which is transferred among threads as vehicles to carry messages.

Because the system can have many message queues and each queue can contain many messages at a time, the system uses the Standard C++ containers to fulfill this.

ASC_Mutex is used to coordinate transferring the message among threads so that only one thread may access a message at a time.

Message queue manager class

MsgQueueMgr describes the message queue manager. It provides an interface for the application to obtain message queues. Because all message queues in a process are managed by the manager using the Standard C++ classes, this manager is not hit each time a thread accesses a queue. Instead, a thread keeps the queue locally after it obtains the queue. The object generated from this class is a singleton object.

Synopsis
class MsgQueueMgr {
public:
int getNumOfQueues(void);
ASC_MsgQueue* genThreadMsgQueue(char *QueueName, 
int &QueueID);
ASC_MsgQueue* getMsgQueue(int &QueueID);
ASC_MsgQueue* getMsgQueue(char *QueueName);
void delMsgQueue(char *QueueName);
void delMsgQueue(int QueueID);
void delMsgQueue(ASC_MsgQueue *MsgQueue);
static MsgQueueMgr* getMsgQueueMgr(void);
protected:
~MsgQueueMgr(void){}
MsgQueueMgr(void){}
private:
    static MsgQueueMgr *m_TheQueueMgr;
ASC_Mutex m_TheMutex;
};
Public methods

The following are the public methods.

genThreadMsgQueue
ASC_MsgQueue* genThreadMsgQueue(char *QueueName, int &QueueID);

Use this function to generate a new message queue. If the message queue exists, this function returns the queue ID.

getMsgQueue
ASC_MsgQueue* getMsgQueue(int &QueueID);
ASC_MsgQueue* getMsgQueue(char *QueueName);

These functions retrieve a message queue.

delMsgQueue
void delMsgQueue(char *QueueName);
void delMsgQueue(int QueueID);
void delMsgQueue(ASC_MsgQueue *MsgQueue);

These functions remove a message queue.

getMsgQueueMgr
static MsgQueueMgr* getMsgQueueMgr(void);

Gets a pointer to the message queue manager. This function makes the message queue manager singleton.

Message queue class

MsgQueueMgr uses the Standard C++ container to manage the queue objects. The class is an abstract class that provides the application a generic interface to access messages.

Synopsis
class ASC_MsgQueue {
public:
    friend class MsgQueueMgr;
    ASC_MsgQueue(const char *MsgQueueName, const int MsgQueueID, 
const int QueueType);
    ASC_MsgQueue(const char *MsgQueueName, const int MsgQueueType);
    ASC_MsgQueue(const int MsgQueueID, const int MsgQueueType);
    ASC_MsgQueue(const int MsgQueueType);
    virtual ~ASC_MsgQueue(void);
    void setQueueID(const int MsgQueueID) { m_QueueID = MsgQueueID; }
    void getQueueName(char *Name) const { strcpy (Name, m_QueueName); }
    const char *getQueueName(void) const { return m_QueueName; }
    void getQueueID(int &QueueID) const { QueueID = m_QueueID; }
    const int getQueueID(void) const { return m_QueueID; }
    const int getQueueType(void) const { return m_QueueType; }
    void addOneUser(void) { ++m_numOfUsers; }
    void removeOneUser(void) { --m_numOfUsers; }
    int getNumOfUsers(void) { return m_numOfUsers; }
    virtual int getQueueSize(void) const = 0;
    virtual int putMsg(ASC_Msg *Msg, const int SynchMsg) = 0;
    virtual int getMsg(ASC_Msg **Msg, const float WaitTime) = 0;
    virtual int getMsg(const int MsgType, 
    ASC_Msg **Msg, const float WaitTime) = 0;
    virtual int peepMsg(ASC_Msg **Msg) = 0;
    virtual int peepMsg(const int MsgType, ASC_Msg **Msg) = 0;
    virtual void commitMsg(ASC_Msg *Msg) = 0;
protected:
private:
    ASC_MsgQueue(void):m_QueueName(0),m_QueueID(0),m_QueueType(0) {}
    char *m_QueueName;
    int m_QueueType;
    int m_QueueID;
    int m_numOfUsers;
    ASC_MsgQueue(const ASC_MsgQueue & TheQueue); 
    ASC_MsgQueue & operator=(const ASC_MsgQueue & TheQueue);
};
Constructors

This constructor is used to construct a queue.

Syntax:

ASC_MsgQueue(const char *MsgQueueName, const int MsgQueueID, const int QueueType);

These constructors are used to retrieve a message queue.

Syntax:

ASC_MsgQueue(const char *MsgQueueName, const int MsgQueueType);
ASC_MsgQueue(const int MsgQueueID, const int MsgQueueType);
ASC_MsgQueue(const int MsgQueueType);
Public methods

The following ar e the public methods.

addOneUser, removeOneUser, getNumOfUsers

These methods are used to keep track number of users are currently using a queue. This information is used for deleting a queue, because a queue can be deleted only when it is currently used by one user.

Syntax:

void addOneUser(void) { ++m_numOfUsers; }
void removeOneUser(void) { --m_numOfUsers; }
int getNumOfUsers(void) { return m_numOfUsers;//
getQueueSize

Gets how many messages are in a queue.

Syntax:

virtual int getQueueSize(void) const = 0;
putMsg

This member function inserts a message into the queue.

Syntax:

virtual int putMsg(ASC_Msg *Msg, const int SynchMsg) = 0;
getMsg

This member function retrieves a message from the top of the queue (the message staying in the queue the longest). Once the action is completed, the message is removed from the queue.

Syntax:

virtual int getMsg(ASC_Msg **Msg, const float WaitTime)= 0;

This member function retrieves the first message which matches the type (the message with the type staying in the queue the longest). Once the action is completed, the message is removed from the queue.

Syntax:

virtual int getMsg(const int MsgType, ASC_Msg **Msg, const float WaitTime) = 0;
peepMsg

These functions do not remove messages from a queue.

Syntax:

virtual int peepMsg(ASC_Msg **Msg)=0;
virtual int peepMsg(const int MsgType, ASC_Msg **Msg) = 0;
commitMsg

This function is used to commit a synchronous message after the receiver has received the message. Before the receiver calls this function, the sender thread is blocked.

Syntax:

virtual void commitMsg(ASC_Msg *Msg) = 0;

ThreadMsgQueue class

This class is generated by subclassing the abstract ASC_MsgQueue class to provide message queues for inter-thread communication. It essentially redefines all message queue interface functions.

Synopsis
class ThreadMsgQueue : public ASC_MsgQueue {
public:
    ThreadMsgQueue(const char *MsgQueueName, const int MsgQueueID,
    const int MsgQueueType = ASC_ThreadQueue);
    ThreadMsgQueue(const char *MsgQueueName, 
    const int MsgQueueType = ASC_ThreadQueue);
    ThreadMsgQueue(const int MsgQueueID, 
    const int MsgQueueType = ASC_ThreadQueue);
    ~ThreadMsgQueue(void);
    int getQueueSize(void) const { return m_MsgList.size(); }
    int putMsg(ASC_Msg *Msg, const int AsychMsg); 
    int getMsg(ASC_Msg **Msg, const float WaitTime); 
    int getMsg(const int MsgType, 
    ASC_Msg **Msg, const float WaitTime);
    int peepMsg(ASC_Msg **Msg);
    int peepMsg(const int MsgType, ASC_Msg **Msg);
    void commitMsg(ASC_Msg *Msg) { Msg->commitMsgWait(); }
    inline std::vector<ASC_Msg*>::iterator
    find_by_type(std::vector<ASC_Msg*> &container, int type);
private:
    std::vector<ASC_Msg*> m_MsgList;
    ASC_Mutex *m_TheMutex;
    ASC_Condition *m_TheCond;
    ThreadMsgQueue(const ThreadMsgQueue & TheQueue); 
    ThreadMsgQueue & operator=(const ThreadMsgQueue & TheQueue);
};
Public methods

The following are the public methods.

getQueueSize

Retrieves the number of messages in the queue.

Syntax:

int getQueueSize(void)const{return m_MsgList.size(); }
putMsg

Saves a message into the queue. This function returns immediately when it sends an asynchronous message.

Syntax:

int putMsg(ASC_Msg *Msg, const int AsychMsg);
getMsg

Retrieves a message. This function removes a message from the head of the queue.

Syntax:

int getMsg(ASC_Msg **Msg, const float WaitTime);
getMsg

Retrieves a message. This function removes a message from the queue which matches up with the type specified.

Syntax:

int getMsg(const int MsgType, ASC_Msg **Msg, const float WaitTime);
peepMsg

The following two functions are similar to get functions, however, they do not remove messages from the queue.

Syntax:

int peepMsg(ASC_Msg **Msg);
int peepMsg(const int MsgType, ASC_Msg **Msg);
commitMsg

Required to store the message.

Syntax:

void commitMsg(ASC_Msg *Msg) { Msg->commitMsgWait(); }

Message class

Use ThreadMsg to generate message objects. Message objects are transferred among threads. You can use this basic class to transfer messages containing the message type and message text. You can generate a customized message object through subclassing this class, to add desired message contents.

ThreadMsg also provides the means for the message queue object to handle synchronous and asynchronous messages.

Synopsis
class ASC_Msg {
public:
    ASC_Msg(int MsgType, void *Msg);
    ASC_Msg(int MsgType);
    virtual ~ASC_Msg(void);
    void setType(const int MsgType) { m_Type = MsgType; }
    void setMsg(void *Msg) { m_Text = Msg; }
    int getType(void) const { return m_Type; }
    void getType(int &MsgType) const { MsgType = m_Type; }
    void* getMsg(void) const { return m_Text; }
    void getMsg(void **Msg) const { *Msg = m_Text; }
    operator char*(void) { return (char *)m_Text; }
    operator int&(void) { return m_Type; }
    virtual void commitMsgWait(void);
    virtual void doMsgWait(void);
    void initSyn(void);
protected:
private:
    int m_Type;
    void *m_Text;
    int m_MsgStatus;
    ASC_Mutex *m_TheMutex;
    ASC_Condition *m_TheCond;
    ASC_Msg(void);
};
Constructors
ASC_Msg(int MsgType, void *Msg);

Creates a message.

Public methods

The following are the public methods.

doMsgWait
void doMsgWait(void)

This function blocks the sender and waits for the receiver to commit the message. This function is used only by ASC_MsgQueue.void commitMsgWait(void).

commitMsgWait
void commitMsgWait(void)

This function commits the message and releases the sender. The application can use either this one or one in ASC_MsgQueue to commit a message.

initSyn
void initSyn(void);

This function initializes a message.

XML JMX interface

For overview information on the JMX interface, refer to the ASAP Server Configuration Guide. For complete reference information on the JMX interface, refer to the ASAP Online Reference.

ASAP daemon API

The ASAP daemon consists of two parts: a daemon server and a group of client APIs for WebLogic Server application developers.

The ASAP daemon server is packaged in asaplibcommon.jar. It can be started without ASAP or WLS being activated and keeps running until the user stops the server by means of a script. For more information, refer to the ASAP System Administrator's Guide. The server always listens to requests issued from WLS applications. When the ASAP daemon receives a request, it performs the relevant I/O operation against the current ASAP instance.

The ASAP daemon client is not an independent program. It consists of the client APIs, plus the client configuration data in asap.ear. In asap.ear, the ASAP daemon client requires the following configuration arrangement (particularly those that appear in bold):

Contents of asap.ear: after compilation

<root>
ssam<ENV_ID>.jar
srp.jar
jsrp_connector.rar
jmx_connector.rar 
sadtConsole.war
sadt.jar
<lib>
xercesImpl.jar
asapd_utils.jar 
<META-INF>
weblogic-application.xml
application.xml
MANIFEST.MF

Java Program Sources:

  • $ASAP_BASE/jshared/src – build.xml creates $ASAP_BASE/lib/asap.ear with the proper deployment descriptors, jmx_connector.rar, asapd.jar, jsrp_connector.rar and xercesImpl.jar

  • $ASAP_BASE/jmx/src/web – build.xml adds sadtConsole.war to asap.ear

  • $ASAP_BASE/jmx/src/ejb – build.xml adds sadt.jar to asap.ear

  • $ASAP_BASE/jsrp/src – build.xml adds srp.jar to asap.ear.

  • $ASAP_BASE/security/src – build.xml adds ssam.jar to asap.ear

The following configuration data must be customized before asap.ear is deployed in WebLogic Server.

Daemon server host and port, defined in META-INF/ra.xml within jmx_connector.rar:

  • replace "__HOSTNAME__" and "__PORTNUMBER__" with real host and port values

Daemon client authorized user name, defined in WEB-INF/weblogic.xml within sadtConsole.war:

  • replace "_USERNAME_" with real WLS login name

Daemon client used information, defined in WEB-INF/web.xml within sadtConsole.war:

  • replace "ASAPDEV_ASAP_BASE" with ASAP_BASE directory (mirror) in WLS

  • replace "ASAPDEV_SYBASE" with Sybase interfaces file path (mirror) in WLS

  • replace "ASAPDEV_CTRL_PSWD" with current ASAP control password

    Note:

    Because ASAP_BASE and SYBASE file are mirrored on the WLS side, the daemon server can use actual paths.

The two mirrors can be relative paths, e.g., "A46". A relative path is based on the WLS domain directory. Never replace these paths with the real $ASAP_BASE path or the real $SYBASE/interfaces path if WLS is on the same machine as ASAP.

The Sybase interfaces file name in the WLS mirror should be same as on the ASAP side.

Replace "SAAS-1" with $ENV_ID in the WLS application JNDI prefix string in the following files:

  • META-INF/weblogic-ra.xml within jmx_connector.rar

  • WEB-INF/web.xml within sadtConsole.war

  • WEB-INF/weblogic.xml within sadtConsole.war

  • META-INF/weblogic-ejb-jar.xml with sadt.jar

The necessary "Class-Path" information will be properly defined in the related MANIFEST.MF files.

Daemon client APIs

The asapd.jar provides daemon client APIs to WebLogic Server application developers to provide a consistent API for the internal protocols of the daemon process.

The ASAP daemon client APIs are based on two primary classes: RemoteFile, RemoteCommand. They have a common superclass RemoteAccess, which defines some common constant data and methods.

RemoteFile

A remote file can be either a file or a directory in remote site, that is, a daemon server site. The methods of this class are designed to fully or partially substitute for the same/similar methods in Java File class.

Syntax:

public RemoteFile( ASAPDataSource _ds, String remotePath, int pathBase)
throws Exception

Constructors:

  • _ds: An object of ASAPDataSource (this class is provided in asapd_utils.jar); a factory of connections to the daemon server process.

  • remotePath: A string of path of a remote file/directory that the client wants to access.

  • pathBase: An integer that represents the remote path base. The supported bases are:

    • RemoteFile.ROOT_BASED – the remotePath is an absolute path

    • RemoteFile.ASAP_BASED – the remotePath is a path relative to the remote $ASAP_BASE

    • RemoteFile.SYBASE_BASED – the remotePath is a path relative to the remote $SYBASE

Property checking methods
public boolean canRead()
public boolean canWrite()
public boolean exists()
public boolean isFile()
public boolean isDirectory()
public boolean isHidden()
public boolean isAbsolute()
public long lastModified()
public long length()
public String toString()
public String getPath()
public String getName()
public String getParent()

All these methods behave in the same way as Java's File class, except for the following conditions.

  • if a RemoteFile isDirectory, calling length() is not relevant.

  • if a RemoteFile does not exist, all other state checking return false.

  • all the properties have their values same as the RemoteFile constructor was called.

get Methods

This method provides WLS client with the ability to retrieve a file from a remote site. The file path has been specified in the constructor.

Syntax:

public InputStream get()
throws Exception
put Methods

These methods provide the WLS client with the ability to save a set of data to a remote file. The file path has been specified in the constructor.

  • put(byte[] buffer) is used primarily to save any data set in memory to a remote file.

  • put(InputStream is, long size) can be called after the “get" of an InputStream, which is usually of a subclass of InputStream, such as FileInputStream or PipedInputStream.

  • put(String localFilePath) is used to transfer a local file to a remote file whose path has been specified in the constructor. This method is designed to minimize modification to the existing WLS application. The application can get a remote file, edit it, and then save it locally (the WLS application writes files back in many different ways depending on the particular logic).

Syntax:

public void put(byte[] buffer)
throws Exception
public void put(InputStream is, long size)
throws Exception
public void put(String localFilePath)
throws Exception
RemoteCommand

A remote command can be either a special daemon command or a UNIX script in a remote site, that is, a daemon server site.

Syntax:

public RemoteCommand(ASAPDataSource _ds, CommandInfo _commInfo)
throws Exception

Constructors:

  • _ds: An object of ASAPDataSource (this class is provided in jmx_connector.jar); a factory of connection to the daemon server process.

  • _commInfo: A CommandInfo that represents the command property, including:

    • public byte command - the command, which can be REM_REQ_COPY_FILE – copy a file from source file/dir to dest file/dir; REM_REQ_MOVE_FILE – move a file from source file/dir to dest file/dir; REM_REQ_EXTRACT_JFILE – unjar a dest file from a source jar file

    • public byte base_dir - the path base, same as RemoteFile

    • public String src_dir - the resource directory

    • public String src_file - the resource file

    • public String dest_dir - the destination directory

    • public String dest_file - the destination file

action Methods

These three methods provide WLS client with the ability to actually perform the command specified in the constructor.

public void copy()
throws Exception
public void move()
throws Exception
public void unjar()
throws Exception