Annotation of libaitrpc/inc/aitrpc.h, revision 1.2.4.8

1.1       misho       1: /*************************************************************************
                      2: * (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
                      3: *  by Michael Pounov <misho@openbsd-bg.org>
                      4: *
                      5: * $Author: misho $
1.2.4.8 ! misho       6: * $Id: aitrpc.h,v 1.2.4.7 2011/08/19 09:20:46 misho Exp $
1.1       misho       7: *
1.2       misho       8: **************************************************************************
                      9: The ELWIX and AITNET software is distributed under the following
                     10: terms:
                     11: 
                     12: All of the documentation and software included in the ELWIX and AITNET
                     13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
                     14: 
                     15: Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
                     16:        by Michael Pounov <misho@elwix.org>.  All rights reserved.
                     17: 
                     18: Redistribution and use in source and binary forms, with or without
                     19: modification, are permitted provided that the following conditions
                     20: are met:
                     21: 1. Redistributions of source code must retain the above copyright
                     22:    notice, this list of conditions and the following disclaimer.
                     23: 2. Redistributions in binary form must reproduce the above copyright
                     24:    notice, this list of conditions and the following disclaimer in the
                     25:    documentation and/or other materials provided with the distribution.
                     26: 3. All advertising materials mentioning features or use of this software
                     27:    must display the following acknowledgement:
                     28: This product includes software developed by Michael Pounov <misho@elwix.org>
                     29: ELWIX - Embedded LightWeight unIX and its contributors.
                     30: 4. Neither the name of AITNET nor the names of its contributors
                     31:    may be used to endorse or promote products derived from this software
                     32:    without specific prior written permission.
                     33: 
                     34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
                     35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     37: ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     44: SUCH DAMAGE.
                     45: */
1.1       misho      46: #ifndef __AITRPC_H
                     47: #define __AITRPC_H
                     48: 
                     49: 
                     50: #include <assert.h>
                     51: #include <stdlib.h>
                     52: #include <string.h>
                     53: #include <sys/types.h>
                     54: #include <sys/param.h>
1.2       misho      55: #if !defined(__NetBSD__)
1.1       misho      56: #include <sys/limits.h>
1.2       misho      57: #endif
1.1       misho      58: #include <sys/socket.h>
                     59: 
                     60: 
                     61: #define RPC_VERSION            1
                     62: #define RPC_DEFPORT            2611
                     63: 
                     64: 
                     65: /* RPC builtin registed calls */
                     66: 
1.2       misho      67: #define CALL_BLOBSHUTDOWN      "rpcBLOBServerShutdown"
                     68: #define CALL_BLOBCLIENTS       "rpcBLOBServerClients"
                     69: #define CALL_BLOBVARS          "rpcBLOBServerVars"
                     70: #define CALL_BLOBSTATE         "rpcBLOBServerState"
                     71: 
                     72: #define CALL_SRVSHUTDOWN       "rpcServerShutdown"
1.1       misho      73: #define CALL_SRVCLIENTS                "rpcServerClients"
                     74: #define CALL_SRVCALLS          "rpcServerCalls"
                     75: #define CALL_SRVSESSIONS       "rpcServerSessions"
                     76: 
                     77: 
                     78: /* RPC types */
                     79: 
                     80: typedef enum {
                     81:        empty,                          // empty -> variable is not set
1.2       misho      82:        buffer, string, blob,           // buffer -> uint8_t*; string -> int8_t*; blob -> void*(+socket);
1.1       misho      83:        size, offset, datetime,         // size -> size_t; offset -> off_t; datetime -> time_t;
                     84:        real, bigreal,                  // real -> float; bigreal -> double;
                     85:        u8, u16, u32, u64,              // unsigned integers ...
                     86:        i8, i16, i32, i64               // integers ...
                     87: } rpc_type_t;
                     88: 
1.2       misho      89: typedef enum {
1.2.4.5   misho      90:        disable, enable, kill,          // for blob.state
1.2       misho      91:        ok, error,                      // for blob reply
                     92:        get, set, unset                 // for blob request
                     93: } cmd_type_t;
                     94: 
