[BACK]Return to ox.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / include

Annotation of OpenXM_contrib2/asir2000/include/ox.h, Revision 1.9

1.7       noro        1: /*
                      2:  * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
                      3:  * All rights reserved.
                      4:  *
                      5:  * FUJITSU LABORATORIES LIMITED ("FLL") hereby grants you a limited,
                      6:  * non-exclusive and royalty-free license to use, copy, modify and
                      7:  * redistribute, solely for non-commercial and non-profit purposes, the
                      8:  * computer program, "Risa/Asir" ("SOFTWARE"), subject to the terms and
                      9:  * conditions of this Agreement. For the avoidance of doubt, you acquire
                     10:  * only a limited right to use the SOFTWARE hereunder, and FLL or any
                     11:  * third party developer retains all rights, including but not limited to
                     12:  * copyrights, in and to the SOFTWARE.
                     13:  *
                     14:  * (1) FLL does not grant you a license in any way for commercial
                     15:  * purposes. You may use the SOFTWARE only for non-commercial and
                     16:  * non-profit purposes only, such as academic, research and internal
                     17:  * business use.
                     18:  * (2) The SOFTWARE is protected by the Copyright Law of Japan and
                     19:  * international copyright treaties. If you make copies of the SOFTWARE,
                     20:  * with or without modification, as permitted hereunder, you shall affix
                     21:  * to all such copies of the SOFTWARE the above copyright notice.
                     22:  * (3) An explicit reference to this SOFTWARE and its copyright owner
                     23:  * shall be made on your publication or presentation in any form of the
                     24:  * results obtained by use of the SOFTWARE.
                     25:  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by
1.8       noro       26:  * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
1.7       noro       27:  * for such modification or the source code of the modified part of the
                     28:  * SOFTWARE.
                     29:  *
                     30:  * THE SOFTWARE IS PROVIDED AS IS WITHOUT ANY WARRANTY OF ANY KIND. FLL
                     31:  * MAKES ABSOLUTELY NO WARRANTIES, EXPRESSED, IMPLIED OR STATUTORY, AND
                     32:  * EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS
                     33:  * FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF THIRD PARTIES'
                     34:  * RIGHTS. NO FLL DEALER, AGENT, EMPLOYEES IS AUTHORIZED TO MAKE ANY
                     35:  * MODIFICATIONS, EXTENSIONS, OR ADDITIONS TO THIS WARRANTY.
                     36:  * UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, TORT, CONTRACT,
                     37:  * OR OTHERWISE, SHALL FLL BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY
                     38:  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL
                     39:  * DAMAGES OF ANY CHARACTER, INCLUDING, WITHOUT LIMITATION, DAMAGES
                     40:  * ARISING OUT OF OR RELATING TO THE SOFTWARE OR THIS AGREEMENT, DAMAGES
                     41:  * FOR LOSS OF GOODWILL, WORK STOPPAGE, OR LOSS OF DATA, OR FOR ANY
                     42:  * DAMAGES, EVEN IF FLL SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF
                     43:  * SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. EVEN IF A PART
                     44:  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
                     45:  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
                     46:  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
                     47:  *
1.9     ! noro       48:  * $OpenXM: OpenXM_contrib2/asir2000/include/ox.h,v 1.8 2000/08/22 05:04:15 noro Exp $
1.7       noro       49: */
1.1       noro       50: #include "com.h"
                     51:
                     52: /* version */
                     53:
                     54: #define OX_VERSION             199901160
                     55:
                     56: /* header */
                     57:
                     58: #define OX_COMMAND             513
                     59: #define OX_DATA                        514
                     60: #define OX_SYNC_BALL   515
                     61:
                     62: #define OX_DATA_WITH_SIZE              521
                     63: #define OX_DATA_ASIR_BINARY_EXPRESSION         522
                     64:
                     65: #define OX_LOCAL_OBJECT        0x7fcdef30
                     66:
                     67: #define OX_LOCAL_OBJECT_ASIR (OX_LOCAL_OBJECT+0)
                     68: #define OX_LOCAL_OBJECT_SM1    (OX_LOCAL_OBJECT+1)
                     69:
                     70: /* cmo_tags */
                     71:
                     72: #define CMO_LARGE_ID   0x7f000000
                     73:
                     74: #define CMO_ERROR                      CMO_LARGE_ID+1
                     75: #define CMO_ERROR2                     CMO_LARGE_ID+2
                     76:
                     77: #define CMO_NULL                       1
                     78: #define CMO_INT32                      2
                     79: #define CMO_DATUM                      3
                     80: #define CMO_STRING                     4
                     81: #define CMO_MATHCAP                    5
                     82:
                     83: #define CMO_ARRAY                              16
                     84: #define CMO_LIST                               17
                     85: #define CMO_ATOM                               18
                     86: #define CMO_MONOMIAL32                 19
                     87: #define CMO_ZZ                                 20
                     88: #define CMO_QQ                                 21
                     89: #define CMO_ZERO                               22
                     90:
                     91: #define CMO_DMS_GENERIC                        24
                     92: #define CMO_DMS_OF_N_VARIABLES 25
                     93: #define CMO_RING_BY_NAME               26
                     94: #define CMO_RECURSIVE_POLYNOMIAL               27
                     95:
                     96: #define CMO_DISTRIBUTED_POLYNOMIAL             31
                     97: #define CMO_UNIVARIATE_POLYNOMIAL              33
                     98: #define CMO_RATIONAL           34
