Fixed WM_GETTEXTLENGTH handling.
[wine/multimedia.git] / debugger / source.c
blob7ec9020706a72c7066145a0c81a9e25862a26384
1 /*
2 * File source.c - source file handling for internal debugger.
4 * Copyright (C) 1997, Eric Youngdale.
6 */
8 #include "config.h"
9 #include <stdio.h>
10 #include <stdlib.h>
12 #include <sys/types.h>
13 #ifdef HAVE_SYS_MMAN_H
14 #include <sys/mman.h>
15 #endif
16 #include <fcntl.h>
17 #include <sys/stat.h>
18 #include <limits.h>
19 #include <string.h>
20 #include <unistd.h>
21 #ifndef PATH_MAX
22 #define PATH_MAX _MAX_PATH
23 #endif
25 #include "debugger.h"
27 struct searchlist
29 char * path;
30 struct searchlist * next;
34 struct open_filelist
36 char * path;
37 char * real_path;
38 struct open_filelist * next;
39 unsigned int size;
40 signed int nlines;
41 unsigned int * linelist;
44 static struct open_filelist * ofiles;
46 static struct searchlist * listhead;
47 static char DEBUG_current_sourcefile[PATH_MAX];
48 static int DEBUG_start_sourceline = -1;
49 static int DEBUG_end_sourceline = -1;
51 void
52 DEBUG_ShowDir(void)
54 struct searchlist * sl;
56 DEBUG_Printf(DBG_CHN_MESG,"Search list :\n");
57 for(sl = listhead; sl; sl = sl->next)
59 DEBUG_Printf(DBG_CHN_MESG, "\t%s\n", sl->path);
61 DEBUG_Printf(DBG_CHN_MESG, "\n");
64 void
65 DEBUG_AddPath(const char * path)
67 struct searchlist * sl;
69 sl = (struct searchlist *) DBG_alloc(sizeof(struct searchlist));
70 if( sl == NULL )
72 return;
75 sl->next = listhead;
76 sl->path = DBG_strdup(path);
77 listhead = sl;
80 void
81 DEBUG_NukePath(void)
83 struct searchlist * sl;
84 struct searchlist * nxt;
86 for(sl = listhead; sl; sl = nxt)
88 nxt = sl->next;
89 DBG_free(sl->path);
90 DBG_free(sl);
93 listhead = NULL;
96 static
97 int
98 DEBUG_DisplaySource(char * sourcefile, int start, int end)
100 char * addr;
101 char buffer[1024];
102 int fd;
103 int i;
104 struct open_filelist * ol;
105 int nlines;
106 char * basename = NULL;
107 char * pnt;
108 int rtn;
109 struct searchlist * sl;
110 struct stat statbuf;
111 int status;
112 char tmppath[PATH_MAX];
115 * First see whether we have the file open already. If so, then
116 * use that, otherwise we have to try and open it.
118 for(ol = ofiles; ol; ol = ol->next)
120 if( strcmp(ol->path, sourcefile) == 0 )
122 break;
126 if( ol == NULL )
129 * Try again, stripping the path from the opened file.
131 basename = strrchr(sourcefile, '\\' );
132 if ( !basename )
133 basename = strrchr(sourcefile, '/' );
134 if ( !basename )
135 basename = sourcefile;
136 else
137 basename++;
139 for(ol = ofiles; ol; ol = ol->next)
141 if( strcmp(ol->path, basename) == 0 )
143 break;
149 if( ol == NULL )
152 * Crapola. We need to try and open the file.
154 status = stat(sourcefile, &statbuf);
155 if( status != -1 )
157 strcpy(tmppath, sourcefile);
159 else if( (status = stat(basename, &statbuf)) != -1 )
161 strcpy(tmppath, basename);
163 else
165 for(sl = listhead; sl; sl = sl->next)
167 strcpy(tmppath, sl->path);
168 if( tmppath[strlen(tmppath)-1] != '/' )
170 strcat(tmppath, "/");
173 * Now append the base file name.
175 strcat(tmppath, basename);
177 status = stat(tmppath, &statbuf);
178 if( status != -1 )
180 break;
184 if( sl == NULL )
186 char zbuf[256];
188 * Still couldn't find it. Ask user for path to add.
190 sprintf(zbuf, "Enter path to file '%s': ", sourcefile);
191 lstrcpynA(tmppath, readline(zbuf), sizeof(tmppath));
193 if( tmppath[strlen(tmppath)-1] == '\n' )
195 tmppath[strlen(tmppath)-1] = '\0';
198 if( tmppath[strlen(tmppath)-1] != '/' )
200 strcat(tmppath, "/");
203 * Now append the base file name.
205 strcat(tmppath, basename);
207 status = stat(tmppath, &statbuf);
208 if( status == -1 )
211 * OK, I guess the user doesn't really want to see it
212 * after all.
214 ol = (struct open_filelist *) DBG_alloc(sizeof(*ol));
215 ol->path = DBG_strdup(sourcefile);
216 ol->real_path = NULL;
217 ol->next = ofiles;
218 ol->nlines = 0;
219 ol->linelist = NULL;
220 ofiles = ol;
221 DEBUG_Printf(DBG_CHN_MESG,"Unable to open file %s\n", tmppath);
222 return FALSE;
227 * Create header for file.
229 ol = (struct open_filelist *) DBG_alloc(sizeof(*ol));
230 ol->path = DBG_strdup(sourcefile);
231 ol->real_path = DBG_strdup(tmppath);
232 ol->next = ofiles;
233 ol->nlines = 0;
234 ol->linelist = NULL;
235 ol->size = statbuf.st_size;
236 ofiles = ol;
239 * Now open and map the file.
241 fd = open(tmppath, O_RDONLY);
242 if( fd == -1 )
244 return FALSE;
247 addr = mmap(0, statbuf.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
248 if( addr == (char *) -1 )
250 return FALSE;
254 * Now build up the line number mapping table.
256 ol->nlines = 1;
257 pnt = addr;
258 while(pnt < addr + ol->size )
260 if( *pnt++ == '\n' )
262 ol->nlines++;
266 ol->nlines++;
267 ol->linelist = (unsigned int*) DBG_alloc( ol->nlines * sizeof(unsigned int) );
269 nlines = 0;
270 pnt = addr;
271 ol->linelist[nlines++] = 0;
272 while(pnt < addr + ol->size )
274 if( *pnt++ == '\n' )
276 ol->linelist[nlines++] = pnt - addr;
279 ol->linelist[nlines++] = pnt - addr;
282 else
285 * We know what the file is, we just need to reopen it and remap it.
287 fd = open(ol->real_path, O_RDONLY);
288 if( fd == -1 )
290 return FALSE;
293 addr = mmap(0, ol->size, PROT_READ, MAP_PRIVATE, fd, 0);
294 if( addr == (char *) -1 )
296 return FALSE;
301 * All we need to do is to display the source lines here.
303 rtn = FALSE;
304 for(i=start - 1; i <= end - 1; i++)
306 if( i < 0 || i >= ol->nlines - 1)
308 continue;
311 rtn = TRUE;
312 memset(&buffer, 0, sizeof(buffer));
313 if( ol->linelist[i+1] != ol->linelist[i] )
315 memcpy(&buffer, addr + ol->linelist[i],
316 (ol->linelist[i+1] - ol->linelist[i]) - 1);
318 DEBUG_Printf(DBG_CHN_MESG,"%d\t%s\n", i + 1, buffer);
321 munmap(addr, ol->size);
322 close(fd);
324 return rtn;
328 void
329 DEBUG_List(struct list_id * source1, struct list_id * source2,
330 int delta)
332 int end;
333 int rtn;
334 int start;
335 char * sourcefile;
338 * We need to see what source file we need. Hopefully we only have
339 * one specified, otherwise we might as well punt.
341 if( source1 != NULL
342 && source2 != NULL
343 && source1->sourcefile != NULL
344 && source2->sourcefile != NULL
345 && strcmp(source1->sourcefile, source2->sourcefile) != 0 )
347 DEBUG_Printf(DBG_CHN_MESG, "Ambiguous source file specification.\n");
348 return;
351 sourcefile = NULL;
352 if( source1 != NULL && source1->sourcefile != NULL )
354 sourcefile = source1->sourcefile;
357 if( sourcefile == NULL
358 && source2 != NULL
359 && source2->sourcefile != NULL )
361 sourcefile = source2->sourcefile;
364 if( sourcefile == NULL )
366 sourcefile = (char *) &DEBUG_current_sourcefile;
369 if( sourcefile == NULL )
371 DEBUG_Printf(DBG_CHN_MESG, "No source file specified.\n");
372 return;
376 * Now figure out the line number range to be listed.
378 start = -1;
379 end = -1;
381 if( source1 != NULL )
383 start = source1->line;
386 if( source2 != NULL )
388 end = source2->line;
391 if( start == -1 && end == -1 )
393 if( delta < 0 )
395 end = DEBUG_start_sourceline;
396 start = end + delta;
398 else
400 start = DEBUG_end_sourceline;
401 end = start + delta;
404 else if( start == -1 )
406 start = end + delta;
408 else if (end == -1)
410 end = start + delta;
414 * Now call this function to do the dirty work.
416 rtn = DEBUG_DisplaySource(sourcefile, start, end);
418 if( sourcefile != (char *) &DEBUG_current_sourcefile )
420 strcpy(DEBUG_current_sourcefile, sourcefile);
422 DEBUG_start_sourceline = start;
423 DEBUG_end_sourceline = end;
426 DBG_ADDR DEBUG_LastDisassemble={0,0};
428 BOOL DEBUG_DisassembleInstruction(DBG_ADDR *addr)
430 char ch;
431 BOOL ret = TRUE;
433 DEBUG_PrintAddress(addr, DEBUG_CurrThread->dbg_mode, TRUE);
434 DEBUG_Printf(DBG_CHN_MESG, ": ");
435 if (!DEBUG_READ_MEM_VERBOSE((void*)DEBUG_ToLinear(addr), &ch, sizeof(ch))) {
436 DEBUG_Printf(DBG_CHN_MESG, "-- no code --");
437 ret = FALSE;
438 } else {
439 DEBUG_Disasm(addr, TRUE);
441 DEBUG_Printf(DBG_CHN_MESG,"\n");
442 return ret;
445 void
446 DEBUG_Disassemble(const DBG_VALUE *xstart,const DBG_VALUE *xend,int offset)
448 int i;
449 DBG_ADDR last;
450 DBG_VALUE end,start;
452 if (xstart) {
453 start = *xstart;
454 DEBUG_GrabAddress(&start, TRUE);
456 if (xend) {
457 end = *xend;
458 DEBUG_GrabAddress(&end, TRUE);
460 if (!xstart && !xend) {
461 last = DEBUG_LastDisassemble;
462 if (!last.seg && !last.off)
463 DEBUG_GetCurrentAddress( &last );
465 for (i=0;i<offset;i++)
466 if (!DEBUG_DisassembleInstruction(&last)) break;
467 DEBUG_LastDisassemble = last;
468 return;
470 last = start.addr;
471 if (!xend) {
472 for (i=0;i<offset;i++)
473 if (!DEBUG_DisassembleInstruction(&last)) break;
474 DEBUG_LastDisassemble = last;
475 return;
477 while (last.off <= end.addr.off)
478 if (!DEBUG_DisassembleInstruction(&last)) break;
479 DEBUG_LastDisassemble = last;
480 return;