1.1       misho      95: /* RPC value */
                     96: 
                     97: typedef struct {
                     98:        rpc_type_t      val_type;
                     99:        size_t          val_len;
                    100:        union {
                    101:                uint8_t         *buffer;
                    102:                int8_t          *string;
1.2       misho     103:                uint32_t        blob;
1.1       misho     104:                size_t          size;
                    105:                off_t           offset;
                    106:                time_t          datetime;
                    107:                float           real;
                    108:                double          bigreal;
                    109:                uint8_t         u8;
                    110:                uint16_t        u16;
                    111:                uint32_t        u32;
                    112:                uint64_t        u64;
                    113:                int8_t          i8;
                    114:                int16_t         i16;
                    115:                int32_t         i32;
                    116:                int64_t         i64;
                    117:        } val;
                    118: } __packed rpc_val_t;
                    119: 
                    120: #define RPC_TYPE_VAL(vl)               ((vl)->val_type)
                    121: #define RPC_LEN_VAL(vl)                        ((vl)->val_len)
1.2       misho     122: #define RPC_BLOB_CHUNKS(vl, n)         ((vl)->val_len / (n) + ((vl)->val_len % (n)) ? 1 : 0)
1.1       misho     123: #define RPC_EMPTY_VAL(vl)              ((vl)->val_type == empty)
                    124: 
                    125: #define RPC_GET_BUF(vl)                        (assert((vl)->val_type == buffer), (vl)->val.buffer)
                    126: #define RPC_GET_STR(vl)                        (assert((vl)->val_type == string), (vl)->val.string)
1.2       misho     127: #define RPC_GET_BLOB(vl)               (assert((vl)->val_type == blob), (vl)->val.blob)
1.1       misho     128: #define RPC_GET_SIZE(vl)               (assert((vl)->val_type == size), (vl)->val.size)
                    129: #define RPC_GET_OFF(vl)                        (assert((vl)->val_type == offset), (vl)->val.offset)
                    130: #define RPC_GET_TIME(vl)               (assert((vl)->val_type == datetime), (vl)->val.datetime)
                    131: #define RPC_GET_REAL(vl)               (assert((vl)->val_type == real), (vl)->val.real)
                    132: #define RPC_GET_BREAL(vl)              (assert((vl)->val_type == bigreal), (vl)->val.bigreal)
                    133: #define RPC_GET_U8(vl)                 (assert((vl)->val_type == u8), (vl)->val.u8)
                    134: #define RPC_GET_U16(vl)                        (assert((vl)->val_type == u16), (vl)->val.u16)
                    135: #define RPC_GET_U32(vl)                        (assert((vl)->val_type == u32), (vl)->val.u32)
                    136: #define RPC_GET_U64(vl)                        (assert((vl)->val_type == u64), (vl)->val.u64)
                    137: #define RPC_GET_I8(vl)                 (assert((vl)->val_type == i8), (vl)->val.i8)
                    138: #define RPC_GET_I16(vl)                        (assert((vl)->val_type == i16), (vl)->val.i16)
                    139: #define RPC_GET_I32(vl)                        (assert((vl)->val_type == i32), (vl)->val.i32)
                    140: #define RPC_GET_I64(vl)                        (assert((vl)->val_type == i64), (vl)->val.i64)
                    141: 
                    142: #define RPC_SET_BUF(vl, v, l)          do { rpc_val_t *val = (vl); assert(val); val->val.buffer = malloc(l); \
                    143:                                                if (val->val.buffer) { \
                    144:                                                        val->val_type = buffer; val->val_len = l; \
                    145:                                                        memcpy(val->val.buffer, v, l); \
                    146:                                                } } while (0)
                    147: #define RPC_SET_STR(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val.string = (int8_t*) strdup(v); \
                    148:                                                if (val->val.string) { \
                    149:                                                        val->val_type = string; val->val_len = strlen(v) + 1; \
                    150:                                                } } while (0)
1.2       misho     151: #define RPC_SET_BLOB(vl, v, l)         do { rpc_val_t *val = (vl); assert(val); val->val_type = blob; \
                    152:                                                val->val.blob = v; val->val_len = l; } while (0)
                    153: #define RPC_SET_BLOB2(vl, b)           do { rpc_val_t *val = (vl); assert(val); assert(b); val->val_type = blob; \
                    154:                                                val->val.blob = b->blob_var; val->val_len = b->blob_len; } while (0)
