[BACK]Return to ox_plot.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / plot

Annotation of OpenXM_contrib2/asir2000/plot/ox_plot.c, Revision 1.28

1.5       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.6       noro       26:  * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
1.5       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.28    ! fujimoto   48:  * $OpenXM: OpenXM_contrib2/asir2000/plot/ox_plot.c,v 1.27 2015/08/06 10:01:53 fujimoto Exp $
1.5       noro       49: */
1.1       noro       50: #include "ca.h"
                     51: #include "parse.h"
                     52: #include "ox.h"
                     53: #include "ifplot.h"
                     54: #include "version.h"
1.3       noro       55: #include <signal.h>
1.19      ohara      56: #if defined(PARI)
1.2       noro       57: #include "genpari.h"
                     58: #endif
1.1       noro       59:
                     60: void ox_usr1_handler();
                     61:
1.8       noro       62: extern int asir_OperandStackSize;
                     63: extern Obj *asir_OperandStack;
                     64: extern int asir_OperandStackPtr;
                     65:
1.23      saito      66: // environement is defined in libpari.a
1.20      saito      67: #if !(PARI_VERSION_CODE > 131588)
1.15      noro       68: extern jmp_buf environnement;
1.20      saito      69: #endif
1.1       noro       70:
                     71: extern int do_message;
                     72: extern int ox_flushing;
1.14      noro       73: extern JMP_BUF ox_env;
1.1       noro       74: extern MATHCAP my_mathcap;
1.10      noro       75: extern char LastError[];
1.1       noro       76:
1.21      noro       77: void create_error(ERR *,unsigned int ,char *,LIST );
1.1       noro       78:
1.8       noro       79: void ox_io_init();
1.17      noro       80: void ox_asir_init(int,char **,char *);
1.8       noro       81: Obj asir_pop_one();
                     82: void asir_push_one(Obj);
                     83: void asir_end_flush();
                     84: int asir_executeString();
                     85: void asir_evalName(unsigned int);
                     86: void asir_setName(unsigned int);
                     87: void asir_pops();
                     88: void asir_popString();
                     89: void asir_popCMO(unsigned int);
                     90: void asir_popSerializedLocalObject();
                     91: char *name_of_cmd(unsigned int);
                     92: char *name_of_id(int);
                     93: LIST asir_GetErrorList();
1.7       noro       94:
1.8       noro       95: static void asir_do_cmd(unsigned int,unsigned int);
1.1       noro       96: static void process_ox();
                     97: static void asir_executeFunction();
                     98:
1.27      fujimoto   99: #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
1.9       noro      100: void ox_plot_main()
                    101: #else
                    102: void ox_plot_main(int argc,char **argv)
                    103: #endif
                    104: {
1.1       noro      105:        int ds;
                    106:        fd_set r;
                    107:        int n;
1.12      noro      108:        int use_x;
1.1       noro      109:
1.27      fujimoto  110: #if !defined(VISUAL) && !defined(__MINGW32__) && !defined(__MINGW64__)
1.17      noro      111:        ox_asir_init(argc,argv,"ox_plot");
1.23      saito     112:        use_x=init_plot_display(argc,argv);
                    113:        if(use_x) ds=ConnectionNumber(display);
                    114:        else fprintf(stderr,"Entering no X mode\n");
1.9       noro      115: #endif
1.23      saito     116:        if(do_message)fprintf(stderr,"I'm an ox_plot, Version %d.\n",ASIR_VERSION);
1.28    ! fujimoto  117: #if defined(__MINGW32__) || defined(__MINGW64__)
        !           118:        fflush(stderr);
        !           119: #endif
1.23      saito     120:        if(SETJMP(ox_env)){
                    121:                while(NEXT(asir_infile))closecurrentinput();
1.1       noro      122:                reset_current_computation();
                    123:                ox_send_sync(0);
                    124:        }
1.23      saito     125:        while (1){
1.27      fujimoto  126: #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
1.9       noro      127:                process_ox();
                    128: #else
1.23      saito     129:                if(ox_data_is_available(0)) process_ox();
                    130:                else if(use_x){
1.1       noro      131:                        FD_ZERO(&r);
                    132:                        FD_SET(3,&r); FD_SET(ds,&r);
                    133:                        select(FD_SETSIZE,&r,NULL,NULL,NULL);
1.23      saito     134:                        if(FD_ISSET(3,&r)) process_ox();
                    135:                        else if(FD_ISSET(ds,&r)) process_xevent();
1.1       noro      136:                }
                    137:        }
1.9       noro      138: #endif
1.1       noro      139: }
                    140:
