File: scan.c

package info (click to toggle)
trn4 4.0-test77-12
  • links: PTS, VCS
  • area: non-free
  • in suites: buster
  • size: 3,644 kB
  • sloc: ansic: 48,331; sh: 6,817; tcl: 1,696; yacc: 660; perl: 108; makefile: 24
file content (193 lines) | stat: -rw-r--r-- 4,788 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/* This file Copyright 1992 by Clifford A. Adams */
/* scan.c
 *
 * Scan initialization/cleanup and context control.
 */

/* CLEANUP: make a scontext file for the scan context stuff. */

#include "EXTERN.h"
#include "common.h"
#ifdef SCAN
#include "final.h"		/* for assert statements */
#include "util.h"		/* allocation */
#include "INTERN.h"
#include "scan.h"
#include "EXTERN.h"
#include "sorder.h"

void
s_init_context(cnum,type)
int cnum,type;
{
    SCONTEXT *p;
    int i;

    /* s_num_contexts not incremented until last moment */
    if (cnum < 0 || cnum > s_num_contexts) {
	printf("s_init_context: illegal context number %d!\n",cnum) FLUSH;
	assert(FALSE);
    }
    p = s_contexts + cnum;
    p->type = type;
    p->ent_sort = (long*)NULL;
    p->ent_sort_max = -1;
    p->ent_sorted_max = -1;
    p->ent_index = (long*)NULL;
    p->ent_index_max = -1;
    p->page_size = MAX_PAGE_SIZE;
    p->top_ent = -1;
    p->bot_ent = -1;
    p->refill = TRUE;
    p->ref_all = TRUE;
    p->ref_top = TRUE;
    p->ref_bot = TRUE;
    p->ref_status = -1;
    p->ref_desc = -1;
    /* next ones should be reset later */
    p->top_lines = 0;
    p->bot_lines = 0;
    p->status_cols = 0;
    p->cursor_cols = 0;
    p->desc_cols = 0;
    p->itemnum_cols = 0;
    p->ptr_page_line = 0;
    p->flags = 0;
    /* clear the page entries */
    for (i = 0; i < MAX_PAGE_SIZE; i++) {
	p->page_ents[i].entnum = 0;
	p->page_ents[i].lines = 0;
	p->page_ents[i].start_line = 0;
	p->page_ents[i].pageflags = (char)0;
    }
}

/* allocate a new context number and initialize it */
int	/* context number */
s_new_context(type)
int type;			/* context type */
{
    int i;

    /* check for deleted contexts */
    for (i = 0; i < s_num_contexts; i++)
	if (s_contexts[i].type == 0)	/* deleted context */
	    break;
    if (i < s_num_contexts) {	/* a deleted one was found */
	s_init_context(i,type);
	return i;
    }
    /* none deleted, so allocate a new one */
    i = s_num_contexts;
    i++;
    if (i == 1) {	/* none allocated before */
	s_contexts = (SCONTEXT*)safemalloc(sizeof (SCONTEXT));
    } else {
	s_contexts = (SCONTEXT*)saferealloc((char*)s_contexts,
					i * sizeof (SCONTEXT));
    }
    s_contexts[i-1].page_ents =
			(PAGE_ENT*)safemalloc(MAX_PAGE_SIZE*sizeof(PAGE_ENT));
    s_init_context(i-1,type);
    s_num_contexts++;			/* now safe to increment */
    return s_num_contexts-1;
}

/* saves the current context */
void
s_save_context()
{
    SCONTEXT *p;

    p = s_contexts + s_cur_context;

    p->type = s_cur_type;
    p->page_ents = page_ents;

    p->ent_sort = s_ent_sort;
    p->ent_sort_max = s_ent_sort_max;
    p->ent_sorted_max = s_ent_sorted_max;
    p->ent_index = s_ent_index;
    p->ent_index_max = s_ent_index_max;

    p->page_size = s_page_size;
    p->top_ent = s_top_ent;
    p->bot_ent = s_bot_ent;
    p->refill = s_refill;
    p->ref_all = s_ref_all;
    p->ref_top = s_ref_top;
    p->ref_bot = s_ref_bot;
    p->ref_status = s_ref_status;
    p->ref_desc = s_ref_desc;

    p->top_lines = s_top_lines;
    p->bot_lines = s_bot_lines;
    p->status_cols = s_status_cols;
    p->cursor_cols = s_cursor_cols;
    p->desc_cols = s_desc_cols;
    p->itemnum_cols = s_itemnum_cols;
    p->ptr_page_line = s_ptr_page_line;
    p->flags = s_flags;
}


void
s_change_context(newcontext)
int newcontext;			/* context number to activate */
{
    SCONTEXT *p;

    if (newcontext < 0 || newcontext >= s_num_contexts) {
	printf("s_change_context: bad context number %d!\n",newcontext) FLUSH;
	assert(FALSE);
    }
    s_cur_context = newcontext;
    p = s_contexts + newcontext;
    s_cur_type = p->type;
    page_ents = p->page_ents;

    s_ent_sort = p->ent_sort;
    s_ent_sort_max = p->ent_sort_max;
    s_ent_sorted_max = p->ent_sorted_max;
    s_ent_index = p->ent_index;
    s_ent_index_max = p->ent_index_max;

    s_page_size = p->page_size;
    s_top_ent = p->top_ent;
    s_bot_ent = p->bot_ent;
    s_refill = p->refill;
    s_ref_all = p->ref_all;
    s_ref_top = p->ref_top;
    s_ref_bot = p->ref_bot;
    s_ref_status = p->ref_status;
    s_ref_desc = p->ref_desc;
    /* next ones should be reset later */
    s_top_lines = p->top_lines;
    s_bot_lines = p->bot_lines;
    s_status_cols = p->status_cols;
    s_cursor_cols = p->cursor_cols;
    s_desc_cols = p->desc_cols;
    s_itemnum_cols = p->itemnum_cols;
    s_ptr_page_line = p->ptr_page_line;
    s_flags = p->flags;
}

/* implement later? */
void
s_clean_contexts()
{
}

void
s_delete_context(cnum)
int cnum;		/* context number to delete */
{
    if (cnum < 0 || cnum >= s_num_contexts) {
	printf("s_delete_context: illegal context number %d!\n",cnum) FLUSH;
	assert(FALSE);
    }
    s_order_clean();
    /* mark the context as empty */
    s_contexts[cnum].type = 0;
}
#endif /* SCAN */