1.1       misho     155: #define RPC_SET_SIZE(vl, v)            do { rpc_val_t *val = (vl); assert(val); val->val_type = size; val->val.size = v; \
                    156:                                                val->val_len = sizeof(size_t); } while (0)
                    157: #define RPC_SET_OFF(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val_type = offset; val->val.offset = v; \
                    158:                                                val->val_len = sizeof(off_t); } while (0)
                    159: #define RPC_SET_TIME(vl, v)            do { rpc_val_t *val = (vl); assert(val); val->val_type = datetime; val->val.datetime = v; \
                    160:                                                val->val_len = sizeof(time_t); } while (0)
                    161: #define RPC_SET_REAL(vl, v)            do { rpc_val_t *val = (vl); assert(val); val->val_type = real; val->val.real = v; \
                    162:                                                val->val_len = sizeof(float); } while (0)
                    163: #define RPC_SET_BREAL(vl, v)           do { rpc_val_t *val = (vl); assert(val); val->val_type = bigreal; val->val.bigreal = v; \
                    164:                                                val->val_len = sizeof(double); } while (0)
                    165: #define RPC_SET_U8(vl, v)              do { rpc_val_t *val = (vl); assert(val); val->val_type = u8; val->val.u8 = v; \
                    166:                                                val->val_len = sizeof(uint8_t); } while (0)
                    167: #define RPC_SET_U16(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val_type = u16; val->val.u16 = v; \
                    168:                                                val->val_len = sizeof(uint16_t); } while (0)
                    169: #define RPC_SET_U32(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val_type = u32; val->val.u32 = v; \
                    170:                                                val->val_len = sizeof(uint32_t); } while (0)
                    171: #define RPC_SET_U64(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val_type = u64; val->val.u64 = v; \
                    172:                                                val->val_len = sizeof(uint64_t); } while (0)
                    173: #define RPC_SET_I8(vl, v)              do { rpc_val_t *val = (vl); assert(val); val->val_type = i8; val->val.i8 = v; \
                    174:                                                val->val_len = sizeof(int8_t); } while (0)
                    175: #define RPC_SET_I16(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val_type = i16; val->val.i16 = v; \
                    176:                                                val->val_len = sizeof(int16_t); } while (0)
                    177: #define RPC_SET_I32(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val_type = i32; val->val.i32 = v; \
                    178:                                                val->val_len = sizeof(int32_t); } while (0)
                    179: #define RPC_SET_I64(vl, v)             do { rpc_val_t *val = (vl); assert(val); val->val_type = i64; val->val.i64 = v; \
                    180:                                                val->val_len = sizeof(int64_t); } while (0)
                    181: 
                    182: #define RPC_FREE_VAL(vl)               do { rpc_val_t *val = (vl); assert(val); \
                    183:                                                if (val->val_type == buffer && val->val.buffer) { \
                    184:                                                        free(val->val.buffer); \
                    185:                                                        val->val.buffer = NULL; \
                    186:                                                } \
                    187:                                                if (val->val_type == string && val->val.string) { \
                    188:                                                        free(val->val.string); \
                    189:                                                        val->val.string = NULL; \
                    190:                                                } \
                    191:                                                val->val_type = val->val_len = 0; \
                    192:                                        } while (0)
                    193: 
                    194: 
1.2       misho     195: #define RPC_CALLBACK_CHECK_INPUT(x)    do { \
                    196:                                                if (!x) { \
                    197:                                                        rpc_SetErr(22, "Error:: invalid callback parameters ...\n"); \
                    198:                                                        return -1; \
                    199:                                                } \
                    200:                                        } while (0)
                    201: #define RPC_CALLBACK_CHK_ARGS(f, n)    do { \
                    202:                                                RPC_CALLBACK_CHECK_INPUT(f); \
                    203:                                                if (f && f->func_args != n) { \
1.1       misho     204:                                                        rpc_SetErr(22, "Error:: different number of arguments!\n"); \
                    205:                                                        return -1; \
                    206:                                                } \