1.23      saito     141: static void process_ox(){
1.1       noro      142:        int id;
                    143:        unsigned int cmd;
                    144:        Obj obj;
                    145:        ERR err;
                    146:        unsigned int serial;
                    147:        int ret;
                    148:
1.23      saito     149:        serial=ox_recv(0,&id,&obj);
                    150:        if(do_message) fprintf(stderr,"#%d Got %s",serial,name_of_id(id));
                    151:        switch (id){
1.1       noro      152:                case OX_COMMAND:
1.23      saito     153:                        cmd=((USINT)obj)->body;
                    154:                        if(ox_flushing) break;
                    155:                        if(do_message) fprintf(stderr," %s\n",name_of_cmd(cmd));
1.25      saito     156:                        ret=SETJMP(main_env);
                    157:                        if(ret){
1.23      saito     158:                                if(ret==1){
1.21      noro      159:                                        create_error(&err,serial,LastError,0);
1.1       noro      160:                                        asir_push_one((Obj)err);
                    161:                                }
                    162:                                break;
                    163:                        }
                    164:                        asir_do_cmd(cmd,serial);
                    165:                        break;
                    166:                case OX_DATA:
                    167:                case OX_LOCAL_OBJECT_ASIR:
1.23      saito     168:                        if(ox_flushing)break;
                    169:                        if(do_message)fprintf(stderr," -> data pushed");
1.1       noro      170:                        asir_push_one(obj);
                    171:                        break;
                    172:                case OX_SYNC_BALL:
1.23      saito     173:                        asir_end_flush();
1.1       noro      174:                        break;
                    175:                default:
                    176:                        break;
                    177:        }
1.23      saito     178:        if(do_message)fprintf(stderr,"\n");
1.28    ! fujimoto  179: #if defined(__MINGW32__) || defined(__MINGW64__)
        !           180:        fflush(stderr);
        !           181: #endif
1.1       noro      182: }
                    183:
1.23      saito     184: static void asir_do_cmd(unsigned int cmd,unsigned int serial){
1.1       noro      185:        MATHCAP client_mathcap;
1.4       noro      186:        LIST list;
                    187:        int i;
                    188:        Q q;
1.1       noro      189:
1.23      saito     190:        switch (cmd){
1.4       noro      191:                case SM_dupErrors:
1.23      saito     192:                        list=asir_GetErrorList();
1.4       noro      193:                        asir_push_one((Obj)list);
                    194:                        break;
                    195:                case SM_getsp:
1.23      saito     196:                        i=asir_OperandStackPtr+1;
1.4       noro      197:                        STOQ(i,q);
                    198:                        asir_push_one((Obj)q);
                    199:                        break;
1.1       noro      200:                case SM_popSerializedLocalObject:
                    201:                        asir_popSerializedLocalObject();
                    202:                        break;
                    203:                case SM_popCMO:
                    204:                        asir_popCMO(serial);
                    205:                        break;
                    206:                case SM_popString:
                    207:                        asir_popString();
                    208:                        break;
                    209:                case SM_setName:
                    210:                        asir_setName(serial);
                    211:                        break;
                    212:                case SM_evalName:
                    213:                        asir_evalName(serial);
                    214:                        break;
                    215:                case SM_executeStringByLocalParser:
                    216:                        asir_executeString();
                    217:                        break;
                    218:                case SM_executeFunction:
1.10      noro      219:                        asir_executeFunction(serial);
1.1       noro      220:                        break;
                    221:                case SM_shutdown:
                    222:                        asir_terminate(2);
                    223:                        break;
                    224:                case SM_pops:
                    225:                        asir_pops();
                    226:                        break;
                    227:                case SM_mathcap:
                    228:                        asir_push_one((Obj)my_mathcap);
                    229:                        break;
                    230:                case SM_setMathcap:
1.23      saito     231:                        client_mathcap=(MATHCAP)asir_pop_one();
1.1       noro      232:                        store_remote_mathcap(0,client_mathcap);
                    233:                        break;
1.18      noro      234:                case SM_nop:
1.1       noro      235:                default:
                    236:                        break;
                    237:        }
                    238: }
                    239:
