mirror of
https://github.com/reactos/wine.git
synced 2024-12-03 09:20:56 +00:00
c6c09442c4
Sat Jan 11 18:17:59 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [controls/menu.c] Updated to new Win32 types. * [controls/listbox.c] Fixed Winfile extended selection bug. * [files/directory.c] Changed DIR_SearchPath to return both long and short file names. * [files/dos_fs.c] Implemented VFAT ioctl to retrieve the original short filenames from a VFAT filesystem (Linux only for now). Replaced DOSFS_GetUnixFileName()/DOSFS_GetDosTrueName() by DOS_GetFullName(). Properly implemented GetShortPathName() and GetFullPathName(). Made all functions re-entrant. * [files/file.c] [misc/main.c] Replaced -allowreadonly option by -failreadonly. The default is now to report success when opening a read-only file for writing. * [objects/metafile.c] Fixed bug in DIB bitmaps pointer calculation. * [scheduler/process.c] Implemented environment strings and Get/SetStdHandle with process environment block. * [tools/build.c] Rewrote BuildContext32() to avoid instructions that may not be supported by all assemblers. Fri Jan 10 17:11:09 1997 David Faure <david.faure@ifhamy.insa-lyon.fr> * [windows/event.c] Created table keyc2vkey, which associate a vkey(+extended bit) to any keycode. Changed EVENT_event_to_vkey to use this table to return the correct vkey. Changed EVENT_ToAscii to get the keycode from this table too. Assigned OEM specific vkeys arbitrarily. Fri Jan 10 09:26:17 1997 John Harvey <john@division.co.uk> * [misc/winsock.c] [misc/winsoc_async.c] Fixed svr4 header files. Changed bzero() to memset(). * [tools/fnt2bdf.c] Removed bcopy() and used memcpy() instead. * [debugger/msc.c] Include string.h instead of strings.h * [debugger/stabs.c] Include string.h instead of strings.h. Define __ELF__ for svr4 systems. * [loader/signal.c] Use wait() instead of wait4() which doesnt exist on Unixware. * [memory/global.c] Use sysconf() instead of getpagesize() for svr4 systems. Thu Jan 9 21:07:20 1997 Robert Pouliot <krynos@clic.net> * [Make.rules.in] [Makefile.in] [make_os2.sh] [rc/Makefile.in] [tools/Makefile.in] [documentation/wine_os2.txt] Patches for OS/2 support. Note that it doesn't compile yet. Tue Jan 7 20:03:53 1997 Eric Youngdale <eric@sub2304.jic.com> * [debugger/*] Many more debugger improvements (see debugger/README for details). Tue Jan 7 15:12:21 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [windows/graphics.c] [objects/text.c] [graphics/x11drv/*] [graphics/metafiledrv/*] Moved some device dependent code into the resp. subdirs. * [include/gdi.h] [include/metafiledrv.h] [include/x11drv.h] Prototypes added, DC_FUNCTIONS: GetPixel added, some unnecessary functions removed. * [objects/region.c] CreatePolyPolygonRgn32 added. * [files/dos_fs.c] QueryDosDevice added. * [misc/lstr.c] FormatMessage: broken heap management fixed. * [scheduler/process.c] [scheduler/thread.c] Get/SetThreadPriority/PriorityClass added. Mon Jan 6 21:55:30 1997 Philippe De Muyter <phdm@info.ucl.ac.be> * [misc/keyboard.c] ToAscii : Use EVENT_ToAscii instead. * [windows/event.c] keypad_key : Do not convert XK_Mode_switch to VK_MENU; recognize keypad cursor keys. EVENT_event_to_vkey : New function, to transform a X keycode into a MSwin vkey + extended bit. EVENT_ToAscii : New function, to transform a vkey + extended bit (+ key state table) into ascii char(s), using XLookupString, and recognizing dead chars. EVENT_key : Transform AltGr into Ctrl+Alt sequence; call EVENT_event_to_vkey for keycode to vkey conversion; fixed previous, context and extended bits. * [windows/keyboard.c] Include stddebug.h, to get -debugmsg messages. GetKeyState : Handle VK_MBUTTON case. GetKeyboardState, SetKeyboardState : Debugging messages added. * [windows/message.c] TranslateMessage : Handle dead chars. Mon Jan 6 20:10:11 1997 Dominik Strasser <bm424953@muenchen.org> * [if1632/crtdll.spec] [misc/crtdll.c] C++ functions new/delete/set_new_handler implemented. Mon Jan 6 15:48:15 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl> * [controls/edit.c] [include/windows.h] Moved the edit control to 32 bits. Included new (win95) message definitions in windows.h Implemented EM_SCROLLCARET, EM_SETMARGINS, EM_GETMARGINS, EM_GETLIMITTEXT, EM_POSFROMCHAR, EM_CHARFROMPOS. Broke EM_SETWORDBREAKPROC (internal wordwrap still works). Fixed some bugs, introduced a couple of others. Text buffer is now initially in 32-bit heap. * [controls/EDIT.TODO] [controls/combo.c] [controls/widgets.c] [if1632/wprocs.spec] [library/miscstubs.c] [windows/defdlg.c] [misc/commdlg.c] Updated to work with 32-bit edit control. Sat Jan 4 22:07:27 1997 O.Flebbe <O.Flebbe@science-computing.uni-tuebingen.de> * [loader/pe_image.c] Use mmap rather then malloc. Better workaround for clean segments.
266 lines
7.7 KiB
C
266 lines
7.7 KiB
C
/* -*-C-*-
|
|
* Lexical scanner for command line parsing
|
|
*
|
|
* Copyright 1993 Eric Youngdale
|
|
*/
|
|
|
|
%{
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "debugger.h"
|
|
#include "xmalloc.h"
|
|
#include "y.tab.h"
|
|
|
|
#ifndef DONT_USE_READLINE
|
|
#undef YY_INPUT
|
|
#define YY_INPUT(buf,result,max_size) \
|
|
if ( (result = dbg_read((char *) buf, max_size )) < 0 ) \
|
|
YY_FATAL_ERROR( "read() in flex scanner failed" );
|
|
|
|
extern char * readline(char *);
|
|
extern void add_history(char *);
|
|
static int dbg_read(char * buf, int size);
|
|
static char * make_symbol(char *);
|
|
void flush_symbols();
|
|
|
|
#endif /* DONT_USE_READLINE */
|
|
|
|
#define YY_NO_UNPUT
|
|
|
|
static int syntax_error;
|
|
%}
|
|
|
|
DIGIT [0-9]
|
|
HEXDIGIT [0-9a-fA-F]
|
|
FORMAT [bcdiswx]
|
|
IDENTIFIER [_a-zA-Z~][_a-zA-Z0-9~@]*
|
|
PATHNAME [/_a-zA-Z\.~][/_a-zA-Z0-9\.~@]*
|
|
STRING \"[^\n"]+\"
|
|
|
|
%s FORMAT_EXPECTED
|
|
%s PATH_EXPECTED
|
|
%s INFO_CMD
|
|
%s HELP_CMD
|
|
%s DEL_CMD
|
|
%s WALK_CMD
|
|
%s SHOW_CMD
|
|
%s NOCMD
|
|
|
|
%%
|
|
|
|
\n { BEGIN(0); syntax_error = 0;
|
|
return tEOL; } /*Indicates end of command. Reset state. */
|
|
|
|
"||" { return OP_LOR; }
|
|
"&&" { return OP_LAND; }
|
|
"==" { return OP_EQ; }
|
|
"!=" { return OP_NE; }
|
|
"<=" { return OP_LE; }
|
|
">=" { return OP_GE; }
|
|
"<<" { return OP_SHL; }
|
|
">>" { return OP_SHR; }
|
|
"->" { return OP_DRF; }
|
|
[-+<=>|&^()*/%:!~,\.] { return *yytext; }
|
|
"[" { return *yytext; }
|
|
"]" { return *yytext; }
|
|
|
|
"0x"{HEXDIGIT}+ { sscanf(yytext, "%x", &yylval.integer); return tNUM; }
|
|
{DIGIT}+ { sscanf(yytext, "%d", &yylval.integer); return tNUM; }
|
|
|
|
|
|
<FORMAT_EXPECTED>"/"{DIGIT}+{FORMAT} { char * last;
|
|
yylval.integer = strtol( yytext+1, &last, NULL );
|
|
yylval.integer = (yylval.integer << 8) | *last;
|
|
return tFORMAT; }
|
|
|
|
|
|
<FORMAT_EXPECTED>"/"{FORMAT} { yylval.integer = (1 << 8) | yytext[1]; return tFORMAT; }
|
|
|
|
{STRING} { yylval.string = make_symbol(yytext); return tSTRING; }
|
|
|
|
$pc { yylval.reg = REG_EIP; return tREG; }
|
|
$flags { yylval.reg = REG_EFL; return tREG; }
|
|
$eip { yylval.reg = REG_EIP; return tREG; }
|
|
$ip { yylval.reg = REG_IP; return tREG; }
|
|
$esp { yylval.reg = REG_ESP; return tREG; }
|
|
$sp { yylval.reg = REG_SP; return tREG; }
|
|
$eax { yylval.reg = REG_EAX; return tREG; }
|
|
$ebx { yylval.reg = REG_EBX; return tREG; }
|
|
$ecx { yylval.reg = REG_ECX; return tREG; }
|
|
$edx { yylval.reg = REG_EDX; return tREG; }
|
|
$esi { yylval.reg = REG_ESI; return tREG; }
|
|
$edi { yylval.reg = REG_EDI; return tREG; }
|
|
$ebp { yylval.reg = REG_EBP; return tREG; }
|
|
$ax { yylval.reg = REG_AX; return tREG; }
|
|
$bx { yylval.reg = REG_BX; return tREG; }
|
|
$cx { yylval.reg = REG_CX; return tREG; }
|
|
$dx { yylval.reg = REG_DX; return tREG; }
|
|
$si { yylval.reg = REG_SI; return tREG; }
|
|
$di { yylval.reg = REG_DI; return tREG; }
|
|
$bp { yylval.reg = REG_BP; return tREG; }
|
|
$es { yylval.reg = REG_ES; return tREG; }
|
|
$ds { yylval.reg = REG_DS; return tREG; }
|
|
$cs { yylval.reg = REG_CS; return tREG; }
|
|
$ss { yylval.reg = REG_SS; return tREG; }
|
|
$fs { yylval.reg = REG_FS; return tREG; }
|
|
$gs { yylval.reg = REG_GS; return tREG; }
|
|
|
|
<INITIAL>info|inf|in { BEGIN(INFO_CMD); return tINFO; }
|
|
<INITIAL>up { BEGIN(NOCMD); return tUP; }
|
|
<INITIAL>down|dow|do { BEGIN(NOCMD); return tDOWN; }
|
|
<INITIAL>frame|fram|fra|fr { BEGIN(NOCMD); return tFRAME; }
|
|
<INITIAL>list|lis|li|l { BEGIN(PATH_EXPECTED); return tLIST; }
|
|
<INITIAL>enable|enabl|enab|ena { BEGIN(NOCMD); return tENABLE;}
|
|
<INITIAL>disable|disabl|disab|disa|dis { BEGIN(NOCMD); return tDISABLE; }
|
|
<INITIAL,INFO_CMD,DEL_CMD>display|displa|displ|disp { BEGIN(NOCMD); return tDISPLAY; }
|
|
<INITIAL>undisplay|undispla|undispl|undisp|undis|undi|und { BEGIN(NOCMD); return tUNDISPLAY; }
|
|
<INITIAL>delete|delet|dele|del { BEGIN(DEL_CMD); return tDELETE; }
|
|
<INITIAL>quit|qui|qu|q { BEGIN(NOCMD); return tQUIT; }
|
|
<INITIAL>set|se { BEGIN(NOCMD); return tSET; }
|
|
<INITIAL>walk|w { BEGIN(WALK_CMD); return tWALK; }
|
|
<INITIAL>x { BEGIN(FORMAT_EXPECTED); return tEXAM; }
|
|
<INITIAL>help|hel|he|"?" { BEGIN(HELP_CMD); return tHELP; }
|
|
|
|
<INITIAL>backtrace|backtrac|backtra|backt|back|bac|ba|bt { BEGIN(NOCMD); return tBACKTRACE; }
|
|
<INITIAL>where|wher|whe { BEGIN(NOCMD); return tBACKTRACE; }
|
|
|
|
<INITIAL>cont|con|co|c { BEGIN(NOCMD); return tCONT; }
|
|
<INITIAL>condition|conditio|conditi|condit|condi|cond { BEGIN(NOCMD); return tCOND; }
|
|
<INITIAL>step|ste|st|s { BEGIN(NOCMD); return tSTEP; }
|
|
<INITIAL>next|nex|ne|n { BEGIN(NOCMD); return tNEXT; }
|
|
<INITIAL>stepi|si { BEGIN(NOCMD); return tSTEPI; }
|
|
<INITIAL>nexti|ni { BEGIN(NOCMD); return tNEXTI; }
|
|
<INITIAL>finish|finis|fini|fin|fi { BEGIN(NOCMD); return tFINISH; }
|
|
|
|
<INITIAL>abort|abor|abo { BEGIN(NOCMD); return tABORT; }
|
|
<INITIAL>print|prin|pri|pr|p { BEGIN(FORMAT_EXPECTED); return tPRINT; }
|
|
|
|
<INITIAL>mode { BEGIN(NOCMD); return tMODE; }
|
|
<INITIAL>show|sho|sh { BEGIN(SHOW_CMD); return tSHOW; }
|
|
|
|
<INFO_CMD,INITIAL>break|brea|bre|br|b { BEGIN(PATH_EXPECTED); return tBREAK; }
|
|
|
|
<INFO_CMD>share|shar|sha { return tSHARE; }
|
|
<INFO_CMD>locals|local|loca|loc { return tLOCAL; }
|
|
<INFO_CMD,WALK_CMD>class|clas|cla { return tCLASS; }
|
|
<INFO_CMD,WALK_CMD>module|modul|modu|mod { return tMODULE; }
|
|
<INFO_CMD,WALK_CMD>queue|queu|que { return tQUEUE; }
|
|
<INFO_CMD>registers|regs|reg|re { return tREGS; }
|
|
<INFO_CMD>segments|segment|segm|seg|se { return tSEGMENTS; }
|
|
<INFO_CMD>stack|stac|sta|st { return tSTACK; }
|
|
<INFO_CMD,WALK_CMD>window|windo|wind|win|wnd { return tWND; }
|
|
<HELP_CMD>info|inf|in { return tINFO; }
|
|
|
|
<INITIAL,SHOW_CMD>directories|directorie|directori|director|directo|direct|direc|direc|dir {
|
|
BEGIN(PATH_EXPECTED); return tDIR; }
|
|
|
|
{IDENTIFIER} { yylval.string = make_symbol(yytext); return tIDENTIFIER; }
|
|
|
|
<PATH_EXPECTED>{PATHNAME} { yylval.string = make_symbol(yytext); return tPATH; }
|
|
|
|
|
|
[ \t]+ /* Eat up whitespace */
|
|
|
|
. { if (syntax_error == 0)
|
|
{
|
|
syntax_error ++; fprintf(stderr, "Syntax Error\n");
|
|
}
|
|
}
|
|
|
|
|
|
%%
|
|
|
|
#ifndef yywrap
|
|
int yywrap(void) { return 1; }
|
|
#endif
|
|
|
|
#ifndef DONT_USE_READLINE
|
|
|
|
#ifndef whitespace
|
|
#define whitespace(c) (((c) == ' ') || ((c) == '\t'))
|
|
#endif
|
|
|
|
|
|
/* Strip whitespace from the start and end of STRING. */
|
|
static void stripwhite (char *string)
|
|
{
|
|
register int i = 0;
|
|
|
|
while (whitespace (string[i]))
|
|
i++;
|
|
|
|
if (i)
|
|
strcpy (string, string + i);
|
|
|
|
i = strlen (string) - 1;
|
|
|
|
while (i > 0 && whitespace (string[i]))
|
|
i--;
|
|
|
|
string[++i] = '\0';
|
|
}
|
|
|
|
static int dbg_read(char * buf, int size)
|
|
{
|
|
static char last_line[256] = "";
|
|
char * line;
|
|
int len;
|
|
|
|
for (;;)
|
|
{
|
|
flush_symbols();
|
|
line = readline ("Wine-dbg>");
|
|
if (!line)
|
|
{
|
|
fprintf( stderr, "\n" );
|
|
exit(0);
|
|
}
|
|
|
|
/* Remove leading and trailing whitespace from the line */
|
|
|
|
stripwhite (line);
|
|
|
|
/* If there is anything left, add it to the history list
|
|
and execute it. Otherwise, re-execute last command. */
|
|
|
|
if (*line)
|
|
{
|
|
add_history( line );
|
|
strncpy( last_line, line, 255 );
|
|
last_line[255] = '\0';
|
|
}
|
|
|
|
free( line );
|
|
line = last_line;
|
|
|
|
if ((len = strlen(line)) > 0)
|
|
{
|
|
if (size < len + 1)
|
|
{
|
|
fprintf(stderr,"Fatal readline goof.\n");
|
|
exit(0);
|
|
}
|
|
strcpy(buf, line);
|
|
buf[len] = '\n';
|
|
buf[len+1] = 0;
|
|
return len + 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
static char *local_symbols[30];
|
|
static int next_symbol;
|
|
|
|
char * make_symbol(char * symbol){
|
|
return local_symbols[next_symbol++] = xstrdup(symbol);
|
|
}
|
|
|
|
void flush_symbols()
|
|
{
|
|
while(--next_symbol>= 0) free(local_symbols[next_symbol]);
|
|
next_symbol = 0;
|
|
}
|
|
|
|
#endif /* DONT_USE_READLINE */
|