1.2       misho     207:                                        } while (0)
1.1       misho     208: 
                    209: 
                    210: /* RPC session identification */
                    211: 
                    212: typedef struct {
                    213:        uint8_t         sess_version;
                    214:        uint32_t        sess_program;
                    215:        uint32_t        sess_process;
                    216: } __packed rpc_sess_t;
                    217: 
                    218: 
                    219: /* Server managment RPC functions ... */
                    220: 
                    221: // RPC function registration element!
                    222: typedef struct tagRPCFunc {
                    223:        uint16_t                func_tag;
                    224:        uint32_t                func_hash;
                    225:        int8_t                  func_file[MAXPATHLEN];
                    226:        int8_t                  func_name[UCHAR_MAX + 1];
                    227: 
                    228:        int8_t                  func_args;
1.2.4.6   misho     229:        rpc_val_t               *func_vars;
1.1       misho     230: 
1.2       misho     231:        void                    *func_parent;
1.1       misho     232:        struct tagRPCFunc       *func_next;
                    233: } rpc_func_t;
                    234: 
                    235: 
                    236: /* Network RPC packet - Client request */
                    237: 
                    238: struct tagRPCCall {
                    239:        rpc_sess_t      call_session;
                    240:        uint16_t        call_tag;
                    241:        uint32_t        call_hash;
                    242:        uint8_t         call_argc;
                    243: } __packed;
                    244: 
                    245: /* Network RPC packet - Server response */
                    246: 
                    247: struct tagRPCRet {
                    248:        rpc_sess_t      ret_session;
                    249:        uint16_t        ret_tag;
                    250:        uint32_t        ret_hash;
                    251:        int32_t         ret_retcode;
                    252:        int32_t         ret_errno;
                    253:        uint8_t         ret_argc;
                    254: } __packed;
                    255: 
1.2       misho     256: /* Network BLOB packet - Header */
                    257: 
                    258: struct tagBLOBHdr {
                    259:        rpc_sess_t      hdr_session;
                    260:        uint8_t         hdr_cmd;
                    261:        uint32_t        hdr_var;
                    262:        uint32_t        hdr_len;
                    263:        uint32_t        hdr_ret;
                    264: } __packed;
                    265: 
1.1       misho     266: /* Network RPC client & server elements */
                    267: 
                    268: typedef struct {
                    269:        struct sockaddr cli_sa;         // host info
1.2.4.2   misho     270:        int             cli_sock;       // socket fd
1.1       misho     271:        pthread_t       cli_tid;        // TID of thread
                    272: 
                    273:        void            *cli_parent;    // pointer to parent rpc_srv_t for server or to rpc_sess_t for client
                    274: } rpc_cli_t;
                    275: 
1.2       misho     276: 
                    277: // BLOB registration element!
                    278: typedef struct tagBLOB {
                    279:        uint32_t        blob_var;
                    280: 
                    281:        size_t          blob_len;       // size of allocated BLOB data
                    282:        void            *blob_data;     // BLOB data
                    283: 
                    284:        struct tagBLOB  *blob_next;
                    285: } rpc_blob_t;
                    286: 
1.1       misho     287: typedef struct {
1.2       misho     288:        rpc_sess_t      srv_session;    // RPC session registration info
1.1       misho     289:        int             srv_numcli;     // maximum concurent client connections
                    290: 
1.2       misho     291:        rpc_cli_t       srv_server;     // RPC server socket
                    292:        rpc_cli_t       *srv_clients;   // connected rpc client sockets
                    293: 
                    294:        rpc_func_t      *srv_funcs;     // registered functions list
                    295: 
                    296:        pthread_mutex_t srv_mtx;
1.2.4.5   misho     297:        cmd_type_t      srv_kill;
1.2       misho     298: 
                    299:        struct {
1.2.4.5   misho     300:                cmd_type_t      state;          // BLOB server state: ==0 disable | !=0 enable
1.2       misho     301:                char            dir[UCHAR_MAX + 1];
                    302: 
                    303:                rpc_cli_t       server;         // BLOB server socket
                    304:                rpc_cli_t       *clients;       // connected blob client sockets
1.1       misho     305: 
1.2       misho     306:                rpc_blob_t      *blobs;         // registered blob variables list
1.1       misho     307: 
1.2       misho     308:                pthread_mutex_t mtx;
                    309:        }               srv_blob;
1.1       misho     310: } rpc_srv_t;
                    311: 
                    312: 