1.26      saito     240: static void asir_executeFunction(int serial){
1.23      saito     241:        char *fn;
1.25      saito     242:        int argc,id,fno;
1.1       noro      243:        FUNC f;
                    244:        Q ret;
                    245:        VL vl;
1.10      noro      246:        ERR err;
1.1       noro      247:        NODE n,n1;
1.12      noro      248:        LIST bytes;
1.1       noro      249:
1.23      saito     250:        fn=((STRING)asir_pop_one())->body;
                    251:        argc=(int)(((USINT)asir_pop_one())->body);
                    252:        for(n=0;argc;argc--){
1.1       noro      253:                NEXTNODE(n,n1);
1.23      saito     254:                BDY(n1)=(pointer)asir_pop_one();
1.1       noro      255:        }
1.23      saito     256:        if(n)NEXT(n1)=0;
                    257:        id=-1;
1.25      saito     258:        fno=modeNO(fn);
                    259:        switch (fno){
1.26      saito     260:        case 0://IFPLOT
                    261:                id=plot(n,fno);
1.23      saito     262:                STOQ(id,ret);
                    263:                asir_push_one((Obj)ret);
1.25      saito     264:                break;
                    265:        case 1://CONPLOT
1.26      saito     266:                id=plot(n,fno);
1.23      saito     267:                STOQ(id,ret);
                    268:                asir_push_one((Obj)ret);
1.26      saito     269:                break;
1.25      saito     270:        case 2://PLOT
1.26      saito     271:                id=plot(n,fno);
1.23      saito     272:                STOQ(id,ret);
                    273:                asir_push_one((Obj)ret);
1.25      saito     274:                break;
                    275:        case 4://POLARPLOT
1.26      saito     276:                id=plot(n,fno);
1.23      saito     277:                STOQ(id,ret);
                    278:                asir_push_one((Obj)ret);
1.25      saito     279:                break;
                    280:        case 30://MEMORY_PLOT
1.23      saito     281:                memory_plot(n,&bytes);
                    282:                asir_push_one((Obj)bytes);
1.25      saito     283:                break;
                    284:        case 31://ARRAYPLOT
1.23      saito     285:                id=arrayplot(n);
                    286:                STOQ(id,ret);
                    287:                asir_push_one((Obj)ret);
1.25      saito     288:                break;
                    289:        case 32://OPEN_CANVAS
1.23      saito     290:                id=open_canvas(n);
                    291:                STOQ(id,ret);
                    292:                asir_push_one((Obj)ret);
1.25      saito     293:                break;
                    294:        case 5://PLOTOVER
1.9       noro      295:                plotover(n);
1.25      saito     296:                break;
                    297:        case 33://DRAWCIRCLE
1.9       noro      298:                drawcircle(n);
1.25      saito     299:                break;
                    300:        case 34://DRAW_OBJ
1.23      saito     301:                if(draw_obj(n) < 0 ){
1.21      noro      302:                        create_error(&err,serial,LastError,0);
1.10      noro      303:                        asir_push_one((Obj)err);
                    304:                }
1.25      saito     305:                break;
                    306:        case 35://DRAW_STRING
                    307:                if(draw_string(n)<0){
1.21      noro      308:                        create_error(&err,serial,LastError,0);
1.16      noro      309:                        asir_push_one((Obj)err);
                    310:                }
1.25      saito     311:                break;
                    312:        case 37://CLEAR_CANVAS
1.9       noro      313:                clear_canvas(n);
1.25      saito     314:                break;
1.23      saito     315: // ifplotNG
1.25      saito     316:        case 36://OBJ_CP
1.23      saito     317:                id=objcp(n);
                    318:                STOQ(id,ret);
                    319:                asir_push_one((Obj)ret);
1.25      saito     320:                break;
                    321:        case 6://IFPLOTD
                    322:        case 7://IFPLOTQ
                    323:        case 8://IFPLOTB
                    324:        case 9://INEQND
                    325:        case 10://INEQNQ
                    326:        case 11://INEQNB
                    327:        case 21://CONPLOTD
                    328:        case 22://CONPLOTQ
                    329:        case 23://CONPLOTB
1.26      saito     330: #if defined(INTERVAL)
1.25      saito     331:        case 24://ITVIFPLOT
1.26      saito     332: #endif
                    333:                id=ifplotNG(n,fno);
1.23      saito     334:                STOQ(id,ret);
                    335:                asir_push_one((Obj)ret);
1.25      saito     336:                break;
                    337:        case 12://INEQNDAND
                    338:        case 13://INEQNQAND
                    339:        case 14://INEQNBAND
                    340:        case 15://INEQNDOR
                    341:        case 16://INEQNQOR
                    342:        case 17://INEQNBOR
                    343:        case 18://INEQNDXOR
                    344:        case 19://INEQNQXOR
                    345:        case 20://INEQNBXOR
                    346:        case 25://PLOTOVERD
                    347:        case 26://PLOTOVERQ
                    348:        case 27://PLOTOVERB
1.26      saito     349:                id=ifplotOP(n,fno);
                    350:                STOQ(id,ret);
                    351:                asir_push_one((Obj)ret);
                    352:                break;
                    353:        case 38://POLARPLOTD
                    354:                id=polarplotNG(n);
1.23      saito     355:                STOQ(id,ret);
                    356:                asir_push_one((Obj)ret);
1.25      saito     357:                break;
1.9       noro      358:        }
1.1       noro      359: }

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