1.6       noro       99:
                    100: #define CMO_64BIT_MACHINE_DOUBLE   40
                    101: #define CMO_ARRAY_OF_64BIT_MACHINE_DOUBLE  41
                    102: #define CMO_128BIT_MACHINE_DOUBLE   42
                    103: #define CMO_ARRAY_OF_128BIT_MACHINE_DOUBLE  43
                    104:
                    105: #define CMO_BIGFLOAT                           50
                    106: #define CMO_IEEE_DOUBLE_FLOAT          51
1.1       noro      107:
                    108: #define CMO_INDETERMINATE              60
                    109: #define CMO_TREE                               61
                    110: #define CMO_LAMBDA                             62
                    111:
                    112: /* asir local object id */
                    113:
                    114: #define ASIR_VL                                        0
                    115: #define ASIR_OBJ                               1
                    116:
                    117: /* commands */
                    118:
                    119: #define SM_popSerializedLocalObject 258
                    120: #define SM_popCMO 262
                    121: #define SM_popString 263
                    122:
                    123: #define SM_mathcap 264
                    124: #define SM_pops 265
                    125: #define SM_setName 266
                    126: #define SM_evalName 267
                    127: #define SM_executeStringByLocalParser 268
                    128: #define SM_executeFunction 269
                    129:
                    130: #define SM_beginBlock 270
                    131: #define SM_endBlock 271
                    132: #define SM_shutdown 272
                    133: #define SM_setMathcap 273
                    134: #define SM_executeStringByLocalParserInBatchMode 274
                    135: #define SM_getsp 275
                    136: #define SM_dupErrors 276
1.9     ! noro      137: #define SM_pushCMOtag 277
1.1       noro      138:
                    139: #define SM_nop 300
                    140:
                    141: #define SM_control_kill                                1024
1.2       noro      142: #define SM_control_intr                                1025
1.1       noro      143: #define SM_control_reset_connection            1030
                    144:
                    145: typedef FILE *ox_stream;
                    146:
                    147: /* a macro to check whether data are available in the read buffer */
                    148: #if defined(linux)
                    149: #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_IO_read_ptr < (fp)->_IO_read_end)
                    150: #elif defined(__FreeBSD__)
                    151: #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_r)
                    152: #elif defined(sparc) || defined(__alpha) || defined(__SVR4) || defined(mips)
                    153: #define FP_DATA_IS_AVAILABLE(fp) ((fp)->_cnt)
                    154: #elif defined(VISUAL)
                    155: #define FP_DATA_IS_AVAILABLE(fp) ((fp)->p < (fp)->buf_size)
                    156: #elif defined(hpux)
                    157: #define FP_DATA_IS_AVAILABLE(fp) ((fp)->__cnt)
                    158: #else
                    159: --->FIXIT
                    160: #endif
                    161:
                    162: extern jmp_buf environnement;
                    163:
                    164: extern jmp_buf env;
                    165: extern int *StackBottom;
                    166: extern int ox_do_copy, ox_do_count, ox_count_length;
                    167: extern char *ox_copy_bptr;
                    168:
                    169: extern struct IOFP iofp[];
                    170:
                    171: extern char *parse_strp;
                    172:
                    173: #define LBUFSIZ BUFSIZ*10
                    174:
                    175: void ox_usr1_handler();
                    176: unsigned int ox_recv();
1.5       noro      177:
                    178: /* library functions */
                    179: void asir_ox_push_cmo(void *);
                    180: int asir_ox_pop_cmo(void *, int);
                    181: void asir_ox_push_cmd(int);
                    182: void asir_ox_execute_string(char *);
                    183: int asir_ox_peek_cmo_size();
                    184: int asir_ox_init(int);

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