1.2       misho     313: /* 
                    314:  * (*rpc_callback_t)() Callback type definition for RPC call in server process
                    315:  * @arg1 = current execution RPC call function
                    316:  * @arg2 = number of items in input array from call request
                    317:  * @arg3 = input array with values from RPC call execution request
                    318:  * return: -1 error or >-1 success execution
                    319:  */
                    320: typedef int (*rpc_callback_t)(rpc_func_t *, int, rpc_val_t *);
1.1       misho     321: 
                    322: 
                    323: // -----------------------------------------------------------------------
                    324: 
                    325: /* Error support functions */
                    326: 
1.2.4.4   misho     327: // rpc_GetErrno() Get error code of last operation
                    328: inline int rpc_GetErrno();
                    329: // rpc_GetError() Get error text of last operation
                    330: inline const char *rpc_GetError();
1.1       misho     331: 
                    332: 
                    333: /* RPC Server side functions */
                    334: 
                    335: /*
                    336:  * rpc_srv_initServer() Init & create RPC Server
                    337:  * @regProgID = ProgramID for authentication & recognition
                    338:  * @regProcID = ProcessID for authentication & recognition
                    339:  * @concurentClients = Concurent clients at same time to this server
1.2.4.1   misho     340:  * @family = Family type, AF_INET, AF_INET6 or AF_LOCAL
                    341:  * @csHost = Host name or address for bind server, if NULL any address
1.1       misho     342:  * @Port = Port for bind server, if Port == 0 default port is selected
                    343:  * return: NULL == error or !=NULL bind and created RPC server instance
                    344:  */
                    345: rpc_srv_t *rpc_srv_initServer(u_int regProgID, u_int regProcID, int concurentClients, 
1.2.4.8 ! misho     346:                u_short family, const char *csHost, u_short Port);
1.1       misho     347: /*
                    348:  * rpc_srv_endServer() Destroy RPC server, close all opened sockets and free resources
                    349:  * @srv = RPC Server instance
                    350:  * return: none
                    351:  */
                    352: void rpc_srv_endServer(rpc_srv_t * __restrict srv);
                    353: /*
                    354:  * rpc_srv_execServer() Execute Main server loop and wait for clients requests
                    355:  * @srv = RPC Server instance
                    356:  * return: -1 error or 0 ok, infinite loop ...
                    357:  */
                    358: int rpc_srv_execServer(rpc_srv_t * __restrict srv);
                    359: 
                    360: /*
1.2       misho     361:  * rpc_srv_initBLOBServer() Init & create BLOB Server
1.2.4.3   misho     362:  * @srv = RPC server instance
1.2       misho     363:  * @Port = Port for bind server, if Port == 0 default port is selected
                    364:  * @diskDir = Disk place for BLOB file objects
                    365:  * return: -1 == error or 0 bind and created BLOB server instance
                    366:  */
1.2.4.8 ! misho     367: int rpc_srv_initBLOBServer(rpc_srv_t * __restrict srv, u_short Port, const char *diskDir);
1.2       misho     368: /*
                    369:  * rpc_srv_endBLOBServer() Destroy BLOB server, close all opened sockets and free resources
                    370:  * @srv = RPC Server instance
                    371:  * return: none
                    372:  */
                    373: void rpc_srv_endBLOBServer(rpc_srv_t * __restrict srv);
                    374: /*
                    375:  * rpc_srv_execBLOBServer() Execute Main BLOB server loop and wait for clients requests
                    376:  * @srv = RPC Server instance
                    377:  * return: -1 error or 0 ok, infinite loop ...
                    378:  */
                    379: int rpc_srv_execBLOBServer(rpc_srv_t * __restrict srv);
                    380: 
                    381: /*
1.1       misho     382:  * rpc_srv_registerCall() Register call to RPC server
                    383:  * @srv = RPC Server instance
                    384:  * @csModule = Module name, if NULL self binary
                    385:  * @csFunc = Function name
1.2       misho     386:  * @args = Number of return function arguments, use for restriction case!
1.1       misho     387:  * return: -1 error or 0 register ok
                    388:  */
                    389: int rpc_srv_registerCall(rpc_srv_t * __restrict srv, const char *csModule, const char *csFunc, 
                    390:                unsigned char args);
                    391: /*
                    392:  * rpc_srv_unregisterCall() Unregister call from RPC server
                    393:  * @srv = RPC Server instance
                    394:  * @csModule = Module name, if NULL self binary
                    395:  * @csFunc = Function name
                    396:  * return: -1 error, 0 not found call, 1 unregister ok
                    397:  */
                    398: int rpc_srv_unregisterCall(rpc_srv_t * __restrict srv, const char *csModule, const char *csFunc);
                    399: /*
                    400:  * rpc_srv_getFunc() Get registered call from RPC server by Name
                    401:  * @srv = RPC Server instance
                    402:  * @csModule = Module name, if NULL self binary
                    403:  * @csFunc = Function name
                    404:  * return: NULL not found call, !=NULL return call
                    405:  */
                    406: rpc_func_t *rpc_srv_getFunc(rpc_srv_t * __restrict srv, const char *csModule, const char *csFunc);
                    407: /*
                    408:  * rpc_srv_getCall() Get registered call from RPC server
                    409:  * @srv = RPC Server instance
                    410:  * @tag = tag for function
                    411:  * @hash = hash for function
                    412:  * return: NULL not found call, !=NULL return call
                    413:  */
                    414: inline rpc_func_t *rpc_srv_getCall(rpc_srv_t * __restrict srv, uint16_t tag, uint32_t hash);
                    415: /*
                    416:  * rpc_srv_execCall() Execute registered call from RPC server
                    417:  * @call = Register RPC call
                    418:  * @rpc = IN RPC call structure
                    419:  * @args = IN RPC call array of rpc values
                    420:  * return: -1 error, !=-1 ok
                    421:  */
