File: hold.c

package info (click to toggle)
ircii 20210328-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,644 kB
  • sloc: ansic: 42,273; makefile: 860; sh: 524; perl: 348
file content (243 lines) | stat: -rw-r--r-- 5,959 bytes parent folder | download | duplicates (5)
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/*
 * hold.c: handles buffering of display output.
 *
 * Written By Michael Sandrof 
 *
 * Copyright (c) 1990 Michael Sandrof.
 * Copyright (c) 1991, 1992 Troy Rollo.
 * Copyright (c) 1992-2014 Matthew R. Green.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include "irc.h"
IRCII_RCSID("@(#)$eterna: hold.c,v 1.30 2014/02/21 11:04:36 mrg Exp $");

#include "ircaux.h"
#include "window.h"
#include "screen.h"
#include "vars.h"
#include "input.h"

/* Hold: your general doubly-linked list type structure */
struct hold_stru
{
	u_char	*str;
	Hold	*next;
	Hold	*prev;
	int	logged;
};

/* HoldInfo: stuff specific to this module. */
struct hold_info_stru
{
	int	held;		/* true, the window is currently being held */
	int	last_held;	/* Previous value of hold flag.
				   Used for various updating needs */
	Hold	*hold_head,	/* Pointer to first entry in hold list */
		*hold_tail;	/* Pointer to last entry in hold list */
	int	held_lines;	/* number of lines being held */
};

/* reset_hold: Make hold_mode behave like VM CHAT, hold only
 * when there is no user interaction, this should be called
 * whenever the user does something in a window.  -lynx
 */
void
reset_hold(Window *win)
{
	if (!win)
		win = curr_scr_win;
	if (!window_get_scrolled_lines(win))
		window_set_line_cnt(win, 0);
}

/* add_to_hold_list: adds str to the hold list queue */
void
add_to_hold_list(Window *window, HoldInfo *info, u_char *str, int logged)
{
	Hold	*new;
	unsigned int	max;

	new = new_malloc(sizeof *new);
	new->str = NULL;
	malloc_strcpy(&(new->str), str);
	new->logged = logged;
	info->held_lines++;
	if ((max = get_int_var(HOLD_MODE_MAX_VAR)) != 0)
	{
		if (info->held_lines > max)
			hold_mode(window, info, OFF, 1);
	}
	new->next = info->hold_head;
	new->prev = NULL;
	if (info->hold_tail == NULL)
		info->hold_tail = new;
	if (info->hold_head)
		info->hold_head->prev = new;
	info->hold_head = new;
	update_all_status();
}

/* remove_from_hold_list: pops the next element off the hold list queue. */
void
remove_from_hold_list(HoldInfo *info)
{
	Hold	*crap;

	if (info->hold_tail)
	{
		info->held_lines--;
		new_free(&info->hold_tail->str);
		crap = info->hold_tail;
		info->hold_tail = info->hold_tail->prev;
		if (info->hold_tail == NULL)
			info->hold_head = info->hold_tail;
		else
			info->hold_tail->next = NULL;
		new_free(&crap);
		update_all_status();
	}
}

/*
 * hold_mode: sets the "hold mode".  Really.  If the update flag is true,
 * this will also update the status line, if needed, to display the hold mode
 * state.  If update is false, only the internal flag is set.  
 */
void
hold_mode(Window *window, HoldInfo *info, int flag, int update)
{
	if (flag != ON && window_get_scrolled_lines(window))
		return;
	if (flag == TOGGLE)
	{
		if (info->held == OFF)
			info->held = ON;
		else
			info->held = OFF;
	}
	else
		info->held = flag;
	if (update)
	{
		if (info->held != info->last_held)
		{
			info->last_held = info->held;
					/* This shouldn't be done
					 * this way */
			update_window_status(window, 0);
			window_set_update(window, 0, UPDATE_STATUS);
			cursor_in_display();
			update_input(NO_UPDATE);
		}
	}
	else
		info->last_held = -1;
}

/*
 * hold_output: returns the state of the window->held, which is set in the
 * hold_mode() routine. 
 */
int
hold_output(Window *window, HoldInfo *info)
{
	return info->held == ON || window_get_scrolled_lines(window) != 0;
}

/*
 * hold_queue: returns the string value of the next element on the hold
 * quere.  This does not change the hold queue 
 */
u_char	*
hold_queue(HoldInfo *info)
{
	if (info->hold_tail)
		return info->hold_tail->str;
	else
		return NULL;
}

int
hold_queue_logged(HoldInfo *info)
{
	if (info->hold_tail)
		return info->hold_tail->logged;
	else
		return 0;
}

/* toggle_stop_screen: the BIND function TOGGLE_STOP_SCREEN */
void
toggle_stop_screen(u_int key, u_char *ptr)
{
	window_hold_mode(NULL, TOGGLE, 1);
	update_all_windows();
}

HoldInfo *
alloc_hold_info(void)
{
	HoldInfo *new;

	new = new_malloc(sizeof *new);
	new->held = OFF;
	new->last_held = OFF;
	new->hold_head = new->hold_tail = NULL;
	new->held_lines = 0;

	return new;
}

/*
 * free_hold: This frees all the data and structures associated with the hold
 * list for the given window 
 */
void
free_hold_info(HoldInfo **hold_info)
{
	Hold *tmp, *next;

	for (tmp = (*hold_info)->hold_head; tmp; tmp = next)
	{
		next = tmp->next;
		new_free(&tmp->str);
		new_free(&tmp);
	}
	new_free(hold_info);
}

int
held_lines(HoldInfo *info)
{
	return info->held_lines;
}

int
hold_is_held(HoldInfo *info)
{
	return info->held;
}