* dbxread.c: Don't include libbfd.h.
[deliverable/binutils-gdb.git] / gdb / utils.c
CommitLineData
bd5635a1 1/* General utility routines for GDB, the GNU debugger.
7919c3ed 2 Copyright 1986, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
bd5635a1
RP
3
4This file is part of GDB.
5
351b221d 6This program is free software; you can redistribute it and/or modify
bd5635a1 7it under the terms of the GNU General Public License as published by
351b221d
JG
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
bd5635a1 10
351b221d 11This program is distributed in the hope that it will be useful,
bd5635a1
RP
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
351b221d
JG
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1 19
d747e0af 20#include "defs.h"
51b57ded 21#if !defined(__GO32__)
bd5635a1
RP
22#include <sys/ioctl.h>
23#include <sys/param.h>
24#include <pwd.h>
51b57ded 25#endif
2bc2e684
FF
26#include <varargs.h>
27#include <ctype.h>
28#include <string.h>
29
bd5635a1
RP
30#include "signals.h"
31#include "gdbcmd.h"
159dd2aa 32#include "serial.h"
bd5635a1
RP
33#include "bfd.h"
34#include "target.h"
bcf2e6ab 35#include "demangle.h"
bd5d07d9
FF
36#include "expression.h"
37#include "language.h"
1c95d7ab 38#include "annotate.h"
bd5635a1 39
d8742f46
JK
40#include "readline.h"
41
42/* readline defines this. */
43#undef savestring
44
7919c3ed
JG
45/* Prototypes for local functions */
46
65ce5df4
JG
47#if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
48#else
3624c875 49
7919c3ed
JG
50static void
51malloc_botch PARAMS ((void));
3624c875 52
65ce5df4 53#endif /* NO_MMALLOC, etc */
7919c3ed
JG
54
55static void
56fatal_dump_core (); /* Can't prototype with <varargs.h> usage... */
57
58static void
59prompt_for_continue PARAMS ((void));
60
61static void
62set_width_command PARAMS ((char *, int, struct cmd_list_element *));
63
bd5635a1
RP
64/* If this definition isn't overridden by the header files, assume
65 that isatty and fileno exist on this system. */
66#ifndef ISATTY
67#define ISATTY(FP) (isatty (fileno (FP)))
68#endif
69
bd5635a1
RP
70/* Chain of cleanup actions established with make_cleanup,
71 to be executed if an error happens. */
72
73static struct cleanup *cleanup_chain;
74
16d2cc80
SS
75/* Nonzero if we have job control. */
76
77int job_control;
78
bd5635a1
RP
79/* Nonzero means a quit has been requested. */
80
81int quit_flag;
82
159dd2aa
JK
83/* Nonzero means quit immediately if Control-C is typed now, rather
84 than waiting until QUIT is executed. Be careful in setting this;
85 code which executes with immediate_quit set has to be very careful
86 about being able to deal with being interrupted at any time. It is
87 almost always better to use QUIT; the only exception I can think of
88 is being able to quit out of a system call (using EINTR loses if
89 the SIGINT happens between the previous QUIT and the system call).
90 To immediately quit in the case in which a SIGINT happens between
91 the previous QUIT and setting immediate_quit (desirable anytime we
92 expect to block), call QUIT after setting immediate_quit. */
bd5635a1
RP
93
94int immediate_quit;
95
96/* Nonzero means that encoded C++ names should be printed out in their
97 C++ form rather than raw. */
98
99int demangle = 1;
100
101/* Nonzero means that encoded C++ names should be printed out in their
102 C++ form even in assembler language displays. If this is set, but
103 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
104
105int asm_demangle = 0;
106
107/* Nonzero means that strings with character values >0x7F should be printed
108 as octal escapes. Zero means just print the value (e.g. it's an
109 international character, and the terminal or window can cope.) */
110
111int sevenbit_strings = 0;
81066208
JG
112
113/* String to be printed before error messages, if any. */
114
115char *error_pre_print;
3624c875 116char *warning_pre_print = "\nwarning: ";
bd5635a1
RP
117\f
118/* Add a new cleanup to the cleanup_chain,
119 and return the previous chain pointer
120 to be passed later to do_cleanups or discard_cleanups.
121 Args are FUNCTION to clean up with, and ARG to pass to it. */
122
123struct cleanup *
124make_cleanup (function, arg)
7919c3ed
JG
125 void (*function) PARAMS ((PTR));
126 PTR arg;
bd5635a1
RP
127{
128 register struct cleanup *new
129 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
130 register struct cleanup *old_chain = cleanup_chain;
131
132 new->next = cleanup_chain;
133 new->function = function;
134 new->arg = arg;
135 cleanup_chain = new;
136
137 return old_chain;
138}
139
140/* Discard cleanups and do the actions they describe
141 until we get back to the point OLD_CHAIN in the cleanup_chain. */
142
143void
144do_cleanups (old_chain)
145 register struct cleanup *old_chain;
146{
147 register struct cleanup *ptr;
148 while ((ptr = cleanup_chain) != old_chain)
149 {
5e5215eb 150 cleanup_chain = ptr->next; /* Do this first incase recursion */
bd5635a1 151 (*ptr->function) (ptr->arg);
bd5635a1
RP
152 free (ptr);
153 }
154}
155
156/* Discard cleanups, not doing the actions they describe,
157 until we get back to the point OLD_CHAIN in the cleanup_chain. */
158
159void
160discard_cleanups (old_chain)
161 register struct cleanup *old_chain;
162{
163 register struct cleanup *ptr;
164 while ((ptr = cleanup_chain) != old_chain)
165 {
166 cleanup_chain = ptr->next;
be772100 167 free ((PTR)ptr);
bd5635a1
RP
168 }
169}
170
171/* Set the cleanup_chain to 0, and return the old cleanup chain. */
172struct cleanup *
173save_cleanups ()
174{
175 struct cleanup *old_chain = cleanup_chain;
176
177 cleanup_chain = 0;
178 return old_chain;
179}
180
181/* Restore the cleanup chain from a previously saved chain. */
182void
183restore_cleanups (chain)
184 struct cleanup *chain;
185{
186 cleanup_chain = chain;
187}
188
189/* This function is useful for cleanups.
190 Do
191
192 foo = xmalloc (...);
193 old_chain = make_cleanup (free_current_contents, &foo);
194
195 to arrange to free the object thus allocated. */
196
197void
198free_current_contents (location)
199 char **location;
200{
201 free (*location);
202}
088c3a0b
JG
203
204/* Provide a known function that does nothing, to use as a base for
205 for a possibly long chain of cleanups. This is useful where we
206 use the cleanup chain for handling normal cleanups as well as dealing
207 with cleanups that need to be done as a result of a call to error().
208 In such cases, we may not be certain where the first cleanup is, unless
209 we have a do-nothing one to always use as the base. */
210
211/* ARGSUSED */
212void
213null_cleanup (arg)
214 char **arg;
215{
216}
217
bd5635a1 218\f
2bc2e684
FF
219/* Provide a hook for modules wishing to print their own warning messages
220 to set up the terminal state in a compatible way, without them having
221 to import all the target_<...> macros. */
222
223void
224warning_setup ()
225{
226 target_terminal_ours ();
227 wrap_here(""); /* Force out any buffered output */
199b2450 228 gdb_flush (gdb_stdout);
2bc2e684
FF
229}
230
231/* Print a warning message.
232 The first argument STRING is the warning message, used as a fprintf string,
233 and the remaining args are passed as arguments to it.
234 The primary difference between warnings and errors is that a warning
235 does not force the return to command level. */
236
237/* VARARGS */
238void
239warning (va_alist)
240 va_dcl
241{
242 va_list args;
243 char *string;
244
245 va_start (args);
246 target_terminal_ours ();
247 wrap_here(""); /* Force out any buffered output */
199b2450 248 gdb_flush (gdb_stdout);
2bc2e684 249 if (warning_pre_print)
199b2450 250 fprintf_unfiltered (gdb_stderr, warning_pre_print);
2bc2e684 251 string = va_arg (args, char *);
199b2450
TL
252 vfprintf_unfiltered (gdb_stderr, string, args);
253 fprintf_unfiltered (gdb_stderr, "\n");
2bc2e684
FF
254 va_end (args);
255}
256
a0cf4681 257/* Start the printing of an error message. Way to use this is to call
a6b26c44 258 this, output the error message (use filtered output), and then call
a0cf4681
JK
259 return_to_top_level (RETURN_ERROR). error() provides a convenient way to
260 do this for the special case that the error message can be formatted with
261 a single printf call, but this is more general. */
262void
263error_begin ()
264{
265 target_terminal_ours ();
266 wrap_here (""); /* Force out any buffered output */
267 gdb_flush (gdb_stdout);
268
1c95d7ab 269 annotate_error_begin ();
a0cf4681
JK
270
271 if (error_pre_print)
272 fprintf_filtered (gdb_stderr, error_pre_print);
273}
274
bd5635a1
RP
275/* Print an error message and return to command level.
276 The first argument STRING is the error message, used as a fprintf string,
277 and the remaining args are passed as arguments to it. */
278
279/* VARARGS */
7919c3ed 280NORETURN void
bd5635a1
RP
281error (va_alist)
282 va_dcl
283{
284 va_list args;
285 char *string;
286
a0cf4681 287 error_begin ();
bd5635a1 288 va_start (args);
bd5635a1 289 string = va_arg (args, char *);
199b2450
TL
290 vfprintf_filtered (gdb_stderr, string, args);
291 fprintf_filtered (gdb_stderr, "\n");
bd5635a1 292 va_end (args);
159dd2aa 293 return_to_top_level (RETURN_ERROR);
bd5635a1
RP
294}
295
296/* Print an error message and exit reporting failure.
297 This is for a error that we cannot continue from.
7919c3ed
JG
298 The arguments are printed a la printf.
299
300 This function cannot be declared volatile (NORETURN) in an
301 ANSI environment because exit() is not declared volatile. */
bd5635a1
RP
302
303/* VARARGS */
7919c3ed 304NORETURN void
bd5635a1
RP
305fatal (va_alist)
306 va_dcl
307{
308 va_list args;
309 char *string;
310
311 va_start (args);
312 string = va_arg (args, char *);
199b2450
TL
313 fprintf_unfiltered (gdb_stderr, "\ngdb: ");
314 vfprintf_unfiltered (gdb_stderr, string, args);
315 fprintf_unfiltered (gdb_stderr, "\n");
bd5635a1
RP
316 va_end (args);
317 exit (1);
318}
319
320/* Print an error message and exit, dumping core.
321 The arguments are printed a la printf (). */
7919c3ed 322
bd5635a1 323/* VARARGS */
7919c3ed 324static void
bd5635a1
RP
325fatal_dump_core (va_alist)
326 va_dcl
327{
328 va_list args;
329 char *string;
330
331 va_start (args);
332 string = va_arg (args, char *);
333 /* "internal error" is always correct, since GDB should never dump
334 core, no matter what the input. */
199b2450
TL
335 fprintf_unfiltered (gdb_stderr, "\ngdb internal error: ");
336 vfprintf_unfiltered (gdb_stderr, string, args);
337 fprintf_unfiltered (gdb_stderr, "\n");
bd5635a1
RP
338 va_end (args);
339
340 signal (SIGQUIT, SIG_DFL);
341 kill (getpid (), SIGQUIT);
342 /* We should never get here, but just in case... */
343 exit (1);
344}
7919c3ed 345
4ace50a5
FF
346/* The strerror() function can return NULL for errno values that are
347 out of range. Provide a "safe" version that always returns a
348 printable string. */
349
350char *
351safe_strerror (errnum)
352 int errnum;
353{
354 char *msg;
355 static char buf[32];
356
357 if ((msg = strerror (errnum)) == NULL)
358 {
359 sprintf (buf, "(undocumented errno %d)", errnum);
360 msg = buf;
361 }
362 return (msg);
363}
364
365/* The strsignal() function can return NULL for signal values that are
366 out of range. Provide a "safe" version that always returns a
367 printable string. */
368
369char *
370safe_strsignal (signo)
371 int signo;
372{
373 char *msg;
374 static char buf[32];
375
376 if ((msg = strsignal (signo)) == NULL)
377 {
378 sprintf (buf, "(undocumented signal %d)", signo);
379 msg = buf;
380 }
381 return (msg);
382}
383
384
bd5635a1
RP
385/* Print the system error message for errno, and also mention STRING
386 as the file name for which the error was encountered.
387 Then return to command level. */
388
389void
390perror_with_name (string)
391 char *string;
392{
bd5635a1
RP
393 char *err;
394 char *combined;
395
4ace50a5 396 err = safe_strerror (errno);
bd5635a1
RP
397 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
398 strcpy (combined, string);
399 strcat (combined, ": ");
400 strcat (combined, err);
401
402 /* I understand setting these is a matter of taste. Still, some people
403 may clear errno but not know about bfd_error. Doing this here is not
404 unreasonable. */
8eec3310 405 bfd_set_error (bfd_error_no_error);
bd5635a1
RP
406 errno = 0;
407
408 error ("%s.", combined);
409}
410
411/* Print the system error message for ERRCODE, and also mention STRING
412 as the file name for which the error was encountered. */
413
414void
415print_sys_errmsg (string, errcode)
416 char *string;
417 int errcode;
418{
bd5635a1
RP
419 char *err;
420 char *combined;
421
4ace50a5 422 err = safe_strerror (errcode);
bd5635a1
RP
423 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
424 strcpy (combined, string);
425 strcat (combined, ": ");
426 strcat (combined, err);
427
44a09a68
JK
428 /* We want anything which was printed on stdout to come out first, before
429 this message. */
430 gdb_flush (gdb_stdout);
199b2450 431 fprintf_unfiltered (gdb_stderr, "%s.\n", combined);
bd5635a1
RP
432}
433
434/* Control C eventually causes this to be called, at a convenient time. */
435
436void
437quit ()
438{
199b2450 439 serial_t gdb_stdout_serial = serial_fdopen (1);
159dd2aa 440
bd5635a1 441 target_terminal_ours ();
159dd2aa 442
44a09a68
JK
443 /* We want all output to appear now, before we print "Quit". We
444 have 3 levels of buffering we have to flush (it's possible that
445 some of these should be changed to flush the lower-level ones
446 too): */
447
448 /* 1. The _filtered buffer. */
449 wrap_here ((char *)0);
450
451 /* 2. The stdio buffer. */
452 gdb_flush (gdb_stdout);
453 gdb_flush (gdb_stderr);
159dd2aa 454
44a09a68
JK
455 /* 3. The system-level buffer. */
456 SERIAL_FLUSH_OUTPUT (gdb_stdout_serial);
199b2450 457 SERIAL_UN_FDOPEN (gdb_stdout_serial);
159dd2aa 458
1c95d7ab 459 annotate_error_begin ();
a0cf4681 460
159dd2aa
JK
461 /* Don't use *_filtered; we don't want to prompt the user to continue. */
462 if (error_pre_print)
199b2450 463 fprintf_unfiltered (gdb_stderr, error_pre_print);
159dd2aa
JK
464
465 if (job_control
466 /* If there is no terminal switching for this target, then we can't
467 possibly get screwed by the lack of job control. */
468 || current_target->to_terminal_ours == NULL)
199b2450 469 fprintf_unfiltered (gdb_stderr, "Quit\n");
159dd2aa 470 else
199b2450 471 fprintf_unfiltered (gdb_stderr,
159dd2aa
JK
472 "Quit (expect signal SIGINT when the program is resumed)\n");
473 return_to_top_level (RETURN_QUIT);
bd5635a1
RP
474}
475
bd5d07d9
FF
476
477#ifdef __GO32__
478
479/* In the absence of signals, poll keyboard for a quit.
480 Called from #define QUIT pollquit() in xm-go32.h. */
481
482void
483pollquit()
484{
485 if (kbhit ())
486 {
487 int k = getkey ();
44a09a68 488 if (k == 1) {
bd5d07d9 489 quit_flag = 1;
44a09a68
JK
490 quit();
491 }
492 else if (k == 2) {
bd5d07d9 493 immediate_quit = 1;
44a09a68
JK
494 quit ();
495 }
496 else
497 {
498 /* We just ignore it */
499 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
500 }
bd5d07d9
FF
501 }
502}
503
bd5d07d9 504
44a09a68
JK
505#endif
506#ifdef __GO32__
507void notice_quit()
508{
509 if (kbhit ())
510 {
511 int k = getkey ();
512 if (k == 1) {
513 quit_flag = 1;
514 }
515 else if (k == 2)
516 {
517 immediate_quit = 1;
518 }
519 else
520 {
521 fprintf_unfiltered (gdb_stderr, "CTRL-A to quit, CTRL-B to quit harder\n");
522 }
523 }
524}
525#else
526void notice_quit()
527{
528 /* Done by signals */
529}
530#endif
bd5635a1
RP
531/* Control C comes here */
532
533void
088c3a0b
JG
534request_quit (signo)
535 int signo;
bd5635a1
RP
536{
537 quit_flag = 1;
538
44a09a68
JK
539 /* Restore the signal handler. Harmless with BSD-style signals, needed
540 for System V-style signals. So just always do it, rather than worrying
541 about USG defines and stuff like that. */
088c3a0b 542 signal (signo, request_quit);
bd5635a1
RP
543
544 if (immediate_quit)
545 quit ();
546}
3624c875
FF
547
548\f
549/* Memory management stuff (malloc friends). */
550
551#if defined (NO_MMALLOC)
552
553PTR
554mmalloc (md, size)
555 PTR md;
556 long size;
557{
558 return (malloc (size));
559}
560
561PTR
562mrealloc (md, ptr, size)
563 PTR md;
564 PTR ptr;
565 long size;
566{
4ace50a5
FF
567 if (ptr == 0) /* Guard against old realloc's */
568 return malloc (size);
569 else
570 return realloc (ptr, size);
3624c875
FF
571}
572
573void
574mfree (md, ptr)
575 PTR md;
576 PTR ptr;
577{
578 free (ptr);
579}
580
581#endif /* NO_MMALLOC */
582
583#if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
584
585void
586init_malloc (md)
587 PTR md;
588{
589}
590
591#else /* have mmalloc and want corruption checking */
592
593static void
594malloc_botch ()
595{
596 fatal_dump_core ("Memory corruption");
597}
598
599/* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
600 by MD, to detect memory corruption. Note that MD may be NULL to specify
601 the default heap that grows via sbrk.
602
603 Note that for freshly created regions, we must call mmcheck prior to any
604 mallocs in the region. Otherwise, any region which was allocated prior to
605 installing the checking hooks, which is later reallocated or freed, will
606 fail the checks! The mmcheck function only allows initial hooks to be
607 installed before the first mmalloc. However, anytime after we have called
608 mmcheck the first time to install the checking hooks, we can call it again
609 to update the function pointer to the memory corruption handler.
610
611 Returns zero on failure, non-zero on success. */
612
613void
614init_malloc (md)
615 PTR md;
616{
617 if (!mmcheck (md, malloc_botch))
618 {
619 warning ("internal error: failed to install memory consistency checks");
620 }
621
4ed3a9ea 622 mmtrace ();
3624c875
FF
623}
624
625#endif /* Have mmalloc and want corruption checking */
626
627/* Called when a memory allocation fails, with the number of bytes of
628 memory requested in SIZE. */
629
630NORETURN void
631nomem (size)
632 long size;
633{
634 if (size > 0)
635 {
636 fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
637 }
638 else
639 {
640 fatal ("virtual memory exhausted.");
641 }
642}
643
644/* Like mmalloc but get error if no storage available, and protect against
645 the caller wanting to allocate zero bytes. Whether to return NULL for
646 a zero byte request, or translate the request into a request for one
647 byte of zero'd storage, is a religious issue. */
648
649PTR
650xmmalloc (md, size)
651 PTR md;
652 long size;
653{
654 register PTR val;
655
656 if (size == 0)
657 {
658 val = NULL;
659 }
660 else if ((val = mmalloc (md, size)) == NULL)
661 {
662 nomem (size);
663 }
664 return (val);
665}
666
667/* Like mrealloc but get error if no storage available. */
668
669PTR
670xmrealloc (md, ptr, size)
671 PTR md;
672 PTR ptr;
673 long size;
674{
675 register PTR val;
676
677 if (ptr != NULL)
678 {
679 val = mrealloc (md, ptr, size);
680 }
681 else
682 {
683 val = mmalloc (md, size);
684 }
685 if (val == NULL)
686 {
687 nomem (size);
688 }
689 return (val);
690}
691
692/* Like malloc but get error if no storage available, and protect against
693 the caller wanting to allocate zero bytes. */
694
695PTR
696xmalloc (size)
697 long size;
698{
199b2450 699 return (xmmalloc ((PTR) NULL, size));
3624c875
FF
700}
701
702/* Like mrealloc but get error if no storage available. */
703
704PTR
705xrealloc (ptr, size)
706 PTR ptr;
707 long size;
708{
199b2450 709 return (xmrealloc ((PTR) NULL, ptr, size));
3624c875
FF
710}
711
bd5635a1
RP
712\f
713/* My replacement for the read system call.
714 Used like `read' but keeps going if `read' returns too soon. */
715
716int
717myread (desc, addr, len)
718 int desc;
719 char *addr;
720 int len;
721{
722 register int val;
723 int orglen = len;
724
725 while (len > 0)
726 {
727 val = read (desc, addr, len);
728 if (val < 0)
729 return val;
730 if (val == 0)
731 return orglen - len;
732 len -= val;
733 addr += val;
734 }
735 return orglen;
736}
737\f
738/* Make a copy of the string at PTR with SIZE characters
739 (and add a null character at the end in the copy).
740 Uses malloc to get the space. Returns the address of the copy. */
741
742char *
743savestring (ptr, size)
088c3a0b 744 const char *ptr;
bd5635a1
RP
745 int size;
746{
747 register char *p = (char *) xmalloc (size + 1);
4ed3a9ea 748 memcpy (p, ptr, size);
bd5635a1
RP
749 p[size] = 0;
750 return p;
751}
752
3624c875
FF
753char *
754msavestring (md, ptr, size)
199b2450 755 PTR md;
3624c875
FF
756 const char *ptr;
757 int size;
758{
759 register char *p = (char *) xmmalloc (md, size + 1);
4ed3a9ea 760 memcpy (p, ptr, size);
3624c875
FF
761 p[size] = 0;
762 return p;
763}
764
8aa13b87
JK
765/* The "const" is so it compiles under DGUX (which prototypes strsave
766 in <string.h>. FIXME: This should be named "xstrsave", shouldn't it?
767 Doesn't real strsave return NULL if out of memory? */
bd5635a1
RP
768char *
769strsave (ptr)
8aa13b87 770 const char *ptr;
bd5635a1
RP
771{
772 return savestring (ptr, strlen (ptr));
773}
774
3624c875
FF
775char *
776mstrsave (md, ptr)
199b2450 777 PTR md;
3624c875
FF
778 const char *ptr;
779{
780 return (msavestring (md, ptr, strlen (ptr)));
781}
782
bd5635a1
RP
783void
784print_spaces (n, file)
785 register int n;
786 register FILE *file;
787{
788 while (n-- > 0)
789 fputc (' ', file);
790}
791
8eec3310
SC
792/* Print a host address. */
793
794void
795gdb_print_address (addr, stream)
796 PTR addr;
797 GDB_FILE *stream;
798{
799
800 /* We could use the %p conversion specifier to fprintf if we had any
801 way of knowing whether this host supports it. But the following
802 should work on the Alpha and on 32 bit machines. */
803
804 fprintf_filtered (stream, "0x%lx", (unsigned long)addr);
805}
806
bd5635a1
RP
807/* Ask user a y-or-n question and return 1 iff answer is yes.
808 Takes three args which are given to printf to print the question.
809 The first, a control string, should end in "? ".
810 It should not say how to answer, because we do that. */
811
812/* VARARGS */
813int
814query (va_alist)
815 va_dcl
816{
817 va_list args;
818 char *ctlstr;
819 register int answer;
820 register int ans2;
d8742f46 821 int retval;
bd5635a1
RP
822
823 /* Automatically answer "yes" if input is not from a terminal. */
824 if (!input_from_terminal_p ())
825 return 1;
826
827 while (1)
828 {
546014f7 829 wrap_here (""); /* Flush any buffered output */
199b2450 830 gdb_flush (gdb_stdout);
d8742f46
JK
831
832 if (annotation_level > 1)
833 printf_filtered ("\n\032\032pre-query\n");
834
bd5635a1
RP
835 va_start (args);
836 ctlstr = va_arg (args, char *);
199b2450 837 vfprintf_filtered (gdb_stdout, ctlstr, args);
b36e3a9b 838 va_end (args);
bcf2e6ab 839 printf_filtered ("(y or n) ");
d8742f46
JK
840
841 if (annotation_level > 1)
842 printf_filtered ("\n\032\032query\n");
843
199b2450 844 gdb_flush (gdb_stdout);
b36e3a9b
SG
845 answer = fgetc (stdin);
846 clearerr (stdin); /* in case of C-d */
847 if (answer == EOF) /* C-d */
d8742f46
JK
848 {
849 retval = 1;
850 break;
851 }
b36e3a9b
SG
852 if (answer != '\n') /* Eat rest of input line, to EOF or newline */
853 do
854 {
855 ans2 = fgetc (stdin);
856 clearerr (stdin);
857 }
858 while (ans2 != EOF && ans2 != '\n');
bd5635a1
RP
859 if (answer >= 'a')
860 answer -= 040;
861 if (answer == 'Y')
d8742f46
JK
862 {
863 retval = 1;
864 break;
865 }
bd5635a1 866 if (answer == 'N')
d8742f46
JK
867 {
868 retval = 0;
869 break;
870 }
bcf2e6ab 871 printf_filtered ("Please answer y or n.\n");
bd5635a1 872 }
d8742f46
JK
873
874 if (annotation_level > 1)
875 printf_filtered ("\n\032\032post-query\n");
876 return retval;
bd5635a1 877}
7919c3ed 878
bd5635a1
RP
879\f
880/* Parse a C escape sequence. STRING_PTR points to a variable
881 containing a pointer to the string to parse. That pointer
882 should point to the character after the \. That pointer
883 is updated past the characters we use. The value of the
884 escape sequence is returned.
885
886 A negative value means the sequence \ newline was seen,
887 which is supposed to be equivalent to nothing at all.
888
889 If \ is followed by a null character, we return a negative
890 value and leave the string pointer pointing at the null character.
891
892 If \ is followed by 000, we return 0 and leave the string pointer
893 after the zeros. A value of 0 does not mean end of string. */
894
895int
896parse_escape (string_ptr)
897 char **string_ptr;
898{
899 register int c = *(*string_ptr)++;
900 switch (c)
901 {
902 case 'a':
2bc2e684 903 return 007; /* Bell (alert) char */
bd5635a1
RP
904 case 'b':
905 return '\b';
2bc2e684 906 case 'e': /* Escape character */
bd5635a1
RP
907 return 033;
908 case 'f':
909 return '\f';
910 case 'n':
911 return '\n';
912 case 'r':
913 return '\r';
914 case 't':
915 return '\t';
916 case 'v':
917 return '\v';
918 case '\n':
919 return -2;
920 case 0:
921 (*string_ptr)--;
922 return 0;
923 case '^':
924 c = *(*string_ptr)++;
925 if (c == '\\')
926 c = parse_escape (string_ptr);
927 if (c == '?')
928 return 0177;
929 return (c & 0200) | (c & 037);
930
931 case '0':
932 case '1':
933 case '2':
934 case '3':
935 case '4':
936 case '5':
937 case '6':
938 case '7':
939 {
940 register int i = c - '0';
941 register int count = 0;
942 while (++count < 3)
943 {
944 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
945 {
946 i *= 8;
947 i += c - '0';
948 }
949 else
950 {
951 (*string_ptr)--;
952 break;
953 }
954 }
955 return i;
956 }
957 default:
958 return c;
959 }
960}
961\f
51b80b00
FF
962/* Print the character C on STREAM as part of the contents of a literal
963 string whose delimiter is QUOTER. Note that this routine should only
964 be call for printing things which are independent of the language
965 of the program being debugged. */
bd5635a1
RP
966
967void
51b80b00 968gdb_printchar (c, stream, quoter)
088c3a0b 969 register int c;
bd5635a1
RP
970 FILE *stream;
971 int quoter;
972{
bd5635a1 973
7e7e2d40
JG
974 c &= 0xFF; /* Avoid sign bit follies */
975
fcdb113e
JG
976 if ( c < 0x20 || /* Low control chars */
977 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
978 (sevenbit_strings && c >= 0x80)) { /* high order bit set */
bd5635a1
RP
979 switch (c)
980 {
981 case '\n':
982 fputs_filtered ("\\n", stream);
983 break;
984 case '\b':
985 fputs_filtered ("\\b", stream);
986 break;
987 case '\t':
988 fputs_filtered ("\\t", stream);
989 break;
990 case '\f':
991 fputs_filtered ("\\f", stream);
992 break;
993 case '\r':
994 fputs_filtered ("\\r", stream);
995 break;
996 case '\033':
997 fputs_filtered ("\\e", stream);
998 break;
999 case '\007':
1000 fputs_filtered ("\\a", stream);
1001 break;
1002 default:
1003 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
1004 break;
1005 }
2bc2e684
FF
1006 } else {
1007 if (c == '\\' || c == quoter)
1008 fputs_filtered ("\\", stream);
1009 fprintf_filtered (stream, "%c", c);
1010 }
bd5635a1
RP
1011}
1012\f
1013/* Number of lines per page or UINT_MAX if paging is disabled. */
1014static unsigned int lines_per_page;
1015/* Number of chars per line or UNIT_MAX is line folding is disabled. */
1016static unsigned int chars_per_line;
1017/* Current count of lines printed on this page, chars on this line. */
1018static unsigned int lines_printed, chars_printed;
1019
1020/* Buffer and start column of buffered text, for doing smarter word-
1021 wrapping. When someone calls wrap_here(), we start buffering output
1022 that comes through fputs_filtered(). If we see a newline, we just
1023 spit it out and forget about the wrap_here(). If we see another
1024 wrap_here(), we spit it out and remember the newer one. If we see
1025 the end of the line, we spit out a newline, the indent, and then
159dd2aa
JK
1026 the buffered output. */
1027
1028/* Malloc'd buffer with chars_per_line+2 bytes. Contains characters which
1029 are waiting to be output (they have already been counted in chars_printed).
1030 When wrap_buffer[0] is null, the buffer is empty. */
1031static char *wrap_buffer;
bd5635a1 1032
159dd2aa
JK
1033/* Pointer in wrap_buffer to the next character to fill. */
1034static char *wrap_pointer;
bd5635a1 1035
159dd2aa
JK
1036/* String to indent by if the wrap occurs. Must not be NULL if wrap_column
1037 is non-zero. */
1038static char *wrap_indent;
1039
1040/* Column number on the screen where wrap_buffer begins, or 0 if wrapping
1041 is not in effect. */
bd5635a1
RP
1042static int wrap_column;
1043
e1ce8aa5 1044/* ARGSUSED */
bd5635a1
RP
1045static void
1046set_width_command (args, from_tty, c)
1047 char *args;
1048 int from_tty;
1049 struct cmd_list_element *c;
1050{
1051 if (!wrap_buffer)
1052 {
1053 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
1054 wrap_buffer[0] = '\0';
1055 }
1056 else
1057 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
1058 wrap_pointer = wrap_buffer; /* Start it at the beginning */
1059}
1060
d974236f
JG
1061/* Wait, so the user can read what's on the screen. Prompt the user
1062 to continue by pressing RETURN. */
1063
bd5635a1
RP
1064static void
1065prompt_for_continue ()
1066{
351b221d 1067 char *ignore;
d8742f46
JK
1068 char cont_prompt[120];
1069
4dd876ac
JK
1070 if (annotation_level > 1)
1071 printf_unfiltered ("\n\032\032pre-prompt-for-continue\n");
1072
d8742f46
JK
1073 strcpy (cont_prompt,
1074 "---Type <return> to continue, or q <return> to quit---");
1075 if (annotation_level > 1)
1076 strcat (cont_prompt, "\n\032\032prompt-for-continue\n");
351b221d 1077
d974236f
JG
1078 /* We must do this *before* we call gdb_readline, else it will eventually
1079 call us -- thinking that we're trying to print beyond the end of the
1080 screen. */
1081 reinitialize_more_filter ();
1082
bd5635a1 1083 immediate_quit++;
159dd2aa
JK
1084 /* On a real operating system, the user can quit with SIGINT.
1085 But not on GO32.
1086
1087 'q' is provided on all systems so users don't have to change habits
1088 from system to system, and because telling them what to do in
1089 the prompt is more user-friendly than expecting them to think of
1090 SIGINT. */
a94100d1
JK
1091 /* Call readline, not gdb_readline, because GO32 readline handles control-C
1092 whereas control-C to gdb_readline will cause the user to get dumped
1093 out to DOS. */
d8742f46 1094 ignore = readline (cont_prompt);
4dd876ac
JK
1095
1096 if (annotation_level > 1)
1097 printf_unfiltered ("\n\032\032post-prompt-for-continue\n");
1098
351b221d 1099 if (ignore)
159dd2aa
JK
1100 {
1101 char *p = ignore;
1102 while (*p == ' ' || *p == '\t')
1103 ++p;
1104 if (p[0] == 'q')
1105 request_quit (SIGINT);
1106 free (ignore);
1107 }
bd5635a1 1108 immediate_quit--;
d974236f
JG
1109
1110 /* Now we have to do this again, so that GDB will know that it doesn't
1111 need to save the ---Type <return>--- line at the top of the screen. */
1112 reinitialize_more_filter ();
1113
351b221d 1114 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
bd5635a1
RP
1115}
1116
1117/* Reinitialize filter; ie. tell it to reset to original values. */
1118
1119void
1120reinitialize_more_filter ()
1121{
1122 lines_printed = 0;
1123 chars_printed = 0;
1124}
1125
1126/* Indicate that if the next sequence of characters overflows the line,
1127 a newline should be inserted here rather than when it hits the end.
159dd2aa 1128 If INDENT is non-null, it is a string to be printed to indent the
bd5635a1
RP
1129 wrapped part on the next line. INDENT must remain accessible until
1130 the next call to wrap_here() or until a newline is printed through
1131 fputs_filtered().
1132
1133 If the line is already overfull, we immediately print a newline and
1134 the indentation, and disable further wrapping.
1135
2bc2e684
FF
1136 If we don't know the width of lines, but we know the page height,
1137 we must not wrap words, but should still keep track of newlines
1138 that were explicitly printed.
1139
159dd2aa
JK
1140 INDENT should not contain tabs, as that will mess up the char count
1141 on the next line. FIXME.
1142
1143 This routine is guaranteed to force out any output which has been
1144 squirreled away in the wrap_buffer, so wrap_here ((char *)0) can be
1145 used to force out output from the wrap_buffer. */
bd5635a1
RP
1146
1147void
1148wrap_here(indent)
159dd2aa 1149 char *indent;
bd5635a1
RP
1150{
1151 if (wrap_buffer[0])
1152 {
1153 *wrap_pointer = '\0';
d8fc8773 1154 fputs_unfiltered (wrap_buffer, gdb_stdout);
bd5635a1
RP
1155 }
1156 wrap_pointer = wrap_buffer;
1157 wrap_buffer[0] = '\0';
2bc2e684
FF
1158 if (chars_per_line == UINT_MAX) /* No line overflow checking */
1159 {
1160 wrap_column = 0;
1161 }
1162 else if (chars_printed >= chars_per_line)
bd5635a1
RP
1163 {
1164 puts_filtered ("\n");
159dd2aa
JK
1165 if (indent != NULL)
1166 puts_filtered (indent);
bd5635a1
RP
1167 wrap_column = 0;
1168 }
1169 else
1170 {
1171 wrap_column = chars_printed;
159dd2aa
JK
1172 if (indent == NULL)
1173 wrap_indent = "";
1174 else
1175 wrap_indent = indent;
bd5635a1
RP
1176 }
1177}
1178
51b80b00
FF
1179/* Ensure that whatever gets printed next, using the filtered output
1180 commands, starts at the beginning of the line. I.E. if there is
1181 any pending output for the current line, flush it and start a new
1182 line. Otherwise do nothing. */
1183
1184void
1185begin_line ()
1186{
1187 if (chars_printed > 0)
1188 {
1189 puts_filtered ("\n");
1190 }
1191}
1192
199b2450
TL
1193
1194GDB_FILE *
1195gdb_fopen (name, mode)
1196 char * name;
1197 char * mode;
1198{
1199 return fopen (name, mode);
1200}
1201
bd5635a1 1202void
199b2450
TL
1203gdb_flush (stream)
1204 FILE *stream;
1205{
1206 fflush (stream);
1207}
1208
44a09a68
JK
1209/* Like fputs but if FILTER is true, pause after every screenful.
1210
1211 Regardless of FILTER can wrap at points other than the final
1212 character of a line.
1213
1214 Unlike fputs, fputs_maybe_filtered does not return a value.
1215 It is OK for LINEBUFFER to be NULL, in which case just don't print
1216 anything.
1217
1218 Note that a longjmp to top level may occur in this routine (only if
1219 FILTER is true) (since prompt_for_continue may do so) so this
1220 routine should not be called when cleanups are not in place. */
1221
199b2450
TL
1222static void
1223fputs_maybe_filtered (linebuffer, stream, filter)
088c3a0b 1224 const char *linebuffer;
bd5635a1 1225 FILE *stream;
199b2450 1226 int filter;
bd5635a1 1227{
7919c3ed 1228 const char *lineptr;
bd5635a1
RP
1229
1230 if (linebuffer == 0)
1231 return;
1232
1233 /* Don't do any filtering if it is disabled. */
199b2450 1234 if (stream != gdb_stdout
bd5635a1
RP
1235 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
1236 {
d8fc8773 1237 fputs_unfiltered (linebuffer, stream);
bd5635a1
RP
1238 return;
1239 }
1240
1241 /* Go through and output each character. Show line extension
1242 when this is necessary; prompt user for new page when this is
1243 necessary. */
1244
1245 lineptr = linebuffer;
1246 while (*lineptr)
1247 {
1248 /* Possible new page. */
199b2450
TL
1249 if (filter &&
1250 (lines_printed >= lines_per_page - 1))
bd5635a1
RP
1251 prompt_for_continue ();
1252
1253 while (*lineptr && *lineptr != '\n')
1254 {
1255 /* Print a single line. */
1256 if (*lineptr == '\t')
1257 {
1258 if (wrap_column)
1259 *wrap_pointer++ = '\t';
1260 else
d8fc8773 1261 fputc_unfiltered ('\t', stream);
bd5635a1
RP
1262 /* Shifting right by 3 produces the number of tab stops
1263 we have already passed, and then adding one and
1264 shifting left 3 advances to the next tab stop. */
1265 chars_printed = ((chars_printed >> 3) + 1) << 3;
1266 lineptr++;
1267 }
1268 else
1269 {
1270 if (wrap_column)
1271 *wrap_pointer++ = *lineptr;
1272 else
d8fc8773 1273 fputc_unfiltered (*lineptr, stream);
bd5635a1
RP
1274 chars_printed++;
1275 lineptr++;
1276 }
1277
1278 if (chars_printed >= chars_per_line)
1279 {
1280 unsigned int save_chars = chars_printed;
1281
1282 chars_printed = 0;
1283 lines_printed++;
1284 /* If we aren't actually wrapping, don't output newline --
1285 if chars_per_line is right, we probably just overflowed
1286 anyway; if it's wrong, let us keep going. */
1287 if (wrap_column)
d8fc8773 1288 fputc_unfiltered ('\n', stream);
bd5635a1
RP
1289
1290 /* Possible new page. */
1291 if (lines_printed >= lines_per_page - 1)
1292 prompt_for_continue ();
1293
1294 /* Now output indentation and wrapped string */
1295 if (wrap_column)
1296 {
d8fc8773
JK
1297 fputs_unfiltered (wrap_indent, stream);
1298 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1299 fputs_unfiltered (wrap_buffer, stream); /* and eject it */
bd5635a1
RP
1300 /* FIXME, this strlen is what prevents wrap_indent from
1301 containing tabs. However, if we recurse to print it
1302 and count its chars, we risk trouble if wrap_indent is
1303 longer than (the user settable) chars_per_line.
1304 Note also that this can set chars_printed > chars_per_line
1305 if we are printing a long string. */
1306 chars_printed = strlen (wrap_indent)
1307 + (save_chars - wrap_column);
1308 wrap_pointer = wrap_buffer; /* Reset buffer */
1309 wrap_buffer[0] = '\0';
1310 wrap_column = 0; /* And disable fancy wrap */
1311 }
1312 }
1313 }
1314
1315 if (*lineptr == '\n')
1316 {
1317 chars_printed = 0;
d11c44f1 1318 wrap_here ((char *)0); /* Spit out chars, cancel further wraps */
bd5635a1 1319 lines_printed++;
d8fc8773 1320 fputc_unfiltered ('\n', stream);
bd5635a1
RP
1321 lineptr++;
1322 }
1323 }
1324}
1325
199b2450
TL
1326void
1327fputs_filtered (linebuffer, stream)
1328 const char *linebuffer;
1329 FILE *stream;
1330{
1331 fputs_maybe_filtered (linebuffer, stream, 1);
1332}
1333
d8fc8773 1334#ifndef FPUTS_UNFILTERED_OVERRIDE
199b2450
TL
1335void
1336fputs_unfiltered (linebuffer, stream)
1337 const char *linebuffer;
1338 FILE *stream;
1339{
f29351d9 1340 fputs (linebuffer, stream);
199b2450 1341}
d8fc8773 1342#endif /* FPUTS_UNFILTERED_OVERRIDE */
199b2450
TL
1343
1344void
1345putc_unfiltered (c)
1346 int c;
1347{
1348 char buf[2];
1349 buf[0] = c;
1350 buf[1] = 0;
1351 fputs_unfiltered (buf, gdb_stdout);
1352}
1353
1354void
1355fputc_unfiltered (c, stream)
1356 int c;
1357 FILE * stream;
1358{
1359 char buf[2];
1360 buf[0] = c;
1361 buf[1] = 0;
1362 fputs_unfiltered (buf, stream);
1363}
1364
1365
bd5635a1
RP
1366/* Print a variable number of ARGS using format FORMAT. If this
1367 information is going to put the amount written (since the last call
d974236f 1368 to REINITIALIZE_MORE_FILTER or the last page break) over the page size,
d8fc8773 1369 call prompt_for_continue to get the users permision to continue.
bd5635a1
RP
1370
1371 Unlike fprintf, this function does not return a value.
1372
1373 We implement three variants, vfprintf (takes a vararg list and stream),
1374 fprintf (takes a stream to write on), and printf (the usual).
1375
bd5635a1
RP
1376 Note also that a longjmp to top level may occur in this routine
1377 (since prompt_for_continue may do so) so this routine should not be
1378 called when cleanups are not in place. */
1379
199b2450
TL
1380static void
1381vfprintf_maybe_filtered (stream, format, args, filter)
bd5635a1
RP
1382 FILE *stream;
1383 char *format;
7919c3ed 1384 va_list args;
199b2450 1385 int filter;
bd5635a1 1386{
d8fc8773
JK
1387 char *linebuffer;
1388 struct cleanup *old_cleanups;
bd5635a1 1389
d8fc8773
JK
1390 vasprintf (&linebuffer, format, args);
1391 if (linebuffer == NULL)
9c036bd8
JK
1392 {
1393 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1394 exit (1);
1395 }
d8fc8773 1396 old_cleanups = make_cleanup (free, linebuffer);
199b2450 1397 fputs_maybe_filtered (linebuffer, stream, filter);
d8fc8773 1398 do_cleanups (old_cleanups);
199b2450
TL
1399}
1400
1401
1402void
1403vfprintf_filtered (stream, format, args)
1404 FILE *stream;
1405 char *format;
1406 va_list args;
1407{
1408 vfprintf_maybe_filtered (stream, format, args, 1);
1409}
1410
1411void
1412vfprintf_unfiltered (stream, format, args)
1413 FILE *stream;
1414 char *format;
1415 va_list args;
1416{
d8fc8773
JK
1417 char *linebuffer;
1418 struct cleanup *old_cleanups;
1419
1420 vasprintf (&linebuffer, format, args);
1421 if (linebuffer == NULL)
9c036bd8
JK
1422 {
1423 fputs_unfiltered ("\ngdb: virtual memory exhausted.\n", gdb_stderr);
1424 exit (1);
1425 }
d8fc8773
JK
1426 old_cleanups = make_cleanup (free, linebuffer);
1427 fputs_unfiltered (linebuffer, stream);
1428 do_cleanups (old_cleanups);
bd5635a1
RP
1429}
1430
51b80b00
FF
1431void
1432vprintf_filtered (format, args)
1433 char *format;
1434 va_list args;
1435{
199b2450
TL
1436 vfprintf_maybe_filtered (gdb_stdout, format, args, 1);
1437}
1438
1439void
1440vprintf_unfiltered (format, args)
1441 char *format;
1442 va_list args;
1443{
d8fc8773 1444 vfprintf_unfiltered (gdb_stdout, format, args);
51b80b00
FF
1445}
1446
bd5635a1
RP
1447/* VARARGS */
1448void
1449fprintf_filtered (va_alist)
1450 va_dcl
1451{
546014f7 1452 va_list args;
bd5635a1
RP
1453 FILE *stream;
1454 char *format;
546014f7
PB
1455
1456 va_start (args);
1457 stream = va_arg (args, FILE *);
1458 format = va_arg (args, char *);
1459
546014f7
PB
1460 vfprintf_filtered (stream, format, args);
1461 va_end (args);
1462}
1463
199b2450
TL
1464/* VARARGS */
1465void
1466fprintf_unfiltered (va_alist)
1467 va_dcl
1468{
1469 va_list args;
1470 FILE *stream;
1471 char *format;
1472
1473 va_start (args);
1474 stream = va_arg (args, FILE *);
1475 format = va_arg (args, char *);
1476
199b2450
TL
1477 vfprintf_unfiltered (stream, format, args);
1478 va_end (args);
1479}
1480
d8fc8773 1481/* Like fprintf_filtered, but prints its result indented.
199b2450 1482 Called as fprintfi_filtered (spaces, stream, format, ...); */
546014f7
PB
1483
1484/* VARARGS */
1485void
1486fprintfi_filtered (va_alist)
1487 va_dcl
1488{
7919c3ed 1489 va_list args;
546014f7
PB
1490 int spaces;
1491 FILE *stream;
1492 char *format;
bd5635a1
RP
1493
1494 va_start (args);
546014f7 1495 spaces = va_arg (args, int);
bd5635a1
RP
1496 stream = va_arg (args, FILE *);
1497 format = va_arg (args, char *);
546014f7 1498 print_spaces_filtered (spaces, stream);
bd5635a1 1499
7919c3ed 1500 vfprintf_filtered (stream, format, args);
bd5635a1
RP
1501 va_end (args);
1502}
1503
199b2450 1504
bd5635a1
RP
1505/* VARARGS */
1506void
1507printf_filtered (va_alist)
1508 va_dcl
1509{
1510 va_list args;
1511 char *format;
1512
1513 va_start (args);
1514 format = va_arg (args, char *);
1515
199b2450
TL
1516 vfprintf_filtered (gdb_stdout, format, args);
1517 va_end (args);
1518}
1519
1520
1521/* VARARGS */
1522void
1523printf_unfiltered (va_alist)
1524 va_dcl
1525{
1526 va_list args;
1527 char *format;
1528
1529 va_start (args);
1530 format = va_arg (args, char *);
1531
1532 vfprintf_unfiltered (gdb_stdout, format, args);
bd5635a1
RP
1533 va_end (args);
1534}
bd5635a1 1535
546014f7 1536/* Like printf_filtered, but prints it's result indented.
199b2450 1537 Called as printfi_filtered (spaces, format, ...); */
546014f7
PB
1538
1539/* VARARGS */
1540void
1541printfi_filtered (va_alist)
1542 va_dcl
1543{
1544 va_list args;
1545 int spaces;
1546 char *format;
1547
1548 va_start (args);
1549 spaces = va_arg (args, int);
1550 format = va_arg (args, char *);
199b2450
TL
1551 print_spaces_filtered (spaces, gdb_stdout);
1552 vfprintf_filtered (gdb_stdout, format, args);
546014f7
PB
1553 va_end (args);
1554}
1555
51b80b00
FF
1556/* Easy -- but watch out!
1557
1558 This routine is *not* a replacement for puts()! puts() appends a newline.
1559 This one doesn't, and had better not! */
bd5635a1
RP
1560
1561void
1562puts_filtered (string)
1563 char *string;
1564{
199b2450
TL
1565 fputs_filtered (string, gdb_stdout);
1566}
1567
1568void
1569puts_unfiltered (string)
1570 char *string;
1571{
1572 fputs_unfiltered (string, gdb_stdout);
bd5635a1
RP
1573}
1574
1575/* Return a pointer to N spaces and a null. The pointer is good
1576 until the next call to here. */
1577char *
1578n_spaces (n)
1579 int n;
1580{
1581 register char *t;
1582 static char *spaces;
1583 static int max_spaces;
1584
1585 if (n > max_spaces)
1586 {
1587 if (spaces)
1588 free (spaces);
3624c875 1589 spaces = (char *) xmalloc (n+1);
bd5635a1
RP
1590 for (t = spaces+n; t != spaces;)
1591 *--t = ' ';
1592 spaces[n] = '\0';
1593 max_spaces = n;
1594 }
1595
1596 return spaces + max_spaces - n;
1597}
1598
1599/* Print N spaces. */
1600void
1601print_spaces_filtered (n, stream)
1602 int n;
1603 FILE *stream;
1604{
1605 fputs_filtered (n_spaces (n), stream);
1606}
1607\f
1608/* C++ demangler stuff. */
bd5635a1 1609
65ce5df4
JG
1610/* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language
1611 LANG, using demangling args ARG_MODE, and print it filtered to STREAM.
1612 If the name is not mangled, or the language for the name is unknown, or
1613 demangling is off, the name is printed in its "raw" form. */
1614
bd5635a1 1615void
65ce5df4 1616fprintf_symbol_filtered (stream, name, lang, arg_mode)
bd5635a1
RP
1617 FILE *stream;
1618 char *name;
65ce5df4
JG
1619 enum language lang;
1620 int arg_mode;
bd5635a1 1621{
65ce5df4 1622 char *demangled;
bd5d07d9 1623
65ce5df4 1624 if (name != NULL)
bd5d07d9 1625 {
65ce5df4
JG
1626 /* If user wants to see raw output, no problem. */
1627 if (!demangle)
bd5d07d9 1628 {
65ce5df4
JG
1629 fputs_filtered (name, stream);
1630 }
1631 else
1632 {
1633 switch (lang)
1634 {
1635 case language_cplus:
1636 demangled = cplus_demangle (name, arg_mode);
1637 break;
65ce5df4
JG
1638 case language_chill:
1639 demangled = chill_demangle (name);
1640 break;
65ce5df4
JG
1641 default:
1642 demangled = NULL;
1643 break;
1644 }
1645 fputs_filtered (demangled ? demangled : name, stream);
1646 if (demangled != NULL)
1647 {
1648 free (demangled);
1649 }
bd5d07d9 1650 }
bd5635a1
RP
1651 }
1652}
51b57ded
FF
1653
1654/* Do a strcmp() type operation on STRING1 and STRING2, ignoring any
1655 differences in whitespace. Returns 0 if they match, non-zero if they
546014f7
PB
1656 don't (slightly different than strcmp()'s range of return values).
1657
1658 As an extra hack, string1=="FOO(ARGS)" matches string2=="FOO".
2e4964ad
FF
1659 This "feature" is useful when searching for matching C++ function names
1660 (such as if the user types 'break FOO', where FOO is a mangled C++
1661 function). */
51b57ded 1662
51b80b00 1663int
51b57ded
FF
1664strcmp_iw (string1, string2)
1665 const char *string1;
1666 const char *string2;
1667{
1668 while ((*string1 != '\0') && (*string2 != '\0'))
1669 {
1670 while (isspace (*string1))
1671 {
1672 string1++;
1673 }
1674 while (isspace (*string2))
1675 {
1676 string2++;
1677 }
1678 if (*string1 != *string2)
1679 {
1680 break;
1681 }
1682 if (*string1 != '\0')
1683 {
1684 string1++;
1685 string2++;
1686 }
1687 }
546014f7 1688 return (*string1 != '\0' && *string1 != '(') || (*string2 != '\0');
51b57ded
FF
1689}
1690
bd5635a1 1691\f
bd5635a1
RP
1692void
1693_initialize_utils ()
1694{
1695 struct cmd_list_element *c;
1696
1697 c = add_set_cmd ("width", class_support, var_uinteger,
1698 (char *)&chars_per_line,
1699 "Set number of characters gdb thinks are in a line.",
1700 &setlist);
1701 add_show_from_set (c, &showlist);
d747e0af 1702 c->function.sfunc = set_width_command;
bd5635a1
RP
1703
1704 add_show_from_set
1705 (add_set_cmd ("height", class_support,
1706 var_uinteger, (char *)&lines_per_page,
1707 "Set number of lines gdb thinks are in a page.", &setlist),
1708 &showlist);
1709
1710 /* These defaults will be used if we are unable to get the correct
1711 values from termcap. */
51b57ded
FF
1712#if defined(__GO32__)
1713 lines_per_page = ScreenRows();
1714 chars_per_line = ScreenCols();
1715#else
bd5635a1
RP
1716 lines_per_page = 24;
1717 chars_per_line = 80;
a6b26c44
SS
1718/* start-sanitize-mpw */
1719#ifndef MPW
1720 /* No termcap under MPW, although might be cool to do something
1721 by looking at worksheet or console window sizes. */
1722/* end-sanitize-mpw */
bd5635a1
RP
1723 /* Initialize the screen height and width from termcap. */
1724 {
1725 char *termtype = getenv ("TERM");
1726
1727 /* Positive means success, nonpositive means failure. */
1728 int status;
1729
1730 /* 2048 is large enough for all known terminals, according to the
1731 GNU termcap manual. */
1732 char term_buffer[2048];
1733
1734 if (termtype)
1735 {
1736 status = tgetent (term_buffer, termtype);
1737 if (status > 0)
1738 {
1739 int val;
1740
1741 val = tgetnum ("li");
1742 if (val >= 0)
1743 lines_per_page = val;
1744 else
1745 /* The number of lines per page is not mentioned
1746 in the terminal description. This probably means
1747 that paging is not useful (e.g. emacs shell window),
1748 so disable paging. */
1749 lines_per_page = UINT_MAX;
1750
1751 val = tgetnum ("co");
1752 if (val >= 0)
1753 chars_per_line = val;
1754 }
1755 }
1756 }
a6b26c44
SS
1757/* start-sanitize-mpw */
1758#endif /* MPW */
1759/* end-sanitize-mpw */
bd5635a1 1760
1eeba686
PB
1761#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1762
4ace50a5 1763 /* If there is a better way to determine the window size, use it. */
1eeba686
PB
1764 SIGWINCH_HANDLER ();
1765#endif
51b57ded 1766#endif
2bc2e684 1767 /* If the output is not a terminal, don't paginate it. */
199b2450 1768 if (!ISATTY (gdb_stdout))
2bc2e684
FF
1769 lines_per_page = UINT_MAX;
1770
bd5635a1
RP
1771 set_width_command ((char *)NULL, 0, c);
1772
1773 add_show_from_set
1774 (add_set_cmd ("demangle", class_support, var_boolean,
1775 (char *)&demangle,
1776 "Set demangling of encoded C++ names when displaying symbols.",
f266e564
JK
1777 &setprintlist),
1778 &showprintlist);
bd5635a1
RP
1779
1780 add_show_from_set
1781 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
1782 (char *)&sevenbit_strings,
1783 "Set printing of 8-bit characters in strings as \\nnn.",
f266e564
JK
1784 &setprintlist),
1785 &showprintlist);
bd5635a1
RP
1786
1787 add_show_from_set
1788 (add_set_cmd ("asm-demangle", class_support, var_boolean,
1789 (char *)&asm_demangle,
1790 "Set demangling of C++ names in disassembly listings.",
f266e564
JK
1791 &setprintlist),
1792 &showprintlist);
bd5635a1 1793}
1eeba686
PB
1794
1795/* Machine specific function to handle SIGWINCH signal. */
1796
1797#ifdef SIGWINCH_HANDLER_BODY
1798 SIGWINCH_HANDLER_BODY
1799#endif
bd5d07d9 1800
This page took 0.286156 seconds and 4 git commands to generate.