1.2       misho     422: int rpc_srv_execCall(rpc_func_t * __restrict call, struct tagRPCCall * __restrict rpc, 
                    423:                rpc_val_t * __restrict args);
1.1       misho     424: 
                    425: 
                    426: /*
1.2.4.6   misho     427:  * rpc_srv_returnVars() Init return variables for RPC call and zeroed values
1.2       misho     428:                                        (for safe handling return values, use this!)
                    429:  * @call = RPC function call
1.2.4.6   misho     430:  * @varnum = Number of return variables
                    431:  * return: NULL error, !=NULL array with return values for RPC call with varnum items
1.2       misho     432:  */
1.2.4.6   misho     433: inline rpc_val_t *rpc_srv_returnVars(rpc_func_t * __restrict call, int varnum);
1.2       misho     434: /*
1.2.4.6   misho     435:  * rpc_srv_allocVars() Allocate array for call variables, 
                    436:                                if already allocated memory for RPC call reallocate used space
1.1       misho     437:  * @call = RPC function call
1.2.4.6   misho     438:  * @varnum = Number of variables, if ==0 free previous allocated variables
                    439:  * return: -1 error, !=-1 return varnum value
1.1       misho     440:  */
1.2.4.6   misho     441: inline int rpc_srv_allocVars(rpc_func_t * __restrict call, int varnum);
                    442: #define rpc_srv_freeVars(_call)        (assert((_call)), rpc_srv_allocVars((_call), 0))
1.1       misho     443: /*
1.2.4.6   misho     444:  * rpc_srv_zeroVars() Clean values from variables of RPC call
1.1       misho     445:  * @call = RPC function call
1.2.4.6   misho     446:  * return: -1 error, !=-1 Returned number of cleaned RPC variables
1.1       misho     447:  */
1.2.4.6   misho     448: inline int rpc_srv_zeroVars(rpc_func_t * __restrict call);
1.1       misho     449: /*
1.2.4.6   misho     450:  * rpc_srv_copyVars() Copy variables for RPC call to new variable array
1.1       misho     451:  * @call = RPC function call
1.2.4.6   misho     452:  * @newvars = New allocated variables array, must be free after use
1.1       misho     453:  * return: -1 error, !=-1 Returned number of copied RPC variables
                    454:  */
1.2.4.6   misho     455: inline int rpc_srv_copyVars(rpc_func_t * __restrict call, rpc_val_t ** __restrict newvars);
1.1       misho     456: /*
1.2.4.6   misho     457:  * rpc_srv_getVars() Get variables array for RPC call
1.1       misho     458:  * @call = RPC function call
1.2.4.6   misho     459:  * @vars = Returned variables array, may be NULL
1.1       misho     460:  * return: -1 error, !=-1 Number of returned variables
                    461:  */
