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

Annotation of OpenXM_contrib2/asir2000/parse/xdeb.c, Revision 1.14

1.3       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.4       noro       26:  * e-mail at risa-admin@sec.flab.fujitsu.co.jp of the detailed specification
1.3       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.14    ! fujimoto   48:  * $OpenXM: OpenXM_contrib2/asir2000/parse/xdeb.c,v 1.13 2004/03/01 05:48:24 noro Exp $
1.3       noro       49: */
1.14    ! fujimoto   50: #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
1.1       noro       51: #if defined(VISUAL_LIB)
                     52: #include <stdio.h>
                     53: #include <stdlib.h>
                     54: #include <windows.h>
                     55: #include <signal.h>
                     56: #include <process.h>
                     57:
                     58: #define FROMASIR_EXIT 0
                     59: #define FROMASIR_TEXT 1
                     60: #define FROMASIR_HEAPSIZE 2
                     61: #define FROMASIR_SHOW 3
                     62: #define FROMASIR_HIDE 4
                     63:
                     64: void show_debug_window(int);
                     65: int create_debug_gui();
                     66: void set_debug_handles(int);
                     67: void get_rootdir(char *,int);
                     68:
                     69: void show_debug_window(int on)
                     70: {
                     71:        static int debug_gui_invoked = 0;
                     72:
                     73:        /* debug_gui_invoked < 0 : failed to invoke debug GUI */
                     74:        if ( debug_gui_invoked < 0 )
                     75:                return;
                     76:        if ( !debug_gui_invoked ) {
                     77:                if ( !on )
                     78:                        return;
                     79:                else if ( create_debug_gui() < 0 ) {
                     80:                        debug_gui_invoked = -1;
                     81:                        return;
                     82:                }
                     83:                debug_gui_invoked = 1;
                     84:        }
                     85:        set_debug_handles(on);
                     86: }
                     87:
                     88: #else /* VISUAL_LIB */
                     89: void show_debug_window(int on)
                     90: {}
                     91: #endif
                     92: #else /* VISUAL */
1.11      noro       93: #if defined(DO_PLOT)
1.1       noro       94: /*
                     95:  *     xdeb.c --- Asir Debug interface.
                     96:  *
                     97:  *             akashi@sy.ssl.fujitsu.co.jp
                     98:  */
                     99: #include <X11/Intrinsic.h>
                    100: #include <X11/StringDefs.h>
                    101: #include <X11/Shell.h>
                    102: #include <X11/Xaw/Dialog.h>
                    103: #include       <stdio.h>
                    104:
                    105: static XrmOptionDescRec options[] = {
                    106:        {"-reverse","*reverse",XrmoptionNoArg,"on"},
                    107:        {"-fg","*foreground",XrmoptionSepArg,NULL},
                    108:        {"-bg","*background",XrmoptionSepArg,NULL},
                    109: };
                    110:
                    111: static String fallback[] = {
                    112:        "*Dialog*baseTranslations:#override <Key>Return: done()",
                    113:        NULL
                    114: };
                    115:
                    116: static void Done();
1.13      noro      117: static void Quit();
1.1       noro      118: static void SetSelected();
1.5       noro      119: static void SetDismiss();
1.1       noro      120:
                    121: static XtActionsRec actions_table[] = {
                    122:        {"done",Done},
1.13      noro      123:        {"quit",Quit},
1.1       noro      124: };
                    125:
                    126: char debug_cmd[BUFSIZ];
                    127:
                    128: static Widget          toplevel, mainwin, cmdwin;
                    129: static XtAppContext    app_con;
                    130: static int done;
                    131: static Display *display;
                    132:
                    133: void get_cmd();
                    134:
1.8       noro      135: static void Done(Widget w,XEvent *e,String *p,Cardinal *n)
1.1       noro      136: {
                    137:        SetSelected(w,0,0);
                    138: }
                    139:
1.8       noro      140: static void SetSelected(Widget w,XtPointer cld,XtPointer cad)
1.1       noro      141: {
                    142:        Arg             arg[5];
                    143:        char *cmd;
                    144:
                    145:        done = 1;
                    146:        cmd = XawDialogGetValueString(cmdwin);
                    147:        strcpy(debug_cmd,cmd);
                    148:        XtSetArg(arg[0], XtNvalue, "");
                    149:        XtSetValues(cmdwin, arg, 1);
                    150: }
                    151:
1.8       noro      152: static void SetDismiss(Widget w,XtPointer cld,XtPointer cad)
1.5       noro      153: {
                    154:        Arg             arg[5];
                    155:        char *cmd;
                    156:
                    157:        done = 1;
                    158:        cmd = XawDialogGetValueString(cmdwin);
                    159:        strcpy(debug_cmd,"quit");
                    160:        XtSetArg(arg[0], XtNvalue, "");
                    161:        XtSetValues(cmdwin, arg, 1);
                    162: }
                    163:
