* tuiDisassem.c (tui_disassemble): New function to disassemble
[deliverable/binutils-gdb.git] / gdb / tui / tuiData.c
CommitLineData
f377b406 1/* TUI data manipulation routines.
f33c6cbf
AC
2
3 Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation,
4 Inc.
5
f377b406
SC
6 Contributed by Hewlett-Packard Company.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
c906108c 24
f33c6cbf
AC
25/* FIXME: cagney/2002-02-28: The GDB coding standard indicates that
26 "defs.h" should be included first. Unfortunatly some systems
27 (currently Debian GNU/Linux) include the <stdbool.h> via <curses.h>
28 and they clash with "bfd.h"'s definiton of true/false. The correct
29 fix is to remove true/false from "bfd.h", however, until that
30 happens, hack around it by including "config.h" and <curses.h>
31 first. */
32
4e8f7a8b
DJ
33#include "config.h"
34#ifdef HAVE_NCURSES_H
35#include <ncurses.h>
36#else
37#ifdef HAVE_CURSES_H
38#include <curses.h>
39#endif
40#endif
41
c906108c
SS
42#include "defs.h"
43#include "tui.h"
44#include "tuiData.h"
a4b99e53 45#include "tuiGeneralWin.h"
c906108c
SS
46
47/****************************
48** GLOBAL DECLARATIONS
49****************************/
50TuiWinInfoPtr winList[MAX_MAJOR_WINDOWS];
51
52/***************************
53** Private Definitions
54****************************/
55#define FILE_WIDTH 30
56#define PROC_WIDTH 40
57#define LINE_WIDTH 4
58#define PC_WIDTH 8
59
60/***************************
61** Private data
62****************************/
63static char *_tuiNullStr = TUI_NULL_STR;
64static char *_tuiBlankStr = " ";
65static char *_tuiLocationStr = " >";
66static char *_tuiBreakStr = " * ";
67static char *_tuiBreakLocationStr = " *>";
68static TuiLayoutType _currentLayout = UNDEFINED_LAYOUT;
69static int _termHeight, _termWidth;
70static int _historyLimit = DEFAULT_HISTORY_COUNT;
71static TuiGenWinInfo _locator;
72static TuiGenWinInfo _execInfo[2];
73static TuiWinInfoPtr _srcWinList[2];
74static TuiList _sourceWindows =
75{(OpaqueList) _srcWinList, 0};
76static int _defaultTabLen = DEFAULT_TAB_LEN;
77static TuiWinInfoPtr _winWithFocus = (TuiWinInfoPtr) NULL;
78static TuiLayoutDef _layoutDef =
79{SRC_WIN, /* displayMode */
80 FALSE, /* split */
81 TUI_UNDEFINED_REGS, /* regsDisplayType */
82 TUI_SFLOAT_REGS}; /* floatRegsDisplayType */
83static int _winResized = FALSE;
84
85
86/*********************************
87** Static function forward decls
88**********************************/
a14ed312
KB
89static void freeContent (TuiWinContent, int, TuiWinType);
90static void freeContentElements (TuiWinContent, int, TuiWinType);
c906108c
SS
91
92
93
94/*********************************
95** PUBLIC FUNCTIONS
96**********************************/
97
98/******************************************
99** ACCESSORS & MUTATORS FOR PRIVATE DATA
100******************************************/
101
102/*
c5aa993b
JM
103 ** tuiWinResized().
104 ** Answer a whether the terminal window has been resized or not
105 */
c906108c 106int
c906108c 107tuiWinResized (void)
c906108c
SS
108{
109 return _winResized;
110} /* tuiWinResized */
111
112
113/*
c5aa993b
JM
114 ** tuiSetWinResized().
115 ** Set a whether the terminal window has been resized or not
116 */
c906108c 117void
eca6576c 118tuiSetWinResizedTo (int resized)
c906108c
SS
119{
120 _winResized = resized;
121
122 return;
123} /* tuiSetWinResizedTo */
124
125
126/*
c5aa993b
JM
127 ** tuiLayoutDef().
128 ** Answer a pointer to the current layout definition
129 */
c906108c 130TuiLayoutDefPtr
c906108c 131tuiLayoutDef (void)
c906108c
SS
132{
133 return &_layoutDef;
134} /* tuiLayoutDef */
135
136
137/*
c5aa993b
JM
138 ** tuiWinWithFocus().
139 ** Answer the window with the logical focus
140 */
c906108c 141TuiWinInfoPtr
c906108c 142tuiWinWithFocus (void)
c906108c
SS
143{
144 return _winWithFocus;
145} /* tuiWinWithFocus */
146
147
148/*
c5aa993b
JM
149 ** tuiSetWinWithFocus().
150 ** Set the window that has the logical focus
151 */
c906108c 152void
eca6576c 153tuiSetWinWithFocus (TuiWinInfoPtr winInfo)
c906108c
SS
154{
155 _winWithFocus = winInfo;
156
157 return;
158} /* tuiSetWinWithFocus */
159
160
161/*
c5aa993b
JM
162 ** tuiDefaultTabLen().
163 ** Answer the length in chars, of tabs
164 */
c906108c 165int
c906108c 166tuiDefaultTabLen (void)
c906108c
SS
167{
168 return _defaultTabLen;
169} /* tuiDefaultTabLen */
170
171
172/*
c5aa993b
JM
173 ** tuiSetDefaultTabLen().
174 ** Set the length in chars, of tabs
175 */
c906108c 176void
eca6576c 177tuiSetDefaultTabLen (int len)
c906108c
SS
178{
179 _defaultTabLen = len;
180
181 return;
182} /* tuiSetDefaultTabLen */
183
184
185/*
c5aa993b
JM
186 ** currentSourceWin()
187 ** Accessor for the current source window. Usually there is only
188 ** one source window (either source or disassembly), but both can
189 ** be displayed at the same time.
190 */
c906108c 191TuiListPtr
c906108c 192sourceWindows (void)
c906108c
SS
193{
194 return &_sourceWindows;
195} /* currentSourceWindows */
196
197
198/*
c5aa993b
JM
199 ** clearSourceWindows()
200 ** Clear the list of source windows. Usually there is only one
201 ** source window (either source or disassembly), but both can be
202 ** displayed at the same time.
203 */
c906108c 204void
c906108c 205clearSourceWindows (void)
c906108c
SS
206{
207 _sourceWindows.list[0] = (Opaque) NULL;
208 _sourceWindows.list[1] = (Opaque) NULL;
209 _sourceWindows.count = 0;
210
211 return;
212} /* currentSourceWindows */
213
214
215/*
c5aa993b
JM
216 ** clearSourceWindowsDetail()
217 ** Clear the pertinant detail in the source windows.
218 */
c906108c 219void
c906108c 220clearSourceWindowsDetail (void)
c906108c
SS
221{
222 int i;
223
224 for (i = 0; i < (sourceWindows ())->count; i++)
225 clearWinDetail ((TuiWinInfoPtr) (sourceWindows ())->list[i]);
226
227 return;
228} /* currentSourceWindows */
229
230
231/*
c5aa993b
JM
232 ** addSourceWindowToList().
233 ** Add a window to the list of source windows. Usually there is
234 ** only one source window (either source or disassembly), but
235 ** both can be displayed at the same time.
236 */
c906108c 237void
eca6576c 238addToSourceWindows (TuiWinInfoPtr winInfo)
c906108c
SS
239{
240 if (_sourceWindows.count < 2)
241 _sourceWindows.list[_sourceWindows.count++] = (Opaque) winInfo;
242
243 return;
244} /* addToSourceWindows */
245
246
247/*
c5aa993b
JM
248 ** clearWinDetail()
249 ** Clear the pertinant detail in the windows.
250 */
c906108c 251void
eca6576c 252clearWinDetail (TuiWinInfoPtr winInfo)
c906108c
SS
253{
254 if (m_winPtrNotNull (winInfo))
255 {
256 switch (winInfo->generic.type)
257 {
258 case SRC_WIN:
259 case DISASSEM_WIN:
a4b99e53 260 winInfo->detail.sourceInfo.startLineOrAddr.addr = 0;
c906108c
SS
261 winInfo->detail.sourceInfo.horizontalOffset = 0;
262 break;
263 case CMD_WIN:
264 winInfo->detail.commandInfo.curLine =
265 winInfo->detail.commandInfo.curch = 0;
266 break;
267 case DATA_WIN:
268 winInfo->detail.dataDisplayInfo.dataContent =
269 (TuiWinContent) NULL;
270 winInfo->detail.dataDisplayInfo.dataContentCount = 0;
271 winInfo->detail.dataDisplayInfo.regsContent =
272 (TuiWinContent) NULL;
273 winInfo->detail.dataDisplayInfo.regsContentCount = 0;
274 winInfo->detail.dataDisplayInfo.regsDisplayType =
275 TUI_UNDEFINED_REGS;
276 winInfo->detail.dataDisplayInfo.regsColumnCount = 1;
277 winInfo->detail.dataDisplayInfo.displayRegs = FALSE;
278 break;
279 default:
280 break;
281 }
282 }
283
284 return;
285} /* clearWinDetail */
286
287
288/*
c5aa993b
JM
289 ** blankStr()
290 ** Accessor for the blank string.
291 */
c906108c 292char *
c906108c 293blankStr (void)
c906108c
SS
294{
295 return _tuiBlankStr;
296} /* blankStr */
297
298
299/*
c5aa993b
JM
300 ** locationStr()
301 ** Accessor for the location string.
302 */
c906108c 303char *
c906108c 304locationStr (void)
c906108c
SS
305{
306 return _tuiLocationStr;
307} /* locationStr */
308
309
310/*
c5aa993b
JM
311 ** breakStr()
312 ** Accessor for the break string.
313 */
c906108c 314char *
c906108c 315breakStr (void)
c906108c
SS
316{
317 return _tuiBreakStr;
318} /* breakStr */
319
320
321/*
c5aa993b
JM
322 ** breakLocationStr()
323 ** Accessor for the breakLocation string.
324 */
c906108c 325char *
c906108c 326breakLocationStr (void)
c906108c
SS
327{
328 return _tuiBreakLocationStr;
329} /* breakLocationStr */
330
331
332/*
c5aa993b
JM
333 ** nullStr()
334 ** Accessor for the null string.
335 */
c906108c 336char *
c906108c 337nullStr (void)
c906108c
SS
338{
339 return _tuiNullStr;
340} /* nullStr */
341
342
343/*
c5aa993b
JM
344 ** sourceExecInfoPtr().
345 ** Accessor for the source execution info ptr.
346 */
c906108c 347TuiGenWinInfoPtr
c906108c 348sourceExecInfoWinPtr (void)
c906108c
SS
349{
350 return &_execInfo[0];
351} /* sourceExecInfoWinPtr */
352
353
354/*
c5aa993b
JM
355 ** disassemExecInfoPtr().
356 ** Accessor for the disassem execution info ptr.
357 */
c906108c 358TuiGenWinInfoPtr
c906108c 359disassemExecInfoWinPtr (void)
c906108c
SS
360{
361 return &_execInfo[1];
362} /* disassemExecInfoWinPtr */
363
364
365/*
c5aa993b
JM
366 ** locatorWinInfoPtr().
367 ** Accessor for the locator win info. Answers a pointer to the
368 ** static locator win info struct.
369 */
c906108c 370TuiGenWinInfoPtr
c906108c 371locatorWinInfoPtr (void)
c906108c
SS
372{
373 return &_locator;
374} /* locatorWinInfoPtr */
375
376
377/*
c5aa993b
JM
378 ** historyLimit().
379 ** Accessor for the history limit
380 */
c906108c 381int
c906108c 382historyLimit (void)
c906108c
SS
383{
384 return _historyLimit;
385} /* historyLimit */
386
387
388/*
c5aa993b
JM
389 ** setHistoryLimitTo().
390 ** Mutator for the history limit
391 */
c906108c 392void
eca6576c 393setHistoryLimitTo (int h)
c906108c
SS
394{
395 _historyLimit = h;
396
397 return;
398} /* setHistoryLimitTo */
399
400/*
c5aa993b
JM
401 ** termHeight().
402 ** Accessor for the termHeight
403 */
c906108c 404int
c906108c 405termHeight (void)
c906108c
SS
406{
407 return _termHeight;
408} /* termHeight */
409
410
411/*
c5aa993b
JM
412 ** setTermHeightTo().
413 ** Mutator for the term height
414 */
c906108c 415void
eca6576c 416setTermHeightTo (int h)
c906108c
SS
417{
418 _termHeight = h;
419
420 return;
421} /* setTermHeightTo */
422
423
424/*
c5aa993b
JM
425 ** termWidth().
426 ** Accessor for the termWidth
427 */
c906108c 428int
c906108c 429termWidth (void)
c906108c
SS
430{
431 return _termWidth;
432} /* termWidth */
433
434
435/*
c5aa993b
JM
436 ** setTermWidth().
437 ** Mutator for the termWidth
438 */
c906108c 439void
eca6576c 440setTermWidthTo (int w)
c906108c
SS
441{
442 _termWidth = w;
443
444 return;
445} /* setTermWidthTo */
446
447
448/*
c5aa993b
JM
449 ** currentLayout().
450 ** Accessor for the current layout
451 */
c906108c 452TuiLayoutType
c906108c 453currentLayout (void)
c906108c
SS
454{
455 return _currentLayout;
456} /* currentLayout */
457
458
459/*
c5aa993b
JM
460 ** setCurrentLayoutTo().
461 ** Mutator for the current layout
462 */
c906108c 463void
eca6576c 464setCurrentLayoutTo (TuiLayoutType newLayout)
c906108c
SS
465{
466 _currentLayout = newLayout;
467
468 return;
469} /* setCurrentLayoutTo */
470
471
472/*
c5aa993b
JM
473 ** setGenWinOrigin().
474 ** Set the origin of the window
475 */
c906108c 476void
eca6576c 477setGenWinOrigin (TuiGenWinInfoPtr winInfo, int x, int y)
c906108c
SS
478{
479 winInfo->origin.x = x;
480 winInfo->origin.y = y;
481
482 return;
483} /* setGenWinOrigin */
484
485
486/*****************************
487** OTHER PUBLIC FUNCTIONS
488*****************************/
489
490
491/*
c5aa993b
JM
492 ** tuiNextWin().
493 ** Answer the next window in the list, cycling back to the top
494 ** if necessary
495 */
c906108c 496TuiWinInfoPtr
eca6576c 497tuiNextWin (TuiWinInfoPtr curWin)
c906108c
SS
498{
499 TuiWinType type = curWin->generic.type;
500 TuiWinInfoPtr nextWin = (TuiWinInfoPtr) NULL;
501
502 if (curWin->generic.type == CMD_WIN)
503 type = SRC_WIN;
504 else
505 type = curWin->generic.type + 1;
506 while (type != curWin->generic.type && m_winPtrIsNull (nextWin))
507 {
a4b99e53 508 if (winList[type] && winList[type]->generic.isVisible)
c906108c
SS
509 nextWin = winList[type];
510 else
511 {
512 if (type == CMD_WIN)
513 type = SRC_WIN;
514 else
515 type++;
516 }
517 }
518
519 return nextWin;
520} /* tuiNextWin */
521
522
523/*
c5aa993b
JM
524 ** tuiPrevWin().
525 ** Answer the prev window in the list, cycling back to the bottom
526 ** if necessary
527 */
c906108c 528TuiWinInfoPtr
eca6576c 529tuiPrevWin (TuiWinInfoPtr curWin)
c906108c
SS
530{
531 TuiWinType type = curWin->generic.type;
532 TuiWinInfoPtr prev = (TuiWinInfoPtr) NULL;
533
534 if (curWin->generic.type == SRC_WIN)
535 type = CMD_WIN;
536 else
537 type = curWin->generic.type - 1;
538 while (type != curWin->generic.type && m_winPtrIsNull (prev))
539 {
540 if (winList[type]->generic.isVisible)
541 prev = winList[type];
542 else
543 {
544 if (type == SRC_WIN)
545 type = CMD_WIN;
546 else
547 type--;
548 }
549 }
550
551 return prev;
552} /* tuiPrevWin */
553
554
555/*
c5aa993b
JM
556 ** displayableWinContentOf().
557 ** Answer a the content at the location indicated by index. Note
558 ** that if this is a locator window, the string returned should be
559 ** freed after use.
560 */
c906108c 561char *
eca6576c 562displayableWinContentOf (TuiGenWinInfoPtr winInfo, TuiWinElementPtr elementPtr)
c906108c
SS
563{
564
565 char *string = nullStr ();
566
567 if (elementPtr != (TuiWinElementPtr) NULL || winInfo->type == LOCATOR_WIN)
568 {
569 /*
c5aa993b
JM
570 ** Now convert the line to a displayable string
571 */
c906108c
SS
572 switch (winInfo->type)
573 {
574 case SRC_WIN:
575 case DISASSEM_WIN:
576 string = elementPtr->whichElement.source.line;
577 break;
578 case CMD_WIN:
579 string = elementPtr->whichElement.command.line;
580 break;
581 case LOCATOR_WIN:
582 if ((string = (char *) xmalloc (
583 (termWidth () + 1) * sizeof (char))) == (char *) NULL)
584 string = nullStr ();
585 else
586 {
587 char lineNo[50], pc[50], buf[50], *fname, *pname;
588 register int strSize = termWidth (), i, procWidth, fileWidth;
589
590 /*
c5aa993b
JM
591 ** First determine the amount of file/proc name width
592 ** we have available
593 */
c906108c
SS
594 i = strSize - (PC_WIDTH + LINE_WIDTH
595 + 25 /* pc and line labels */
c5aa993b 596 + strlen (FILE_PREFIX) + 1 /* file label */
c906108c
SS
597 + 15 /* procedure label */ );
598 if (i >= FILE_WIDTH + PROC_WIDTH)
599 {
600 fileWidth = FILE_WIDTH;
601 procWidth = PROC_WIDTH;
602 }
603 else
604 {
605 fileWidth = i / 2;
606 procWidth = i - fileWidth;
607 }
608
609 /* Now convert elements to string form */
610 if (elementPtr != (TuiWinElementPtr) NULL &&
611 *elementPtr->whichElement.locator.fileName != (char) 0 &&
612 srcWin->generic.isVisible)
613 fname = elementPtr->whichElement.locator.fileName;
614 else
615 fname = "??";
616 if (elementPtr != (TuiWinElementPtr) NULL &&
617 *elementPtr->whichElement.locator.procName != (char) 0)
618 pname = elementPtr->whichElement.locator.procName;
619 else
620 pname = "??";
621 if (elementPtr != (TuiWinElementPtr) NULL &&
622 elementPtr->whichElement.locator.lineNo > 0)
623 sprintf (lineNo, "%d",
624 elementPtr->whichElement.locator.lineNo);
625 else
626 strcpy (lineNo, "??");
627 if (elementPtr != (TuiWinElementPtr) NULL &&
a4b99e53
SC
628 elementPtr->whichElement.locator.addr != 0)
629 sprintf (pc, "0x%lx",
630 (long) elementPtr->whichElement.locator.addr);
c906108c
SS
631 else
632 strcpy (pc, "??");
633 /*
c5aa993b
JM
634 ** Now create the locator line from the string version
635 ** of the elements. We could use sprintf() here but
636 ** that wouldn't ensure that we don't overrun the size
637 ** of the allocated buffer. strcat_to_buf() will.
638 */
c906108c
SS
639 *string = (char) 0;
640 /* Filename */
641 strcat_to_buf (string, strSize, " ");
642 strcat_to_buf (string, strSize, FILE_PREFIX);
643 if (strlen (fname) > fileWidth)
644 {
645 strncpy (buf, fname, fileWidth - 1);
646 buf[fileWidth - 1] = '*';
647 buf[fileWidth] = (char) 0;
648 }
649 else
650 strcpy (buf, fname);
651 strcat_to_buf (string, strSize, buf);
652 /* procedure/class name */
653 sprintf (buf, "%15s", PROC_PREFIX);
654 strcat_to_buf (string, strSize, buf);
655 if (strlen (pname) > procWidth)
656 {
657 strncpy (buf, pname, procWidth - 1);
658 buf[procWidth - 1] = '*';
659 buf[procWidth] = (char) 0;
660 }
661 else
662 strcpy (buf, pname);
663 strcat_to_buf (string, strSize, buf);
664 sprintf (buf, "%10s", LINE_PREFIX);
665 strcat_to_buf (string, strSize, buf);
666 strcat_to_buf (string, strSize, lineNo);
667 sprintf (buf, "%10s", PC_PREFIX);
668 strcat_to_buf (string, strSize, buf);
669 strcat_to_buf (string, strSize, pc);
670 for (i = strlen (string); i < strSize; i++)
671 string[i] = ' ';
672 string[strSize] = (char) 0;
673 }
674 break;
675 case EXEC_INFO_WIN:
676 string = elementPtr->whichElement.simpleString;
677 break;
678 default:
679 break;
680 }
681 }
682 return string;
683} /* displayableWinContentOf */
684
685
686/*
c5aa993b
JM
687 ** winContentAt().
688 ** Answer a the content at the location indicated by index
689 */
c906108c 690char *
eca6576c 691displayableWinContentAt (TuiGenWinInfoPtr winInfo, int index)
c906108c
SS
692{
693 return (displayableWinContentOf (winInfo, (TuiWinElementPtr) winInfo->content[index]));
694} /* winContentAt */
695
696
697/*
c5aa993b
JM
698 ** winElementHeight().
699 ** Answer the height of the element in lines
700 */
c906108c 701int
eca6576c 702winElementHeight (TuiGenWinInfoPtr winInfo, TuiWinElementPtr element)
c906108c
SS
703{
704 int h;
705
706 if (winInfo->type == DATA_WIN)
707/* FOR NOW SAY IT IS ONLY ONE LINE HIGH */
708 h = 1;
709 else
710 h = 1;
711
712 return h;
713} /* winElementHeight */
714
715
716/*
c5aa993b
JM
717 ** winByName().
718 ** Answer the window represented by name
719 */
c906108c 720TuiWinInfoPtr
eca6576c 721winByName (char *name)
c906108c
SS
722{
723 TuiWinInfoPtr winInfo = (TuiWinInfoPtr) NULL;
724 int i = 0;
725
726 while (i < MAX_MAJOR_WINDOWS && m_winPtrIsNull (winInfo))
727 {
728 if (strcmp (name, winName (&(winList[i]->generic))) == 0)
729 winInfo = winList[i];
730 i++;
731 }
732
733 return winInfo;
734} /* winByName */
735
736
737/*
c5aa993b
JM
738 ** partialWinByName().
739 ** Answer the window represented by name
740 */
c906108c 741TuiWinInfoPtr
eca6576c 742partialWinByName (char *name)
c906108c
SS
743{
744 TuiWinInfoPtr winInfo = (TuiWinInfoPtr) NULL;
745
746 if (name != (char *) NULL)
747 {
748 int i = 0;
749
750 while (i < MAX_MAJOR_WINDOWS && m_winPtrIsNull (winInfo))
751 {
a4b99e53
SC
752 if (winList[i] != 0)
753 {
754 char *curName = winName (&winList[i]->generic);
755 if (strlen (name) <= strlen (curName) &&
756 strncmp (name, curName, strlen (name)) == 0)
757 winInfo = winList[i];
758 }
c906108c
SS
759 i++;
760 }
761 }
762
763 return winInfo;
764} /* partialWinByName */
765
766
767/*
c5aa993b
JM
768 ** winName().
769 ** Answer the name of the window
770 */
c906108c 771char *
eca6576c 772winName (TuiGenWinInfoPtr winInfo)
c906108c
SS
773{
774 char *name = (char *) NULL;
775
776 switch (winInfo->type)
777 {
778 case SRC_WIN:
779 name = SRC_NAME;
780 break;
781 case CMD_WIN:
782 name = CMD_NAME;
783 break;
784 case DISASSEM_WIN:
785 name = DISASSEM_NAME;
786 break;
787 case DATA_WIN:
788 name = DATA_NAME;
789 break;
790 default:
791 name = "";
792 break;
793 }
794
795 return name;
796} /* winName */
797
798
799/*
c5aa993b
JM
800 ** initializeStaticData
801 */
c906108c 802void
c906108c 803initializeStaticData (void)
c906108c
SS
804{
805 initGenericPart (sourceExecInfoWinPtr ());
806 initGenericPart (disassemExecInfoWinPtr ());
807 initGenericPart (locatorWinInfoPtr ());
808
809 return;
810} /* initializeStaticData */
811
812
813/*
c5aa993b
JM
814 ** allocGenericWinInfo().
815 */
c906108c 816TuiGenWinInfoPtr
c906108c 817allocGenericWinInfo (void)
c906108c
SS
818{
819 TuiGenWinInfoPtr win;
820
821 if ((win = (TuiGenWinInfoPtr) xmalloc (
822 sizeof (TuiGenWinInfoPtr))) != (TuiGenWinInfoPtr) NULL)
823 initGenericPart (win);
824
825 return win;
826} /* allocGenericWinInfo */
827
828
829/*
c5aa993b
JM
830 ** initGenericPart().
831 */
c906108c 832void
eca6576c 833initGenericPart (TuiGenWinInfoPtr win)
c906108c
SS
834{
835 win->width =
836 win->height =
837 win->origin.x =
838 win->origin.y =
839 win->viewportHeight =
840 win->contentSize =
841 win->lastVisibleLine = 0;
842 win->handle = (WINDOW *) NULL;
843 win->content = (OpaquePtr) NULL;
844 win->contentInUse =
845 win->isVisible = FALSE;
bc6b7f04
SC
846 win->title = 0;
847}
c906108c
SS
848
849
850/*
c5aa993b
JM
851 ** initContentElement().
852 */
c906108c 853void
eca6576c 854initContentElement (TuiWinElementPtr element, TuiWinType type)
c906108c
SS
855{
856 element->highlight = FALSE;
857 switch (type)
858 {
859 case SRC_WIN:
860 case DISASSEM_WIN:
861 element->whichElement.source.line = (char *) NULL;
862 element->whichElement.source.lineOrAddr.lineNo = 0;
863 element->whichElement.source.isExecPoint = FALSE;
864 element->whichElement.source.hasBreak = FALSE;
865 break;
866 case DATA_WIN:
867 initGenericPart (&element->whichElement.dataWindow);
868 element->whichElement.dataWindow.type = DATA_ITEM_WIN;
869 ((TuiGenWinInfoPtr) & element->whichElement.dataWindow)->content =
870 (OpaquePtr) allocContent (1, DATA_ITEM_WIN);
871 ((TuiGenWinInfoPtr)
872 & element->whichElement.dataWindow)->contentSize = 1;
873 break;
874 case CMD_WIN:
875 element->whichElement.command.line = (char *) NULL;
876 break;
877 case DATA_ITEM_WIN:
878 element->whichElement.data.name = (char *) NULL;
879 element->whichElement.data.type = TUI_REGISTER;
880 element->whichElement.data.itemNo = UNDEFINED_ITEM;
881 element->whichElement.data.value = (Opaque) NULL;
882 element->whichElement.data.highlight = FALSE;
883 break;
884 case LOCATOR_WIN:
885 element->whichElement.locator.fileName[0] =
886 element->whichElement.locator.procName[0] = (char) 0;
887 element->whichElement.locator.lineNo = 0;
888 element->whichElement.locator.addr = 0;
889 break;
890 case EXEC_INFO_WIN:
891 element->whichElement.simpleString = blankStr ();
892 break;
893 default:
894 break;
895 }
896 return;
897} /* initContentElement */
898
899/*
c5aa993b
JM
900 ** initWinInfo().
901 */
c906108c 902void
eca6576c 903initWinInfo (TuiWinInfoPtr winInfo)
c906108c
SS
904{
905 initGenericPart (&winInfo->generic);
906 winInfo->canHighlight =
907 winInfo->isHighlighted = FALSE;
908 switch (winInfo->generic.type)
909 {
910 case SRC_WIN:
911 case DISASSEM_WIN:
912 winInfo->detail.sourceInfo.executionInfo = (TuiGenWinInfoPtr) NULL;
913 winInfo->detail.sourceInfo.hasLocator = FALSE;
914 winInfo->detail.sourceInfo.horizontalOffset = 0;
a4b99e53 915 winInfo->detail.sourceInfo.startLineOrAddr.addr = 0;
bc6b7f04 916 winInfo->detail.sourceInfo.filename = 0;
c906108c
SS
917 break;
918 case DATA_WIN:
919 winInfo->detail.dataDisplayInfo.dataContent = (TuiWinContent) NULL;
920 winInfo->detail.dataDisplayInfo.dataContentCount = 0;
921 winInfo->detail.dataDisplayInfo.regsContent = (TuiWinContent) NULL;
922 winInfo->detail.dataDisplayInfo.regsContentCount = 0;
923 winInfo->detail.dataDisplayInfo.regsDisplayType =
924 TUI_UNDEFINED_REGS;
925 winInfo->detail.dataDisplayInfo.regsColumnCount = 1;
926 winInfo->detail.dataDisplayInfo.displayRegs = FALSE;
927 break;
928 case CMD_WIN:
929 winInfo->detail.commandInfo.curLine = 0;
930 winInfo->detail.commandInfo.curch = 0;
931 break;
932 default:
933 winInfo->detail.opaque = (Opaque) NULL;
934 break;
935 }
936
937 return;
938} /* initWinInfo */
939
940
941/*
c5aa993b
JM
942 ** allocWinInfo().
943 */
c906108c 944TuiWinInfoPtr
eca6576c 945allocWinInfo (TuiWinType type)
c906108c
SS
946{
947 TuiWinInfoPtr winInfo = (TuiWinInfoPtr) NULL;
948
949 winInfo = (TuiWinInfoPtr) xmalloc (sizeof (TuiWinInfo));
950 if (m_winPtrNotNull (winInfo))
951 {
952 winInfo->generic.type = type;
953 initWinInfo (winInfo);
954 }
955
956 return winInfo;
957} /* allocWinInfo */
958
959
960/*
c5aa993b
JM
961 ** allocContent().
962 ** Allocates the content and elements in a block.
963 */
c906108c 964TuiWinContent
eca6576c 965allocContent (int numElements, TuiWinType type)
c906108c
SS
966{
967 TuiWinContent content = (TuiWinContent) NULL;
968 char *elementBlockPtr = (char *) NULL;
969 int i;
970
971 if ((content = (TuiWinContent)
972 xmalloc (sizeof (TuiWinElementPtr) * numElements)) != (TuiWinContent) NULL)
973 { /*
c5aa993b
JM
974 ** All windows, except the data window, can allocate the elements
975 ** in a chunk. The data window cannot because items can be
976 ** added/removed from the data display by the user at any time.
977 */
c906108c
SS
978 if (type != DATA_WIN)
979 {
980 if ((elementBlockPtr = (char *)
981 xmalloc (sizeof (TuiWinElement) * numElements)) != (char *) NULL)
982 {
983 for (i = 0; i < numElements; i++)
984 {
985 content[i] = (TuiWinElementPtr) elementBlockPtr;
986 initContentElement (content[i], type);
987 elementBlockPtr += sizeof (TuiWinElement);
988 }
989 }
990 else
991 {
992 tuiFree ((char *) content);
993 content = (TuiWinContent) NULL;
994 }
995 }
996 }
997
998 return content;
999} /* allocContent */
1000
1001
1002/*
c5aa993b
JM
1003 ** addContentElements().
1004 ** Adds the input number of elements to the windows's content. If
1005 ** no content has been allocated yet, allocContent() is called to
1006 ** do this. The index of the first element added is returned,
1007 ** unless there is a memory allocation error, in which case, (-1)
1008 ** is returned.
1009 */
c906108c 1010int
eca6576c 1011addContentElements (TuiGenWinInfoPtr winInfo, int numElements)
c906108c
SS
1012{
1013 TuiWinElementPtr elementPtr;
1014 int i, indexStart;
1015
1016 if (winInfo->content == (OpaquePtr) NULL)
1017 {
1018 winInfo->content = (OpaquePtr) allocContent (numElements, winInfo->type);
1019 indexStart = 0;
1020 }
1021 else
1022 indexStart = winInfo->contentSize;
1023 if (winInfo->content != (OpaquePtr) NULL)
1024 {
1025 for (i = indexStart; (i < numElements + indexStart); i++)
1026 {
1027 if ((elementPtr = (TuiWinElementPtr)
1028 xmalloc (sizeof (TuiWinElement))) != (TuiWinElementPtr) NULL)
1029 {
1030 winInfo->content[i] = (Opaque) elementPtr;
1031 initContentElement (elementPtr, winInfo->type);
1032 winInfo->contentSize++;
1033 }
c5aa993b 1034 else /* things must be really hosed now! We ran out of memory!? */
c906108c
SS
1035 return (-1);
1036 }
1037 }
1038
1039 return indexStart;
1040} /* addContentElements */
1041
1042
bc6b7f04
SC
1043/* Delete all curses windows associated with winInfo, leaving everything
1044 else intact. */
c906108c 1045void
eca6576c 1046tuiDelWindow (TuiWinInfoPtr winInfo)
c906108c 1047{
c906108c
SS
1048 TuiGenWinInfoPtr genericWin;
1049
c906108c
SS
1050 switch (winInfo->generic.type)
1051 {
1052 case SRC_WIN:
1053 case DISASSEM_WIN:
1054 genericWin = locatorWinInfoPtr ();
1055 if (genericWin != (TuiGenWinInfoPtr) NULL)
1056 {
1057 tuiDelwin (genericWin->handle);
1058 genericWin->handle = (WINDOW *) NULL;
1059 genericWin->isVisible = FALSE;
1060 }
bc6b7f04
SC
1061 if (winInfo->detail.sourceInfo.filename)
1062 {
1063 xfree (winInfo->detail.sourceInfo.filename);
1064 winInfo->detail.sourceInfo.filename = 0;
1065 }
c906108c
SS
1066 genericWin = winInfo->detail.sourceInfo.executionInfo;
1067 if (genericWin != (TuiGenWinInfoPtr) NULL)
1068 {
1069 tuiDelwin (genericWin->handle);
1070 genericWin->handle = (WINDOW *) NULL;
1071 genericWin->isVisible = FALSE;
1072 }
1073 break;
1074 case DATA_WIN:
1075 if (winInfo->generic.content != (OpaquePtr) NULL)
1076 {
bc6b7f04
SC
1077 tuiDelDataWindows (winInfo->detail.dataDisplayInfo.regsContent,
1078 winInfo->detail.dataDisplayInfo.regsContentCount);
1079 tuiDelDataWindows (winInfo->detail.dataDisplayInfo.dataContent,
1080 winInfo->detail.dataDisplayInfo.dataContentCount);
c906108c
SS
1081 }
1082 break;
1083 default:
1084 break;
1085 }
1086 if (winInfo->generic.handle != (WINDOW *) NULL)
1087 {
1088 tuiDelwin (winInfo->generic.handle);
1089 winInfo->generic.handle = (WINDOW *) NULL;
1090 winInfo->generic.isVisible = FALSE;
1091 }
bc6b7f04 1092}
c906108c
SS
1093
1094
1095/*
c5aa993b
JM
1096 ** freeWindow().
1097 */
c906108c 1098void
eca6576c 1099freeWindow (TuiWinInfoPtr winInfo)
c906108c 1100{
c906108c
SS
1101 TuiGenWinInfoPtr genericWin;
1102
c906108c
SS
1103 switch (winInfo->generic.type)
1104 {
1105 case SRC_WIN:
1106 case DISASSEM_WIN:
1107 genericWin = locatorWinInfoPtr ();
1108 if (genericWin != (TuiGenWinInfoPtr) NULL)
1109 {
1110 tuiDelwin (genericWin->handle);
1111 genericWin->handle = (WINDOW *) NULL;
1112 }
1113 freeWinContent (genericWin);
bc6b7f04
SC
1114 if (winInfo->detail.sourceInfo.filename)
1115 {
1116 xfree (winInfo->detail.sourceInfo.filename);
1117 winInfo->detail.sourceInfo.filename = 0;
1118 }
c906108c
SS
1119 genericWin = winInfo->detail.sourceInfo.executionInfo;
1120 if (genericWin != (TuiGenWinInfoPtr) NULL)
1121 {
1122 tuiDelwin (genericWin->handle);
1123 genericWin->handle = (WINDOW *) NULL;
1124 freeWinContent (genericWin);
1125 }
1126 break;
1127 case DATA_WIN:
1128 if (winInfo->generic.content != (OpaquePtr) NULL)
1129 {
1130 freeDataContent (
1131 winInfo->detail.dataDisplayInfo.regsContent,
1132 winInfo->detail.dataDisplayInfo.regsContentCount);
1133 winInfo->detail.dataDisplayInfo.regsContent =
1134 (TuiWinContent) NULL;
1135 winInfo->detail.dataDisplayInfo.regsContentCount = 0;
1136 freeDataContent (
1137 winInfo->detail.dataDisplayInfo.dataContent,
1138 winInfo->detail.dataDisplayInfo.dataContentCount);
1139 winInfo->detail.dataDisplayInfo.dataContent =
1140 (TuiWinContent) NULL;
1141 winInfo->detail.dataDisplayInfo.dataContentCount = 0;
1142 winInfo->detail.dataDisplayInfo.regsDisplayType =
1143 TUI_UNDEFINED_REGS;
1144 winInfo->detail.dataDisplayInfo.regsColumnCount = 1;
1145 winInfo->detail.dataDisplayInfo.displayRegs = FALSE;
1146 winInfo->generic.content = (OpaquePtr) NULL;
1147 winInfo->generic.contentSize = 0;
1148 }
1149 break;
1150 default:
1151 break;
1152 }
1153 if (winInfo->generic.handle != (WINDOW *) NULL)
1154 {
1155 tuiDelwin (winInfo->generic.handle);
1156 winInfo->generic.handle = (WINDOW *) NULL;
1157 freeWinContent (&winInfo->generic);
1158 }
bc6b7f04
SC
1159 if (winInfo->generic.title)
1160 xfree (winInfo->generic.title);
b8c9b27d 1161 xfree (winInfo);
bc6b7f04 1162}
c906108c
SS
1163
1164
1165/*
c5aa993b
JM
1166 ** freeAllSourceWinsContent().
1167 */
c906108c 1168void
c906108c 1169freeAllSourceWinsContent (void)
c906108c
SS
1170{
1171 int i;
1172
1173 for (i = 0; i < (sourceWindows ())->count; i++)
1174 {
1175 TuiWinInfoPtr winInfo = (TuiWinInfoPtr) (sourceWindows ())->list[i];
1176
1177 if (m_winPtrNotNull (winInfo))
1178 {
1179 freeWinContent (&(winInfo->generic));
1180 freeWinContent (winInfo->detail.sourceInfo.executionInfo);
1181 }
1182 }
1183
1184 return;
1185} /* freeAllSourceWinsContent */
1186
1187
1188/*
c5aa993b
JM
1189 ** freeWinContent().
1190 */
c906108c 1191void
eca6576c 1192freeWinContent (TuiGenWinInfoPtr winInfo)
c906108c
SS
1193{
1194 if (winInfo->content != (OpaquePtr) NULL)
1195 {
1196 freeContent ((TuiWinContent) winInfo->content,
1197 winInfo->contentSize,
1198 winInfo->type);
1199 winInfo->content = (OpaquePtr) NULL;
1200 }
1201 winInfo->contentSize = 0;
1202
1203 return;
1204} /* freeWinContent */
1205
1206
1207/*
c5aa993b
JM
1208 ** freeAllWindows().
1209 */
c906108c 1210void
c906108c 1211freeAllWindows (void)
c906108c
SS
1212{
1213 TuiWinType type = SRC_WIN;
1214
1215 for (; type < MAX_MAJOR_WINDOWS; type++)
1216 if (m_winPtrNotNull (winList[type]) &&
1217 winList[type]->generic.type != UNDEFINED_WIN)
1218 freeWindow (winList[type]);
1219 return;
1220} /* freeAllWindows */
1221
1222
1223void
eca6576c 1224tuiDelDataWindows (TuiWinContent content, int contentSize)
c906108c
SS
1225{
1226 int i;
1227
1228 /*
c5aa993b
JM
1229 ** Remember that data window content elements are of type TuiGenWinInfoPtr,
1230 ** each of which whose single element is a data element.
1231 */
c906108c
SS
1232 for (i = 0; i < contentSize; i++)
1233 {
1234 TuiGenWinInfoPtr genericWin = &content[i]->whichElement.dataWindow;
1235
1236 if (genericWin != (TuiGenWinInfoPtr) NULL)
1237 {
1238 tuiDelwin (genericWin->handle);
1239 genericWin->handle = (WINDOW *) NULL;
1240 genericWin->isVisible = FALSE;
1241 }
1242 }
1243
1244 return;
1245} /* tuiDelDataWindows */
1246
1247
1248void
eca6576c 1249freeDataContent (TuiWinContent content, int contentSize)
c906108c
SS
1250{
1251 int i;
1252
1253 /*
c5aa993b
JM
1254 ** Remember that data window content elements are of type TuiGenWinInfoPtr,
1255 ** each of which whose single element is a data element.
1256 */
c906108c
SS
1257 for (i = 0; i < contentSize; i++)
1258 {
1259 TuiGenWinInfoPtr genericWin = &content[i]->whichElement.dataWindow;
1260
1261 if (genericWin != (TuiGenWinInfoPtr) NULL)
1262 {
1263 tuiDelwin (genericWin->handle);
1264 genericWin->handle = (WINDOW *) NULL;
1265 freeWinContent (genericWin);
1266 }
1267 }
1268 freeContent (content,
1269 contentSize,
1270 DATA_WIN);
1271
1272 return;
1273} /* freeDataContent */
1274
1275
1276/**********************************
1277** LOCAL STATIC FUNCTIONS **
1278**********************************/
1279
1280
1281/*
c5aa993b
JM
1282 ** freeContent().
1283 */
c906108c 1284static void
eca6576c 1285freeContent (TuiWinContent content, int contentSize, TuiWinType winType)
c906108c
SS
1286{
1287 if (content != (TuiWinContent) NULL)
1288 {
1289 freeContentElements (content, contentSize, winType);
1290 tuiFree ((char *) content);
1291 }
1292
1293 return;
1294} /* freeContent */
1295
1296
1297/*
c5aa993b
JM
1298 ** freeContentElements().
1299 */
c906108c 1300static void
eca6576c 1301freeContentElements (TuiWinContent content, int contentSize, TuiWinType type)
c906108c
SS
1302{
1303 if (content != (TuiWinContent) NULL)
1304 {
1305 int i;
1306
1307 if (type == SRC_WIN || type == DISASSEM_WIN)
1308 {
1309 /* free whole source block */
1310 if (content[0]->whichElement.source.line != (char *) NULL)
1311 tuiFree (content[0]->whichElement.source.line);
1312 }
1313 else
1314 {
1315 for (i = 0; i < contentSize; i++)
1316 {
1317 TuiWinElementPtr element;
1318
1319 element = content[i];
1320 if (element != (TuiWinElementPtr) NULL)
1321 {
1322 switch (type)
1323 {
1324 case DATA_WIN:
1325 tuiFree ((char *) element);
1326 break;
1327 case DATA_ITEM_WIN:
1328 /*
c5aa993b
JM
1329 ** Note that data elements are not allocated
1330 ** in a single block, but individually, as needed.
1331 */
c906108c
SS
1332 if (element->whichElement.data.type != TUI_REGISTER)
1333 tuiFree ((char *)
1334 element->whichElement.data.name);
1335 tuiFree ((char *) element->whichElement.data.value);
1336 tuiFree ((char *) element);
1337 break;
1338 case CMD_WIN:
1339 tuiFree ((char *) element->whichElement.command.line);
1340 break;
1341 default:
1342 break;
1343 }
1344 }
1345 }
1346 }
1347 if (type != DATA_WIN && type != DATA_ITEM_WIN)
1348 tuiFree ((char *) content[0]); /* free the element block */
1349 }
1350
1351 return;
1352} /* freeContentElements */
This page took 0.347438 seconds and 4 git commands to generate.