1.2.4.6   misho     462: inline int rpc_srv_getVars(rpc_func_t * __restrict call, rpc_val_t ** __restrict vars);
1.1       misho     463: 
                    464: 
1.2       misho     465: /*
                    466:  * rpc_srv_blobCreate() Create map blob to memory region and return object
                    467:  * @srv = RPC Server instance
                    468:  * @len = BLOB length object
                    469:  * return: NULL error or !=NULL allocated BLOB object
                    470:  */
                    471: inline rpc_blob_t *rpc_srv_blobCreate(rpc_srv_t * __restrict srv, int len);
                    472: /*
                    473:  * rpc_srv_blobMap() Map blob to memory region 
                    474:  * @srv = RPC Server instance
                    475:  * @blob = Map to this BLOB element
                    476:  * return: -1 error or 0 ok
                    477:  */
                    478: inline int rpc_srv_blobMap(rpc_srv_t * __restrict srv, rpc_blob_t * __restrict blob);
                    479: /*
                    480:  * rpc_srv_blobUnmap() Unmap blob memory region 
                    481:  * @blob = Mapped BLOB element
                    482:  * return: none
                    483:  */
                    484: inline void rpc_srv_blobUnmap(rpc_blob_t * __restrict blob);
                    485: /*
                    486:  * rpc_srv_blobFree() Free blob from disk & memory
                    487:  * @srv = RPC Server instance
                    488:  * @blob = Mapped BLOB element
                    489:  * return: -1 error or 0 ok
                    490:  */
                    491: inline int rpc_srv_blobFree(rpc_srv_t * __restrict srv, rpc_blob_t * __restrict blob);
                    492: 
                    493: /*
                    494:  * rpc_srv_registerBLOB() Register new BLOB to server
                    495:  * @srv = RPC Server instance
                    496:  * @len = BLOB length
                    497:  * return: NULL error or new registered BLOB
                    498:  */
                    499: rpc_blob_t *rpc_srv_registerBLOB(rpc_srv_t * __restrict srv, size_t len);
                    500: /*
                    501:  * rpc_srv_unregisterBLOB() Unregister BLOB from server
                    502:  * @srv = RPC Server instance
                    503:  * @var = BLOB Variable for unregister
                    504:  * return: -1 error, 0 not found call, 1 unregister ok
                    505:  */
                    506: int rpc_srv_unregisterBLOB(rpc_srv_t * __restrict srv, uint32_t var);
                    507: /*
                    508:  * rpc_srv_getBLOB() Get registered BLOB 
                    509:  * @srv = RPC Server instance
                    510:  * @var = hash for variable
                    511:  * return: NULL not found, !=NULL return blob var
                    512:  */
                    513: inline rpc_blob_t *rpc_srv_getBLOB(rpc_srv_t * __restrict srv, uint32_t var);
                    514: 
                    515: /*
                    516:  * rpc_srv_sendBLOB() Send mapped BLOB to client
                    517:  * @cli = Client instance
                    518:  * @blob = Mapped BLOB element
                    519:  * return: -1 error, 0 ok
                    520:  */
                    521: int rpc_srv_sendBLOB(rpc_cli_t * __restrict cli, rpc_blob_t * __restrict blob);
                    522: /*
                    523:  * rpc_srv_recvBLOB() Receive BLOB from client
                    524:  * @cli = Client instance
                    525:  * @blob = Mapped BLOB element
                    526:  * return: -1 error, 0 ok, >0 unreceived data from client, may be error?
                    527:  */
                    528: int rpc_srv_recvBLOB(rpc_cli_t * __restrict cli, rpc_blob_t * __restrict blob);
                    529: 
                    530: /*
                    531:  * rpc_cli_sendBLOB() Send BLOB to server
                    532:  * @cli = Client instance
                    533:  * @var = BLOB variable
                    534:  * @data = BLOB data
                    535:  * return: -1 error, 0 ok, 1 remote error
                    536:  */
                    537: int rpc_cli_sendBLOB(rpc_cli_t * __restrict cli, rpc_val_t * __restrict var, void * __restrict data);
                    538: /*
                    539:  * rpc_cli_recvBLOB() Receive BLOB from server
                    540:  * @cli = Client instance
                    541:  * @var = BLOB variable
                    542:  * @data = BLOB data, must be free after use!
                    543:  * return: -1 error, 0 ok, 1 remote error
                    544:  */
                    545: int rpc_cli_recvBLOB(rpc_cli_t * __restrict cli, rpc_val_t * __restrict var, void ** data);
                    546: /*
                    547:  * rpc_cli_delBLOB() Delete BLOB from server
                    548:  * @cli = Client instance
                    549:  * @var = BLOB variable
                    550:  * return: -1 error, 0 ok, 1 remote error
                    551:  */
                    552: int rpc_cli_delBLOB(rpc_cli_t * __restrict cli, rpc_val_t * __restrict var);
                    553: /*
                    554:  * rpc_cli_getBLOB() Receive BLOB from server and Delete after that.
                    555:  * @cli = Client instance
                    556:  * @var = BLOB variable
                    557:  * @data = BLOB data, must be free after use!
                    558:  * return: -1 error, 0 ok, >0 remote error
                    559:  */
                    560: inline int rpc_cli_getBLOB(rpc_cli_t * __restrict cli, rpc_val_t * __restrict var, void ** data);
                    561: 
                    562: 
                    563: 
