summaryrefslogtreecommitdiff
path: root/lib/libcurses/inchstr.c
blob: c5893972ddb009e195928ed474842b2631dc2c71 (plain)
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
/*	$NetBSD: inchstr.c,v 1.6 2012/04/21 11:33:16 blymn Exp $	*/

/*
 * Copyright 2001 Wasabi Systems, Inc.
 * All rights reserved.
 *
 * Written by Simon Burge for Wasabi Systems, Inc.
 *
 * 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. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *      This product includes software developed for the NetBSD Project by
 *      Wasabi Systems, Inc.
 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
 *    or promote products derived from this software without specific prior
 *    written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC. 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 <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: inchstr.c,v 1.6 2012/04/21 11:33:16 blymn Exp $");
#endif				/* not lint */

#include "curses.h"
#include "curses_private.h"

#ifndef _CURSES_USE_MACROS

/*
 * inchstr, inchnstr --
 *	Return an array of characters at cursor position from stdscr.
 */
__warn_references(inchstr,
    "warning: this program uses inchstr(), which is unsafe.")
int
inchstr(chtype *chstr)
{
	return winchstr(stdscr, chstr);
}

int
inchnstr(chtype *chstr, int n)
{
	return winchnstr(stdscr, chstr, n);
}

/*
 * mvinchstr, mvinchnstr --
 *      Return an array of characters at position (y, x) from stdscr.
 */
__warn_references(mvinchstr,
    "warning: this program uses mvinchstr(), which is unsafe.")
int
mvinchstr(int y, int x, chtype *chstr)
{
	return mvwinchstr(stdscr, y, x, chstr);
}

int
mvinchnstr(int y, int x, chtype *chstr, int n)
{
	return mvwinchnstr(stdscr, y, x, chstr, n);
}

/*
 * mvwinchstr, mvwinchnstr --
 *      Return an array characters at position (y, x) from the given window.
 */
__warn_references(mvwinchstr,
    "warning: this program uses mvwinchstr(), which is unsafe.")
int
mvwinchstr(WINDOW *win, int y, int x, chtype *chstr)
{
	if (wmove(win, y, x) == ERR)
		return ERR;

	return winchstr(win, chstr);
}

int
mvwinchnstr(WINDOW *win, int y, int x, chtype *chstr, int n)
{
	if (wmove(win, y, x) == ERR)
		return ERR;

	return winchnstr(win, chstr, n);
}

#endif	/* _CURSES_USE_MACROS */

/*
 * winchstr, winchnstr --
 *	Return an array of characters at cursor position.
 */
__warn_references(winchstr,
    "warning: this program uses winchstr(), which is unsafe.")
int
winchstr(WINDOW *win, chtype *chstr)
{

	return winchnstr(win, chstr, -1);
}

/*
 * XXX: This should go in a manpage!
 * - SUSv2/xcurses doesn't document whether the trailing 0 is included
 *   in the length count or not.  For safety's sake it _is_ included.
 */
int
winchnstr(WINDOW *win, chtype *chstr, int n)
{
	__LDATA	*end, *start;
	int epos;

	if (chstr == NULL)
		return ERR;

	start = &win->alines[win->cury]->line[win->curx];
	/* (n - 1) to leave room for the trailing 0 element */
	if (n < 0 || (n - 1) > win->maxx - win->curx - 1)
		epos = win->maxx - 1;
	else
		/* extra -1 for trailing NUL */
		epos = win->curx + n -1 - 1;
	end = &win->alines[win->cury]->line[epos];

	while (start <= end) {
		/* or in the attributes but strip out internal flags */
#ifdef HAVE_WCHAR
		*chstr = start->ch | (start->attr & ~__ACS_IS_WACS);
#else
		*chstr = start->ch | start->attr;
#endif
		chstr++;
		start++;
	}
	*chstr = 0;

	return OK;
}