2000-02-02 01:21:19 +01:00
|
|
|
/* UI_FILE - a generic STDIO like output stream.
|
2010-01-01 08:32:07 +01:00
|
|
|
Copyright (C) 1999, 2000, 2001, 2007, 2008, 2009, 2010
|
2009-01-03 06:58:08 +01:00
|
|
|
Free Software Foundation, Inc.
|
2000-02-01 04:19:29 +01:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2000-02-01 04:19:29 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2000-02-01 04:19:29 +01:00
|
|
|
|
|
|
|
#include "defs.h"
|
2000-02-02 01:21:19 +01:00
|
|
|
#include "ui-file.h"
|
2000-02-01 04:19:29 +01:00
|
|
|
#include "tui/tui-file.h"
|
2004-01-19 05:31:53 +01:00
|
|
|
#include "tui/tui-io.h"
|
2000-02-01 04:19:29 +01:00
|
|
|
|
2000-05-26 08:15:49 +02:00
|
|
|
#include "tui.h"
|
|
|
|
|
2004-02-08 02:32:26 +01:00
|
|
|
#include "gdb_string.h"
|
2000-02-01 04:19:29 +01:00
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
/* A ``struct ui_file'' that is compatible with all the legacy
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
tui.c, tui.h: Comment reformatting to coding standard (capitals,
spaces after periods, etc).
2007-08-14 23:20:09 +02:00
|
|
|
code. */
|
2000-02-01 04:19:29 +01:00
|
|
|
|
|
|
|
/* new */
|
|
|
|
enum streamtype
|
|
|
|
{
|
|
|
|
afile,
|
|
|
|
astring
|
|
|
|
};
|
|
|
|
|
|
|
|
/* new */
|
|
|
|
struct tui_stream
|
|
|
|
{
|
|
|
|
int *ts_magic;
|
|
|
|
enum streamtype ts_streamtype;
|
|
|
|
FILE *ts_filestream;
|
|
|
|
char *ts_strbuf;
|
|
|
|
int ts_buflen;
|
|
|
|
};
|
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
static ui_file_flush_ftype tui_file_flush;
|
|
|
|
extern ui_file_fputs_ftype tui_file_fputs;
|
|
|
|
static ui_file_isatty_ftype tui_file_isatty;
|
|
|
|
static ui_file_rewind_ftype tui_file_rewind;
|
|
|
|
static ui_file_put_ftype tui_file_put;
|
|
|
|
static ui_file_delete_ftype tui_file_delete;
|
2000-05-28 03:12:42 +02:00
|
|
|
static struct ui_file *tui_file_new (void);
|
2000-02-01 04:19:29 +01:00
|
|
|
static int tui_file_magic;
|
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
static struct ui_file *
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_file_new (void)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2007-08-01 22:15:36 +02:00
|
|
|
struct tui_stream *tui = XMALLOC (struct tui_stream);
|
2000-02-02 01:21:19 +01:00
|
|
|
struct ui_file *file = ui_file_new ();
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
set_ui_file_data (file, tui, tui_file_delete);
|
|
|
|
set_ui_file_flush (file, tui_file_flush);
|
|
|
|
set_ui_file_fputs (file, tui_file_fputs);
|
|
|
|
set_ui_file_isatty (file, tui_file_isatty);
|
|
|
|
set_ui_file_rewind (file, tui_file_rewind);
|
|
|
|
set_ui_file_put (file, tui_file_put);
|
2000-02-01 04:19:29 +01:00
|
|
|
tui->ts_magic = &tui_file_magic;
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_file_delete (struct ui_file *file)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *tmpstream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
if (tmpstream->ts_magic != &tui_file_magic)
|
2001-02-08 07:03:54 +01:00
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("tui_file_delete: bad magic number"));
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-disasm.c, tui-file.c, tui-io.c,
tui-layout.c, tui-regs.c, tui-source.c, tui-win.c, tui-windata.c,
tui-wingeneral.c, tui-winsource.c: Coding standard, && and ||
go at beginning of new line.
2007-08-15 02:19:44 +02:00
|
|
|
if ((tmpstream->ts_streamtype == astring)
|
|
|
|
&& (tmpstream->ts_strbuf != NULL))
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (tmpstream->ts_strbuf);
|
2000-02-01 04:19:29 +01:00
|
|
|
}
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (tmpstream);
|
2000-02-01 04:19:29 +01:00
|
|
|
}
|
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
struct ui_file *
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_fileopen (FILE *stream)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct ui_file *file = tui_file_new ();
|
|
|
|
struct tui_stream *tmpstream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
tmpstream->ts_streamtype = afile;
|
|
|
|
tmpstream->ts_filestream = stream;
|
|
|
|
tmpstream->ts_strbuf = NULL;
|
|
|
|
tmpstream->ts_buflen = 0;
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2000-02-02 01:21:19 +01:00
|
|
|
struct ui_file *
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_sfileopen (int n)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct ui_file *file = tui_file_new ();
|
|
|
|
struct tui_stream *tmpstream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
tmpstream->ts_streamtype = astring;
|
|
|
|
tmpstream->ts_filestream = NULL;
|
|
|
|
if (n > 0)
|
|
|
|
{
|
|
|
|
tmpstream->ts_strbuf = xmalloc ((n + 1) * sizeof (char));
|
|
|
|
tmpstream->ts_strbuf[0] = '\0';
|
|
|
|
}
|
|
|
|
else
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
tui.c, tui.h: Comment reformatting to coding standard (capitals,
spaces after periods, etc).
2007-08-14 23:20:09 +02:00
|
|
|
/* Do not allocate the buffer now. The first time something is
|
|
|
|
printed one will be allocated by tui_file_adjust_strbuf(). */
|
2000-02-01 04:19:29 +01:00
|
|
|
tmpstream->ts_strbuf = NULL;
|
|
|
|
tmpstream->ts_buflen = n;
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_file_isatty (struct ui_file *file)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *stream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_magic != &tui_file_magic)
|
2001-02-08 07:03:54 +01:00
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("tui_file_isatty: bad magic number"));
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_streamtype == afile)
|
|
|
|
return (isatty (fileno (stream->ts_filestream)));
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_file_rewind (struct ui_file *file)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *stream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_magic != &tui_file_magic)
|
2001-02-08 07:03:54 +01:00
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("tui_file_rewind: bad magic number"));
|
2000-02-01 04:19:29 +01:00
|
|
|
stream->ts_strbuf[0] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-02-02 01:21:19 +01:00
|
|
|
tui_file_put (struct ui_file *file,
|
|
|
|
ui_file_put_method_ftype *write,
|
2000-02-01 04:19:29 +01:00
|
|
|
void *dest)
|
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *stream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_magic != &tui_file_magic)
|
2001-02-08 07:03:54 +01:00
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("tui_file_put: bad magic number"));
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_streamtype == astring)
|
|
|
|
write (dest, stream->ts_strbuf, strlen (stream->ts_strbuf));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All TUI I/O sent to the *_filtered and *_unfiltered functions
|
|
|
|
eventually ends up here. The fputs_unfiltered_hook is primarily
|
|
|
|
used by GUIs to collect all output and send it to the GUI, instead
|
|
|
|
of the controlling terminal. Only output to gdb_stdout and
|
|
|
|
gdb_stderr are sent to the hook. Everything else is sent on to
|
|
|
|
fputs to allow file I/O to be handled appropriately. */
|
|
|
|
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
tui.c, tui.h: Comment reformatting to coding standard (capitals,
spaces after periods, etc).
2007-08-14 23:20:09 +02:00
|
|
|
/* FIXME: Should be broken up and moved to a TUI specific file. */
|
2000-02-01 04:19:29 +01:00
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_file_fputs (const char *linebuffer, struct ui_file *file)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *stream = ui_file_data (file);
|
2001-07-17 08:42:58 +02:00
|
|
|
|
|
|
|
if (stream->ts_streamtype == astring)
|
|
|
|
{
|
|
|
|
tui_file_adjust_strbuf (strlen (linebuffer), file);
|
|
|
|
strcat (stream->ts_strbuf, linebuffer);
|
|
|
|
}
|
2000-02-01 04:19:29 +01:00
|
|
|
else
|
|
|
|
{
|
2001-07-21 22:55:34 +02:00
|
|
|
tui_puts (linebuffer);
|
2000-02-01 04:19:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2000-02-02 01:21:19 +01:00
|
|
|
tui_file_get_strbuf (struct ui_file *file)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *stream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_magic != &tui_file_magic)
|
2001-02-08 07:03:54 +01:00
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("tui_file_get_strbuf: bad magic number"));
|
2000-02-01 04:19:29 +01:00
|
|
|
return (stream->ts_strbuf);
|
|
|
|
}
|
|
|
|
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
tui.c, tui.h: Comment reformatting to coding standard (capitals,
spaces after periods, etc).
2007-08-14 23:20:09 +02:00
|
|
|
/* Adjust the length of the buffer by the amount necessary to
|
|
|
|
accomodate appending a string of length N to the buffer
|
|
|
|
contents. */
|
2000-02-01 04:19:29 +01:00
|
|
|
void
|
2000-02-02 01:21:19 +01:00
|
|
|
tui_file_adjust_strbuf (int n, struct ui_file *file)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *stream = ui_file_data (file);
|
2000-02-01 04:19:29 +01:00
|
|
|
int non_null_chars;
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_magic != &tui_file_magic)
|
2001-02-08 07:03:54 +01:00
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("tui_file_adjust_strbuf: bad magic number"));
|
2000-02-01 04:19:29 +01:00
|
|
|
|
|
|
|
if (stream->ts_streamtype != astring)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (stream->ts_strbuf)
|
|
|
|
{
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
tui.c, tui.h: Comment reformatting to coding standard (capitals,
spaces after periods, etc).
2007-08-14 23:20:09 +02:00
|
|
|
/* There is already a buffer allocated. */
|
2000-02-01 04:19:29 +01:00
|
|
|
non_null_chars = strlen (stream->ts_strbuf);
|
|
|
|
|
|
|
|
if (n > (stream->ts_buflen - non_null_chars - 1))
|
|
|
|
{
|
|
|
|
stream->ts_buflen = n + non_null_chars + 1;
|
|
|
|
stream->ts_strbuf = xrealloc (stream->ts_strbuf, stream->ts_buflen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
tui.c, tui.h: Comment reformatting to coding standard (capitals,
spaces after periods, etc).
2007-08-14 23:20:09 +02:00
|
|
|
/* No buffer yet, so allocate one of the desired size. */
|
2000-02-01 04:19:29 +01:00
|
|
|
stream->ts_strbuf = xmalloc ((n + 1) * sizeof (char));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
tui_file_flush (struct ui_file *file)
|
2000-02-01 04:19:29 +01:00
|
|
|
{
|
2000-02-02 01:21:19 +01:00
|
|
|
struct tui_stream *stream = ui_file_data (file);
|
2010-05-18 00:21:43 +02:00
|
|
|
|
2000-02-01 04:19:29 +01:00
|
|
|
if (stream->ts_magic != &tui_file_magic)
|
2001-02-08 07:03:54 +01:00
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("tui_file_flush: bad magic number"));
|
2000-02-01 04:19:29 +01:00
|
|
|
|
|
|
|
switch (stream->ts_streamtype)
|
|
|
|
{
|
|
|
|
case astring:
|
|
|
|
break;
|
|
|
|
case afile:
|
|
|
|
fflush (stream->ts_filestream);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|