[BACK]Return to tscroll.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libcurses

File: [cvs.NetBSD.org] / src / lib / libcurses / tscroll.c (download)

Revision 1.14, Fri Jan 6 13:53:18 2017 UTC (7 years, 3 months ago) by roy
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, phil-wifi, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Changes since 1.13: +19 -18 lines

KNF.
Normalise coding style.
White space police.
Sprinkle some extra braces to make the flow more clear.

No functional changes.

/*	$NetBSD: tscroll.c,v 1.14 2017/01/06 13:53:18 roy Exp $	*/

/*-
 * Copyright (c) 1992, 1993, 1994
 *	The Regents of the University of California.  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. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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
#if 0
static char sccsid[] = "@(#)tscroll.c	8.4 (Berkeley) 7/27/94";
#else
__RCSID("$NetBSD: tscroll.c,v 1.14 2017/01/06 13:53:18 roy Exp $");
#endif
#endif				/* not lint */

#include <string.h>
#include <stdarg.h>
#include "curses.h"
#include "curses_private.h"

#define	MAXRETURNSIZE	64

char   *
__tscroll(const char *cap, int n1, int n2)
{

	return __parse_cap(cap, n1, n2);
}

/*
 * Routines to parse capabilities.  Derived from tgoto.c in termcap(3)
 * library.  Cap is a string containing printf type escapes to allow
 * scrolling.  The following escapes are defined for substituting n:
 *
 *	%d	as in printf
 *	%2	like %2d
 *	%3	like %3d
 *	%.	gives %c hacking special case characters
 *	%+x	like %c but adding x first
 *
 *	The codes below affect the state but don't use up a value.
 *
 *	%>xy	if value > x add y
 *	%i	increments n
 *	%%	gives %
 *	%B	BCD (2 decimal digits encoded in one byte)
 *	%D	Delta Data (backwards bcd)
 *
 * all other characters are ``self-inserting''.
 *
 * XXX:
 *	%r	reverse order of two parameters
 * is also defined but we don't support it (yet).
 */
char	*
__parse_cap (char const *cap, ...)
{
	va_list	ap;
	static char result[MAXRETURNSIZE];
	int     c, n;
	char   *dp;
	int	have_input;

	va_start (ap, cap);
	n = 0;			/* XXX gcc -Wuninitialized */

	if (cap == NULL)
		goto err;
#ifdef DEBUG
	{
		int	i;

		__CTRACE(__CTRACE_MISC, "__parse_cap: cap = ");
		for (i = 0; i < strlen(cap); i++)
			__CTRACE(__CTRACE_MISC, "%s", unctrl(cap[i]));
		__CTRACE(__CTRACE_MISC, "\n");
	}
#endif
	have_input = 0;
	for (dp = result; (c = *cap++) != '\0';) {
		if (c != '%') {
			*dp++ = c;
			continue;
		}
		switch (c = *cap++) {
		case 'n':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%n, val = %d\n", n);
#endif
			}
			n ^= 0140;
			continue;
		case 'd':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%d, val = %d\n", n);
#endif
			}
			if (n < 10)
				goto one;
			if (n < 100)
				goto two;
			/* FALLTHROUGH */
		case '3':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%3, val = %d\n", n);
#endif
			}
			*dp++ = (n / 100) | '0';
			n %= 100;
			/* FALLTHROUGH */
		case '2':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%2, val = %d\n", n);
#endif
			}
	two:		*dp++ = n / 10 | '0';
	one:		*dp++ = n % 10 | '0';
			have_input = 0;
			continue;
		case '>':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%>, val = %d\n", n);
#endif
			}
			if (n > *cap++)
				n += *cap++;
			else
				cap++;
			continue;
		case '+':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%+, val = %d\n", n);
#endif
			}
			n += *cap++;
			/* FALLTHROUGH */
		case '.':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%., val = %d\n", n);
#endif
			}
			*dp++ = n;
			have_input = 0;
			continue;
		case 'i':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%i, val = %d\n", n);
#endif
			}
			n++;
			continue;
		case '%':
			*dp++ = c;
			continue;
		case 'B':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%B, val = %d\n", n);
#endif
			}
			n = (n / 10 << 4) + n % 10;
			continue;
		case 'D':
			if (!have_input) {
				n = va_arg(ap, int);
				have_input = 1;
#ifdef DEBUG
				__CTRACE(__CTRACE_MISC,
				    "__parse_cap: %%D, val = %d\n", n);
#endif
			}
			n = n - 2 * (n % 16);
			continue;
			/*
			 * XXX
			 * System V terminfo files have lots of extra gunk.
			 * The only other one we've seen in capability strings
			 * is %pN, and it seems to work okay if we ignore it.
			 */
		case 'p':
			++cap;
			continue;
		default:
			goto err;
		}
	}
	*dp = '\0';
	va_end(ap);
	return result;

err:	va_end(ap);
	return (char *)"\0";
}