mirror of
https://github.com/reactos/wine.git
synced 2025-04-04 00:51:40 +00:00

Sun Jan 19 11:46:48 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [loader/module.c] Fixed LoadModule() to always call the DLL initialization code. * [windows/event.c] Moved all the keyboard stuff to windows/keyboard.c * [tools/build.c] Fixed Win32 register functions. Sat Jan 18 22:24:41 1997 David Makepeace <D.Makepeace@mailbox.uq.oz.au> * [tools/makedep.c] Fixed bug which causes SEGV on Solaris x86. Fri Jan 17 18:32:27 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl> * [controls/edit.c] Implemented WM_UNDO, WM_CONTEXTMENU (temporary using WM_RBUTTONUP), WM_COMMAND, WM_INITPOPUPMENU, WM_SYSKEYDOWN. Fixed EM_SETSEL and some minor bugs (features). Hence: fully functional undo and a win95 menu with the right mouse button. * [include/resources.h] [resources/TODO] [resources/sysres_??.rc] Added a context menu for the edit control. Translations, please ... Fri Jan 17 08:29:52 1997 David Faure <david.faure@ifhamy.insa-lyon.fr> * [windows/event.c] Move EVENT_ToAscii to windows/keyboard.c (where name ToAscii) Fixed Keypad keys 0-9 and . in EVENT_event_to_vkey. Added 3-state handling of toggle keys (CapsLock, NumLock) in order to make them work with any X server. Toggle keys now generate WM_KEYDOWN and WM_KEYUP on each pressing. * [include/keyboard.h] Totally replaced the file (formerly containing the vkcase definitions) by the declaration of 'extern' variables contained by event.c and used by keyboard.c * [windows/keyboard.c] Started to rewrite VkKeyScan and MapVirtualKey, to make them use the table keyc2vkey or X functions only. ToAscii : added keypad 0-9 and . special case. Changed toggle keys active mask from 0x80 to 0x1. * [misc/keyboard.c] File deleted. Contents moved to windows/keyboard.c. * [misc/main.c] Added putenv XKB_DISABLE to disable XKB extension (which, when present, causes AltGr to change keyboard group instead of being a modifier). Tue Jan 14 22:56:43 1997 Philippe De Muyter <phdm@info.ucl.ac.be> * [windows/event.c] Do not assume NumLockMask is Mod2Mask, but compute it by scanning output of XGetModifierMapping for XK_Num_Lock. Tue Jan 14 15:49:49 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [loader/pe_*.c] [include/peexe.h] [include/resource32.h] [debugger/*.c] General clean up. Changed defines/structures to match Windows NT SDK. * [loader/main.c] Don't crash on empty command-line. * [windows/winpos.c] winpos.c made win32 clean. * [misc/ntdll.c] Some string conversion additions. * [files/file.c] GetFileAttributes/GetTempFileName fixed. * [misc/ver.c] VerInstallFile implemented. Mon Jan 13 15:03:11 1997 Philippe De Muyter <phdm@info.ucl.ac.be> * [tools/build.c]: Use PREFIX also in stabs messages. Mon Jan 13 10:40:33 1997 John Harvey <john@division.co.uk> * [graphics/win16drv/*] [include/win16drv.h] Many fixes and some new features. * [graphics/x11drv/font.c] [graphics/x11drv/init.c] [include/x11drv.h] [objects/font.c] GetTextMetrics() moved to graphics driver. * [if1632/gdi.spec] [misc/fontengine.c] [misc/Makefile.in] New dummy EngineEnumerateFont, EngineRealizeFont functions. * [include/windows.h] TEXTFORM16 and FONTINFO16 structure definitions moved here from include/win16drv.h
440 lines
8.0 KiB
C
440 lines
8.0 KiB
C
/*
|
|
* File source.c - source file handling for internal debugger.
|
|
*
|
|
* Copyright (C) 1997, Eric Youngdale.
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/mman.h>
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include <limits.h>
|
|
#include <strings.h>
|
|
#include <unistd.h>
|
|
#include <malloc.h>
|
|
|
|
#include "win.h"
|
|
#include "pe_image.h"
|
|
#include "peexe.h"
|
|
#include "debugger.h"
|
|
#include "peexe.h"
|
|
#include "xmalloc.h"
|
|
|
|
struct searchlist
|
|
{
|
|
char * path;
|
|
struct searchlist * next;
|
|
};
|
|
|
|
|
|
struct open_filelist
|
|
{
|
|
char * path;
|
|
char * real_path;
|
|
struct open_filelist * next;
|
|
unsigned int size;
|
|
signed int nlines;
|
|
unsigned int * linelist;
|
|
};
|
|
|
|
static struct open_filelist * ofiles;
|
|
|
|
static struct searchlist * listhead;
|
|
static char DEBUG_current_sourcefile[PATH_MAX];
|
|
static int DEBUG_start_sourceline = -1;
|
|
static int DEBUG_end_sourceline = -1;
|
|
|
|
void
|
|
DEBUG_ShowDir()
|
|
{
|
|
struct searchlist * sl;
|
|
|
|
fprintf(stderr,"Search list :\n");
|
|
for(sl = listhead; sl; sl = sl->next)
|
|
{
|
|
fprintf(stderr, "\t%s\n", sl->path);
|
|
}
|
|
fprintf(stderr, "\n");
|
|
}
|
|
|
|
void
|
|
DEBUG_AddPath(const char * path)
|
|
{
|
|
struct searchlist * sl;
|
|
|
|
sl = (struct searchlist *) xmalloc(sizeof(struct searchlist));
|
|
if( sl == NULL )
|
|
{
|
|
return;
|
|
}
|
|
|
|
sl->next = listhead;
|
|
sl->path = xstrdup(path);
|
|
listhead = sl;
|
|
}
|
|
|
|
void
|
|
DEBUG_NukePath()
|
|
{
|
|
struct searchlist * sl;
|
|
struct searchlist * nxt;
|
|
|
|
for(sl = listhead; sl; sl = nxt)
|
|
{
|
|
nxt = sl->next;
|
|
free(sl->path);
|
|
free(sl);
|
|
}
|
|
|
|
listhead = NULL;
|
|
}
|
|
|
|
static
|
|
int
|
|
DEBUG_DisplaySource(char * sourcefile, int start, int end)
|
|
{
|
|
char * addr;
|
|
char buffer[1024];
|
|
int fd;
|
|
int i;
|
|
struct open_filelist * ol;
|
|
int nlines;
|
|
char * pnt;
|
|
int rtn;
|
|
struct searchlist * sl;
|
|
struct stat statbuf;
|
|
int status;
|
|
char tmppath[PATH_MAX];
|
|
|
|
/*
|
|
* First see whether we have the file open already. If so, then
|
|
* use that, otherwise we have to try and open it.
|
|
*/
|
|
for(ol = ofiles; ol; ol = ol->next)
|
|
{
|
|
if( strcmp(ol->path, sourcefile) == 0 )
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
if( ol == NULL )
|
|
{
|
|
/*
|
|
* Try again, stripping the path from the opened file.
|
|
*/
|
|
for(ol = ofiles; ol; ol = ol->next)
|
|
{
|
|
pnt = strrchr(ol->path, '/');
|
|
if( pnt != NULL && strcmp(pnt + 1, sourcefile) == 0 )
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
if( ol == NULL )
|
|
{
|
|
/*
|
|
* See if this is a DOS style name or not.
|
|
*/
|
|
pnt = strchr(sourcefile, '\\' );
|
|
if( pnt == NULL )
|
|
{
|
|
pnt = strchr(sourcefile, '/' );
|
|
if( pnt == NULL )
|
|
{
|
|
pnt = sourcefile;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Crapola. We need to try and open the file.
|
|
*/
|
|
status = stat(sourcefile, &statbuf);
|
|
if( status != -1 )
|
|
{
|
|
strcpy(tmppath, sourcefile);
|
|
}
|
|
else
|
|
{
|
|
for(sl = listhead; sl; sl = sl->next)
|
|
{
|
|
strcpy(tmppath, sl->path);
|
|
if( tmppath[strlen(tmppath)-1] != '/' )
|
|
{
|
|
strcat(tmppath, "/");
|
|
}
|
|
/*
|
|
* Now append the base file name.
|
|
*/
|
|
strcat(tmppath, pnt);
|
|
|
|
status = stat(tmppath, &statbuf);
|
|
if( status != -1 )
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
if( sl == NULL )
|
|
{
|
|
/*
|
|
* Still couldn't find it. Ask user for path to add.
|
|
*/
|
|
fprintf(stderr,"Enter path to file %s: ", sourcefile);
|
|
fgets(tmppath, sizeof(tmppath), stdin);
|
|
|
|
if( tmppath[strlen(tmppath)-1] == '\n' )
|
|
{
|
|
tmppath[strlen(tmppath)-1] = '\0';
|
|
}
|
|
|
|
if( tmppath[strlen(tmppath)-1] != '/' )
|
|
{
|
|
strcat(tmppath, "/");
|
|
}
|
|
/*
|
|
* Now append the base file name.
|
|
*/
|
|
strcat(tmppath, pnt);
|
|
|
|
status = stat(tmppath, &statbuf);
|
|
if( status == -1 )
|
|
{
|
|
/*
|
|
* OK, I guess the user doesn't really want to see it
|
|
* after all.
|
|
*/
|
|
ol = (struct open_filelist *) xmalloc(sizeof(*ol));
|
|
ol->path = xstrdup(sourcefile);
|
|
ol->real_path = NULL;
|
|
ol->next = ofiles;
|
|
ol->nlines = 0;
|
|
ol->linelist = NULL;
|
|
ofiles = ol;
|
|
fprintf(stderr,"Unable to open file %s\n", tmppath);
|
|
return FALSE;
|
|
}
|
|
}
|
|
}
|
|
/*
|
|
* Create header for file.
|
|
*/
|
|
ol = (struct open_filelist *) xmalloc(sizeof(*ol));
|
|
ol->path = xstrdup(sourcefile);
|
|
ol->real_path = xstrdup(tmppath);
|
|
ol->next = ofiles;
|
|
ol->nlines = 0;
|
|
ol->linelist = NULL;
|
|
ol->size = statbuf.st_size;
|
|
ofiles = ol;
|
|
|
|
/*
|
|
* Now open and map the file.
|
|
*/
|
|
fd = open(tmppath, O_RDONLY);
|
|
if( fd == -1 )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
addr = mmap(0, statbuf.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
|
|
if( addr == (char *) -1 )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
/*
|
|
* Now build up the line number mapping table.
|
|
*/
|
|
ol->nlines = 1;
|
|
pnt = addr;
|
|
while(pnt < addr + ol->size )
|
|
{
|
|
if( *pnt++ == '\n' )
|
|
{
|
|
ol->nlines++;
|
|
}
|
|
}
|
|
|
|
ol->nlines++;
|
|
ol->linelist = (unsigned int*) xmalloc(ol->nlines * sizeof(unsigned int) );
|
|
|
|
nlines = 0;
|
|
pnt = addr;
|
|
ol->linelist[nlines++] = 0;
|
|
while(pnt < addr + ol->size )
|
|
{
|
|
if( *pnt++ == '\n' )
|
|
{
|
|
ol->linelist[nlines++] = pnt - addr;
|
|
}
|
|
}
|
|
ol->linelist[nlines++] = pnt - addr;
|
|
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* We know what the file is, we just need to reopen it and remap it.
|
|
*/
|
|
fd = open(ol->real_path, O_RDONLY);
|
|
if( fd == -1 )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
addr = mmap(0, ol->size, PROT_READ, MAP_PRIVATE, fd, 0);
|
|
if( addr == (char *) -1 )
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* All we need to do is to display the source lines here.
|
|
*/
|
|
rtn = FALSE;
|
|
for(i=start - 1; i <= end - 1; i++)
|
|
{
|
|
if( i < 0 || i >= ol->nlines - 1)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
rtn = TRUE;
|
|
memset(&buffer, 0, sizeof(buffer));
|
|
if( ol->linelist[i+1] != ol->linelist[i] )
|
|
{
|
|
memcpy(&buffer, addr + ol->linelist[i],
|
|
(ol->linelist[i+1] - ol->linelist[i]) - 1);
|
|
}
|
|
fprintf(stderr,"%d\t%s\n", i + 1, buffer);
|
|
}
|
|
|
|
munmap(addr, ol->size);
|
|
close(fd);
|
|
|
|
return rtn;
|
|
|
|
}
|
|
|
|
void
|
|
DEBUG_List(struct list_id * source1, struct list_id * source2,
|
|
int delta)
|
|
{
|
|
int end;
|
|
int rtn;
|
|
int start;
|
|
char * sourcefile;
|
|
|
|
/*
|
|
* We need to see what source file we need. Hopefully we only have
|
|
* one specified, otherwise we might as well punt.
|
|
*/
|
|
if( source1 != NULL
|
|
&& source2 != NULL
|
|
&& source1->sourcefile != NULL
|
|
&& source2->sourcefile != NULL
|
|
&& strcmp(source1->sourcefile, source2->sourcefile) != 0 )
|
|
{
|
|
fprintf(stderr, "Ambiguous source file specification.\n");
|
|
return;
|
|
}
|
|
|
|
sourcefile = NULL;
|
|
if( source1 != NULL && source1->sourcefile != NULL )
|
|
{
|
|
sourcefile = source1->sourcefile;
|
|
}
|
|
|
|
if( sourcefile == NULL
|
|
&& source2 != NULL
|
|
&& source2->sourcefile != NULL )
|
|
{
|
|
sourcefile = source2->sourcefile;
|
|
}
|
|
|
|
if( sourcefile == NULL )
|
|
{
|
|
sourcefile = (char *) &DEBUG_current_sourcefile;
|
|
}
|
|
|
|
if( sourcefile == NULL )
|
|
{
|
|
fprintf(stderr, "No source file specified.\n");
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* Now figure out the line number range to be listed.
|
|
*/
|
|
start = -1;
|
|
end = -1;
|
|
|
|
if( source1 != NULL )
|
|
{
|
|
start = source1->line;
|
|
}
|
|
|
|
if( source2 != NULL )
|
|
{
|
|
end = source2->line;
|
|
}
|
|
|
|
if( start == -1 && end == -1 )
|
|
{
|
|
if( delta < 0 )
|
|
{
|
|
end = DEBUG_start_sourceline;
|
|
start = end + delta;
|
|
}
|
|
else
|
|
{
|
|
start = DEBUG_end_sourceline;
|
|
end = start + delta;
|
|
}
|
|
}
|
|
else if( start == -1 )
|
|
{
|
|
start = end + delta;
|
|
}
|
|
else if (end == -1)
|
|
{
|
|
end = start + delta;
|
|
}
|
|
|
|
/*
|
|
* Now call this function to do the dirty work.
|
|
*/
|
|
rtn = DEBUG_DisplaySource(sourcefile, start, end);
|
|
|
|
if( sourcefile != (char *) &DEBUG_current_sourcefile )
|
|
{
|
|
strcpy(DEBUG_current_sourcefile, sourcefile);
|
|
}
|
|
DEBUG_start_sourceline = start;
|
|
DEBUG_end_sourceline = end;
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
main()
|
|
{
|
|
int i, j;
|
|
DEBUG_AddPath("../../de");
|
|
while(1==1)
|
|
{
|
|
fscanf(stdin,"%d %d", &i, &j);
|
|
DEBUG_DisplaySource("dumpexe.c", i, j);
|
|
}
|
|
return 0;
|
|
}
|
|
#endif
|