1.12      noro      164: static Atom wm_delete_window;
1.13      noro      165: static void Quit(Widget w, XEvent *ev, String *params,Cardinal *nparams)
1.12      noro      166: {
                    167:        XBell(XtDisplay(w),0);
                    168: }
                    169:
1.8       noro      170: void init_cmdwin()
1.1       noro      171: {
                    172:        Arg             arg[5];
                    173:        int argc=0;
                    174:        char *argv[1];
                    175:        int n;
                    176:        char *d;
1.6       noro      177:        char hostname[BUFSIZ],title[BUFSIZ];
1.1       noro      178:        extern char displayname[];
                    179:        extern int do_server_in_X11;
1.7       noro      180:        static int is_init = 0;
1.1       noro      181:
1.7       noro      182:        if ( is_init )
                    183:                return;
1.1       noro      184:        if ( !displayname[0] ) {
                    185:                d = (char *)getenv("DISPLAY");
                    186:                if ( d )
                    187:                        strcpy(displayname,d);
                    188:                else
                    189:                        do_server_in_X11 = 0;
                    190:        }
1.6       noro      191:        gethostname(hostname, BUFSIZ);
                    192:        sprintf(title,"Asir debugger:%s",hostname);
1.1       noro      193:        if ( displayname[0] ) {
                    194:                argv[0] = 0;
                    195:                XtToolkitInitialize();
                    196:                app_con = XtCreateApplicationContext();
                    197:                XtAppAddActions(app_con,actions_table, XtNumber(actions_table));
                    198:                XtAppSetFallbackResources(app_con,fallback);
1.6       noro      199:                display = XtOpenDisplay(app_con,displayname,title,title,
1.1       noro      200:                        options,XtNumber(options),&argc,argv);
1.6       noro      201:                toplevel = XtAppCreateShell(0,title,applicationShellWidgetClass,
1.1       noro      202:                        display,0,0);
1.5       noro      203:                n = 0;
1.12      noro      204:                wm_delete_window = XInternAtom(XtDisplay(toplevel), "WM_DELETE_WINDOW",
                    205:                        False);
1.13      noro      206:
1.6       noro      207:                XtSetArg(arg[n],XtNiconName,title); n++;
                    208:                XtSetArg(arg[n], XtNwidth, 360); n++;
1.1       noro      209:                mainwin = XtCreatePopupShell("shell",topLevelShellWidgetClass,
1.5       noro      210:                        toplevel,arg,n);
1.13      noro      211:                XtOverrideTranslations(mainwin,
                    212:                                        XtParseTranslationTable("<Message>WM_PROTOCOLS: quit()"));
1.1       noro      213:        /*
                    214:         *      Command line
                    215:         */
                    216:                cmdwin = XtCreateManagedWidget("cmdwin", dialogWidgetClass,
                    217:                        mainwin, NULL, 0);
1.5       noro      218:                XawDialogAddButton(cmdwin,"Execute",SetSelected,"Execute");
                    219:                XawDialogAddButton(cmdwin,"Dismiss",SetDismiss,"Dismiss");
1.1       noro      220:                n = 0;
                    221:                XtSetArg(arg[n], XtNlabel, "Command : "); n++;
                    222:                XtSetArg(arg[n], XtNvalue, ""); n++;
                    223:                XtSetValues(cmdwin, arg, n);
                    224:                XtRealizeWidget(mainwin);
1.12      noro      225:                XSetWMProtocols(XtDisplay(mainwin),XtWindow(mainwin),
                    226:                        &wm_delete_window,1);
1.1       noro      227:        }
1.7       noro      228:        is_init = 1;
1.1       noro      229: }
                    230:
1.8       noro      231: void show_debug_window(int on)
1.1       noro      232: {
                    233:        XEvent ev;
                    234:
1.7       noro      235:        init_cmdwin();
1.1       noro      236:        if ( mainwin ) {
                    237:                if ( on )
                    238:                        XtPopup(mainwin,XtGrabNone);
                    239:                else
                    240:                        XtPopdown(mainwin);
                    241:                XFlush(display);
                    242:                while ( XtAppPending(app_con) ) {
                    243:                        XtAppNextEvent(app_con,&ev);
                    244:                        XtDispatchEvent(&ev);
                    245:                }
                    246:        }
                    247: }
                    248:
1.8       noro      249: void get_line(char *buf)
1.1       noro      250: {
                    251:        XEvent ev;
                    252:
                    253:        done = 0;
                    254:        while ( !done ) {
                    255:                XtAppNextEvent(app_con,&ev);
                    256:                XtDispatchEvent(&ev);
                    257:        }
                    258:        strcpy(buf,debug_cmd);
                    259: }
1.2       noro      260: #else /* DO_PLOT */
1.8       noro      261: void init_cmdwin() {}
1.2       noro      262:
1.8       noro      263: void show_debug_window(int on)
1.2       noro      264: {}
                    265:
1.8       noro      266: void get_line(buf)
1.2       noro      267: char *buf;
                    268: {}
                    269: #endif /* DO_PLOT */
1.1       noro      270: #endif /* VISUAL */

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