[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.3

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
        !            26:  * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification
        !            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:  *
        !            48:  * $OpenXM: OpenXM_contrib2/asir2000/parse/xdeb.c,v 1.2 2000/02/08 04:47:12 noro Exp $
        !            49: */
1.1       noro       50: #if defined(VISUAL)
                     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.2       noro       93: #if 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();
                    117: static void SetSelected();
                    118:
                    119: static XtActionsRec actions_table[] = {
                    120:        {"done",Done},
                    121: };
                    122:
                    123: char debug_cmd[BUFSIZ];
                    124:
                    125: static Widget          toplevel, mainwin, cmdwin;
                    126: static XtAppContext    app_con;
                    127: static int done;
                    128: static Display *display;
                    129:
                    130: void get_cmd();
                    131:
                    132: static void Done(w,e,p,n)
                    133: Widget w;
                    134: XEvent *e;
                    135: String *p;
                    136: Cardinal *n;
                    137: {
                    138:        SetSelected(w,0,0);
                    139: }
                    140:
                    141: static void SetSelected(w,cld,cad)
                    142: Widget w;
                    143: XtPointer cld,cad;
                    144: {
                    145:        Arg             arg[5];
                    146:        char *cmd;
                    147:
                    148:        done = 1;
                    149:        cmd = XawDialogGetValueString(cmdwin);
                    150:        strcpy(debug_cmd,cmd);
                    151:        XtSetArg(arg[0], XtNvalue, "");
                    152:        XtSetValues(cmdwin, arg, 1);
                    153: }
                    154:
                    155: init_cmdwin()
                    156: {
                    157:        Arg             arg[5];
                    158:        int argc=0;
                    159:        char *argv[1];
                    160:        int n;
                    161:        char *d;
                    162:        extern char displayname[];
                    163:        extern int do_server_in_X11;
                    164:
                    165:        if ( !displayname[0] ) {
                    166:                d = (char *)getenv("DISPLAY");
                    167:                if ( d )
                    168:                        strcpy(displayname,d);
                    169:                else
                    170:                        do_server_in_X11 = 0;
                    171:        }
                    172:        if ( displayname[0] ) {
                    173:                argv[0] = 0;
                    174:                XtToolkitInitialize();
                    175:                app_con = XtCreateApplicationContext();
                    176:                XtAppAddActions(app_con,actions_table, XtNumber(actions_table));
                    177:                XtAppSetFallbackResources(app_con,fallback);
                    178:                display = XtOpenDisplay(app_con,displayname,"ox_asir_debug_window","ox_asir_debug_window",
                    179:                        options,XtNumber(options),&argc,argv);
                    180:                toplevel = XtAppCreateShell(0,"ox_asir_debug_window",applicationShellWidgetClass,
                    181:                        display,0,0);
                    182:                XtSetArg(arg[0],XtNiconName,"ox_asir_debug_window");
                    183:                mainwin = XtCreatePopupShell("shell",topLevelShellWidgetClass,
                    184:                        toplevel,arg,1);
                    185:        /*
                    186:         *      Command line
                    187:         */
                    188:                cmdwin = XtCreateManagedWidget("cmdwin", dialogWidgetClass,
                    189:                        mainwin, NULL, 0);
                    190:                XawDialogAddButton(cmdwin,"OK",SetSelected,"OK");
                    191:                n = 0;
                    192:                XtSetArg(arg[n], XtNlabel, "Command : "); n++;
                    193:                XtSetArg(arg[n], XtNvalue, ""); n++;
                    194:                XtSetValues(cmdwin, arg, n);
                    195:                XtRealizeWidget(mainwin);
                    196:        }
                    197: }
                    198:
                    199: show_debug_window(on)
                    200: int on;
                    201: {
                    202:        XEvent ev;
                    203:
                    204:        if ( mainwin ) {
                    205:                if ( on )
                    206:                        XtPopup(mainwin,XtGrabNone);
                    207:                else
                    208:                        XtPopdown(mainwin);
                    209:                XFlush(display);
                    210:                while ( XtAppPending(app_con) ) {
                    211:                        XtAppNextEvent(app_con,&ev);
                    212:                        XtDispatchEvent(&ev);
                    213:                }
                    214:        }
                    215: }
                    216:
                    217: get_line(buf)
                    218: char *buf;
                    219: {
                    220:        XEvent ev;
                    221:
                    222:        done = 0;
                    223:        while ( !done ) {
                    224:                XtAppNextEvent(app_con,&ev);
                    225:                XtDispatchEvent(&ev);
                    226:        }
                    227:        strcpy(buf,debug_cmd);
                    228: }
1.2       noro      229: #else /* DO_PLOT */
                    230: init_cmdwin() {}
                    231:
                    232: show_debug_window(on)
                    233: int on;
                    234: {}
                    235:
                    236: get_line(buf)
                    237: char *buf;
                    238: {}
                    239: #endif /* DO_PLOT */
1.1       noro      240: #endif /* VISUAL */

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