1.1       misho     564: /* RPC Client side functions */
                    565: 
                    566: /*
                    567:  * rpc_cli_openClient() Connect to RPC Server
                    568:  * @ProgID = ProgramID for RPC session request
                    569:  * @ProcID = ProcessID for RPC session request
                    570:  * @family = Family socket type, AF_INET or AF_INET6
                    571:  * @csHost = Host name or IP address for bind server
                    572:  * @Port = Port for bind server, if Port == 0 default port is selected
                    573:  * return: NULL == error or !=NULL connection to RPC server established
                    574:  */
1.2.4.8 ! misho     575: rpc_cli_t *rpc_cli_openClient(u_int ProgID, u_int ProcID, 
1.2.4.7   misho     576:                u_short family, const char *csHost, u_short Port);
1.1       misho     577: /*
                    578:  * rpc_cli_closeClient() Close connection to RPC server and free resources
                    579:  * @cli = RPC Client session
                    580:  * return: none
                    581:  */
                    582: void rpc_cli_closeClient(rpc_cli_t * __restrict cli);
                    583: /*
                    584:  * rpc_cli_execCall() Execute RPC call
                    585:  * @cli = RPC Client session
                    586:  * @csModule = Module name, if NULL self binary
                    587:  * @csFunc = Function name for execute
                    588:  * @in_argc = IN count of arguments
                    589:  * @in_vals = IN RPC call array of rpc values
                    590:  * @out_argc = OUT returned count of arguments
                    591:  * @out_vals = OUT returned array of rpc values, must be free after use (see rpc_cli_freeVals())
                    592:  * return: -1 error or != -1 ok result
                    593:  */
                    594: int rpc_cli_execCall(rpc_cli_t *cli, const char *csModule, const char *csFunc, int in_argc, 
                    595:                rpc_val_t * __restrict in_vals, int *out_argc, rpc_val_t ** __restrict out_vals);
                    596: /*
                    597:  * rpc_cli_freeVals() Free rpc_val_t array returned from RPC call
                    598:  * @args = Number of arguments in array
                    599:  * @vals = Value elements
                    600:  * return: none
                    601:  */
                    602: inline void rpc_cli_freeVals(int args, rpc_val_t *vals);
                    603: 
                    604: 
1.2       misho     605: /*
                    606:  * rpc_cli_openBLOBClient() Connect to BLOB Server
                    607:  * @rpccli = RPC Client session
                    608:  * @Port = Port for bind server, if Port == 0 default port is selected
                    609:  * return: NULL == error or !=NULL connection to BLOB server established
                    610:  */
1.2.4.8 ! misho     611: rpc_cli_t *rpc_cli_openBLOBClient(rpc_cli_t * __restrict rpccli, u_short Port);
1.2       misho     612: /*
                    613:  * rpc_cli_closeBLOBClient() Close connection to BLOB server and free resources
                    614:  * @cli = BLOB Client session
                    615:  * return: none
                    616:  */
                    617: void rpc_cli_closeBLOBClient(rpc_cli_t * __restrict cli);
                    618: 
                    619: 
1.1       misho     620: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>