1 /* $NetBSD: v_increment.c,v 1.3 2014/01/26 21:43:45 christos Exp $ */
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1992, 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved.
8 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 static const char sccsid
[] = "Id: v_increment.c,v 10.16 2001/06/25 15:19:31 skimo Exp (Berkeley) Date: 2001/06/25 15:19:31 ";
19 __RCSID("$NetBSD: v_increment.c,v 1.3 2014/01/26 21:43:45 christos Exp $");
22 #include <sys/types.h>
23 #include <sys/queue.h>
26 #include <bitstring.h>
34 #include "../common/common.h"
37 static const CHAR_T
*fmt
[] = {
50 static void inc_err
__P((SCR
*, enum nresult
));
53 * v_increment -- [count]#[#+-]
54 * Increment/decrement a keyword number.
56 * PUBLIC: int v_increment __P((SCR *, VICMD *));
59 v_increment(SCR
*sp
, VICMD
*vp
)
64 size_t beg
, blen
, end
, len
, nlen
, wlen
;
65 int base
, isempty
, rval
;
66 CHAR_T
*bp
, *p
, *t
, nbuf
[100];
69 /* Validate the operator. */
70 if (vp
->character
== L('#'))
71 vp
->character
= L('+');
72 if (vp
->character
!= L('+') && vp
->character
!= L('-')) {
73 v_emsg(sp
, vp
->kp
->usage
, VIM_USAGE
);
77 /* If new value set, save it off, but it has to fit in a long. */
78 if (F_ISSET(vp
, VC_C1SET
)) {
79 if (vp
->count
> LONG_MAX
) {
80 inc_err(sp
, NUM_OVER
);
88 if (db_eget(sp
, vp
->m_start
.lno
, &p
, &len
, &isempty
)) {
95 * Skip any leading space before the number. Getting a cursor word
96 * implies moving the cursor to its beginning, if we moved, refresh
99 for (beg
= vp
->m_start
.cno
; beg
< len
&& ISSPACE((UCHAR_T
)p
[beg
]); ++beg
);
102 if (beg
!= vp
->m_start
.cno
) {
104 (void)vs_refresh(sp
, 0);
108 #define isoctal(c) (ISDIGIT(c) && (c) != L('8') && (c) != L('9'))
111 * Look for 0[Xx], or leading + or - signs, guess at the base.
112 * The character after that must be a number. Wlen is set to
113 * the remaining characters in the line that could be part of
117 if (p
[beg
] == L('0') && wlen
> 2 &&
118 (p
[beg
+ 1] == L('X') || p
[beg
+ 1] == L('x'))) {
121 if (!ISXDIGIT((UCHAR_T
)p
[end
]))
123 ntype
= p
[beg
+ 1] == L('X') ? fmt
[HEXC
] : fmt
[HEXL
];
124 } else if (p
[beg
] == L('0') && wlen
> 1) {
127 if (!isoctal((UCHAR_T
)p
[end
]))
130 } else if (wlen
>= 1 && (p
[beg
] == L('+') || p
[beg
] == L('-'))) {
134 if (!ISDIGIT((UCHAR_T
)p
[end
]))
140 if (!ISDIGIT(p
[end
])) {
141 nonum
: msgq(sp
, M_ERR
, "181|Cursor not in a number");
146 /* Find the end of the word, possibly correcting the base. */
147 while (++end
< len
) {
150 if (isoctal((UCHAR_T
)p
[end
]))
152 if (p
[end
] == L('8') || p
[end
] == L('9')) {
159 if (ISDIGIT((UCHAR_T
)p
[end
]))
163 if (ISXDIGIT((UCHAR_T
)p
[end
]))
176 * If the line was at the end of the buffer, we have to copy it
177 * so we can guarantee that it's NULL-terminated. We make the
178 * buffer big enough to fit the line changes as well, and only
181 GET_SPACE_RETW(sp
, bp
, blen
, len
+ 50);
183 MEMMOVEW(bp
, &p
[beg
], wlen
);
190 * Octal or hex deal in unsigned longs, everything else is done
194 if ((nret
= nget_slong(sp
, &lval
, t
, NULL
, 10)) != NUM_OK
)
196 ltmp
= vp
->character
== L('-') ? -change
: change
;
197 if (lval
> 0 && ltmp
> 0 &&
198 !NPFITS(LONG_MAX
, (unsigned long)lval
, (unsigned long)ltmp
)) {
202 if (lval
< 0 && ltmp
< 0 && !NNFITS(LONG_MIN
, lval
, ltmp
)) {
207 /* If we cross 0, signed numbers lose their sign. */
208 if (lval
== 0 && ntype
== fmt
[SDEC
])
210 nlen
= SPRINTF(nbuf
, SIZE(nbuf
), ntype
, lval
);
212 if ((nret
= nget_uslong(sp
, &ulval
, t
, NULL
, base
)) != NUM_OK
)
214 if (vp
->character
== L('+')) {
215 if (!NPFITS(ULONG_MAX
, ulval
, change
)) {
221 if (ulval
< change
) {
228 /* Correct for literal "0[Xx]" in format. */
232 nlen
= SPRINTF(nbuf
, SIZE(nbuf
), ntype
, wlen
, ulval
);
235 /* Build the new line. */
236 MEMMOVEW(bp
, p
, beg
);
237 MEMMOVEW(bp
+ beg
, nbuf
, nlen
);
238 MEMMOVEW(bp
+ beg
+ nlen
, p
+ end
, len
- beg
- (end
- beg
));
239 len
= beg
+ nlen
+ (len
- beg
- (end
- beg
));
242 rval
= db_set(sp
, vp
->m_start
.lno
, bp
, len
);
249 FREE_SPACEW(sp
, bp
, blen
);
254 inc_err(SCR
*sp
, enum nresult nret
)
263 msgq(sp
, M_ERR
, "182|Resulting number too large");
266 msgq(sp
, M_ERR
, "183|Resulting number too small");