blob: 01207d91b3f5ad2e13476317c4e79d3e7caaef39 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9/*
10 * macros.h: macro definitions for often used code
11 */
12
13/*
14 * pchar(lp, c) - put character 'c' at position 'lp'
15 */
16#define pchar(lp, c) (*(ml_get_buf(curbuf, (lp).lnum, TRUE) + (lp).col) = (c))
17
18/*
19 * Position comparisons
20 */
21#ifdef FEAT_VIRTUALEDIT
22# define lt(a, b) (((a).lnum != (b).lnum) \
23 ? (a).lnum < (b).lnum \
24 : (a).col != (b).col \
25 ? (a).col < (b).col \
26 : (a).coladd < (b).coladd)
27# define ltp(a, b) (((a)->lnum != (b)->lnum) \
28 ? (a)->lnum < (b)->lnum \
29 : (a)->col != (b)->col \
30 ? (a)->col < (b)->col \
31 : (a)->coladd < (b)->coladd)
32# define equalpos(a, b) (((a).lnum == (b).lnum) && ((a).col == (b).col) && ((a).coladd == (b).coladd))
Bram Moolenaare1438bb2006-03-01 22:01:55 +000033# define clearpos(a) {(a)->lnum = 0; (a)->col = 0; (a)->coladd = 0;}
Bram Moolenaar071d4272004-06-13 20:20:40 +000034#else
35# define lt(a, b) (((a).lnum != (b).lnum) \
36 ? ((a).lnum < (b).lnum) : ((a).col < (b).col))
37# define ltp(a, b) (((a)->lnum != (b)->lnum) \
38 ? ((a)->lnum < (b)->lnum) : ((a)->col < (b)->col))
39# define equalpos(a, b) (((a).lnum == (b).lnum) && ((a).col == (b).col))
Bram Moolenaare1438bb2006-03-01 22:01:55 +000040# define clearpos(a) {(a)->lnum = 0; (a)->col = 0;}
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#endif
42
43#define ltoreq(a, b) (lt(a, b) || equalpos(a, b))
44
45/*
46 * lineempty() - return TRUE if the line is empty
47 */
48#define lineempty(p) (*ml_get(p) == NUL)
49
50/*
51 * bufempty() - return TRUE if the current buffer is empty
52 */
53#define bufempty() (curbuf->b_ml.ml_line_count == 1 && *ml_get((linenr_T)1) == NUL)
54
55/*
56 * toupper() and tolower() that use the current locale.
Bram Moolenaardeefb632007-08-15 18:41:34 +000057 * On some systems toupper()/tolower() only work on lower/uppercase
58 * characters, first use islower() or isupper() then.
Bram Moolenaar071d4272004-06-13 20:20:40 +000059 * Careful: Only call TOUPPER_LOC() and TOLOWER_LOC() with a character in the
60 * range 0 - 255. toupper()/tolower() on some systems can't handle others.
Bram Moolenaardeefb632007-08-15 18:41:34 +000061 * Note: It is often better to use MB_TOLOWER() and MB_TOUPPER(), because many
62 * toupper() and tolower() implementations only work for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +000063 */
64#ifdef MSWIN
65# define TOUPPER_LOC(c) toupper_tab[(c) & 255]
66# define TOLOWER_LOC(c) tolower_tab[(c) & 255]
67#else
68# ifdef BROKEN_TOUPPER
69# define TOUPPER_LOC(c) (islower(c) ? toupper(c) : (c))
70# define TOLOWER_LOC(c) (isupper(c) ? tolower(c) : (c))
71# else
72# define TOUPPER_LOC toupper
73# define TOLOWER_LOC tolower
74# endif
75#endif
76
77/* toupper() and tolower() for ASCII only and ignore the current locale. */
78#ifdef EBCDIC
79# define TOUPPER_ASC(c) (islower(c) ? toupper(c) : (c))
80# define TOLOWER_ASC(c) (isupper(c) ? tolower(c) : (c))
81#else
82# define TOUPPER_ASC(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) - ('a' - 'A'))
83# define TOLOWER_ASC(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) + ('a' - 'A'))
84#endif
85
86/*
87 * MB_ISLOWER() and MB_ISUPPER() are to be used on multi-byte characters. But
Bram Moolenaar78622822005-08-23 21:00:13 +000088 * don't use them for negative values!
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 */
90#ifdef FEAT_MBYTE
Bram Moolenaar78622822005-08-23 21:00:13 +000091# define MB_ISLOWER(c) vim_islower(c)
92# define MB_ISUPPER(c) vim_isupper(c)
93# define MB_TOLOWER(c) vim_tolower(c)
94# define MB_TOUPPER(c) vim_toupper(c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#else
96# define MB_ISLOWER(c) islower(c)
97# define MB_ISUPPER(c) isupper(c)
98# define MB_TOLOWER(c) TOLOWER_LOC(c)
99# define MB_TOUPPER(c) TOUPPER_LOC(c)
100#endif
101
Bram Moolenaar2d473ab2013-06-12 17:12:24 +0200102/* Use our own isdigit() replacement, because on MS-Windows isdigit() returns
103 * non-zero for superscript 1. Also avoids that isdigit() crashes for numbers
104 * below 0 and above 255. */
105#define VIM_ISDIGIT(c) ((unsigned)(c) - '0' < 10)
106
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107/* Like isalpha() but reject non-ASCII characters. Can't be used with a
108 * special key (negative value). */
109#ifdef EBCDIC
110# define ASCII_ISALPHA(c) isalpha(c)
111# define ASCII_ISALNUM(c) isalnum(c)
112# define ASCII_ISLOWER(c) islower(c)
113# define ASCII_ISUPPER(c) isupper(c)
114#else
Bram Moolenaar0ea4a6b2013-06-12 14:10:26 +0200115# define ASCII_ISLOWER(c) ((unsigned)(c) - 'a' < 26)
116# define ASCII_ISUPPER(c) ((unsigned)(c) - 'A' < 26)
Bram Moolenaar2d473ab2013-06-12 17:12:24 +0200117# define ASCII_ISALPHA(c) (ASCII_ISUPPER(c) || ASCII_ISLOWER(c))
118# define ASCII_ISALNUM(c) (ASCII_ISALPHA(c) || VIM_ISDIGIT(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119#endif
120
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121/* macro version of chartab().
122 * Only works with values 0-255!
123 * Doesn't work for UTF-8 mode with chars >= 0x80. */
124#define CHARSIZE(c) (chartab[c] & CT_CELL_MASK)
125
126#ifdef FEAT_LANGMAP
127/*
128 * Adjust chars in a language according to 'langmap' option.
Bram Moolenaar28e8d272009-02-21 19:28:48 +0000129 * NOTE that there is no noticeable overhead if 'langmap' is not set.
130 * When set the overhead for characters < 256 is small.
Bram Moolenaar4391cf92014-11-05 17:44:52 +0100131 * Don't apply 'langmap' if the character comes from the Stuff buffer or from
132 * a mapping and the langnoremap option was set.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 * The do-while is just to ignore a ';' after the macro.
134 */
Bram Moolenaar28e8d272009-02-21 19:28:48 +0000135# ifdef FEAT_MBYTE
136# define LANGMAP_ADJUST(c, condition) \
137 do { \
Bram Moolenaar4391cf92014-11-05 17:44:52 +0100138 if (*p_langmap \
139 && (condition) \
140 && (!p_lnr || (p_lnr && typebuf_maplen() == 0)) \
141 && !KeyStuffed \
142 && (c) >= 0) \
Bram Moolenaar28e8d272009-02-21 19:28:48 +0000143 { \
144 if ((c) < 256) \
145 c = langmap_mapchar[c]; \
146 else \
147 c = langmap_adjust_mb(c); \
148 } \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 } while (0)
Bram Moolenaar28e8d272009-02-21 19:28:48 +0000150# else
151# define LANGMAP_ADJUST(c, condition) \
152 do { \
Bram Moolenaar4391cf92014-11-05 17:44:52 +0100153 if (*p_langmap \
154 && (condition) \
155 && (!p_lnr || (p_lnr && typebuf_maplen() == 0)) \
156 && !KeyStuffed \
157 && (c) >= 0 && (c) < 256) \
Bram Moolenaar55d5c032010-07-17 23:52:29 +0200158 c = langmap_mapchar[c]; \
Bram Moolenaar28e8d272009-02-21 19:28:48 +0000159 } while (0)
160# endif
161#else
162# define LANGMAP_ADJUST(c, condition) /* nop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163#endif
164
165/*
166 * vim_isbreak() is used very often if 'linebreak' is set, use a macro to make
167 * it work fast.
168 */
169#define vim_isbreak(c) (breakat_flags[(char_u)(c)])
170
171/*
172 * On VMS file names are different and require a translation.
173 * On the Mac open() has only two arguments.
174 */
175#ifdef VMS
176# define mch_access(n, p) access(vms_fixfilename(n), (p))
177 /* see mch_open() comment */
178# define mch_fopen(n, p) fopen(vms_fixfilename(n), (p))
179# define mch_fstat(n, p) fstat(vms_fixfilename(n), (p))
180 /* VMS does not have lstat() */
181# define mch_stat(n, p) stat(vms_fixfilename(n), (p))
182#else
183# ifndef WIN32
184# define mch_access(n, p) access((n), (p))
185# endif
186# if !(defined(FEAT_MBYTE) && defined(WIN3264))
187# define mch_fopen(n, p) fopen((n), (p))
188# endif
189# define mch_fstat(n, p) fstat((n), (p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190# ifdef MSWIN /* has it's own mch_stat() function */
191# define mch_stat(n, p) vim_stat((n), (p))
192# else
193# ifdef STAT_IGNORES_SLASH
194 /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
195 * the name ends in "/" and it's not a directory. */
196# define mch_stat(n, p) (illegal_slash(n) ? -1 : stat((n), (p)))
197# else
198# define mch_stat(n, p) stat((n), (p))
199# endif
200# endif
201#endif
202
Bram Moolenaar269ec652004-07-29 08:43:53 +0000203#ifdef HAVE_LSTAT
204# define mch_lstat(n, p) lstat((n), (p))
205#else
206# define mch_lstat(n, p) mch_stat((n), (p))
207#endif
208
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209#ifdef MACOS_CLASSIC
210/* MacOS classic doesn't support perm but MacOS X does. */
211# define mch_open(n, m, p) open((n), (m))
212#else
213# ifdef VMS
214/*
215 * It is possible to force some record format with:
216 * # define mch_open(n, m, p) open(vms_fixfilename(n), (m), (p)), "rat=cr", "rfm=stmlf", "mrs=0")
Bram Moolenaarff1d0d42007-05-10 17:24:16 +0000217 * but it is not recommended, because it can destroy indexes etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 */
219# define mch_open(n, m, p) open(vms_fixfilename(n), (m), (p))
220# else
221# if !(defined(FEAT_MBYTE) && defined(WIN3264))
222# define mch_open(n, m, p) open((n), (m), (p))
223# endif
224# endif
225#endif
226
227/* mch_open_rw(): invoke mch_open() with third argument for user R/W. */
228#if defined(UNIX) || defined(VMS) /* open in rw------- mode */
229# define mch_open_rw(n, f) mch_open((n), (f), (mode_t)0600)
230#else
231# if defined(MSDOS) || defined(MSWIN) || defined(OS2) /* open read/write */
232# define mch_open_rw(n, f) mch_open((n), (f), S_IREAD | S_IWRITE)
233# else
234# define mch_open_rw(n, f) mch_open((n), (f), 0)
235# endif
236#endif
237
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238#ifdef STARTUPTIME
Bram Moolenaar3f269672009-11-03 11:11:11 +0000239# define TIME_MSG(s) { if (time_fd != NULL) time_msg(s, NULL); }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240#else
241# define TIME_MSG(s)
242#endif
243
244#ifdef FEAT_VREPLACE
245# define REPLACE_NORMAL(s) (((s) & REPLACE_FLAG) && !((s) & VREPLACE_FLAG))
246#else
247# define REPLACE_NORMAL(s) ((s) & REPLACE_FLAG)
248#endif
249
250#ifdef FEAT_ARABIC
251# define UTF_COMPOSINGLIKE(p1, p2) utf_composinglike((p1), (p2))
252#else
253# define UTF_COMPOSINGLIKE(p1, p2) utf_iscomposing(utf_ptr2char(p2))
254#endif
255
256#ifdef FEAT_RIGHTLEFT
257 /* Whether to draw the vertical bar on the right side of the cell. */
258# define CURSOR_BAR_RIGHT (curwin->w_p_rl && (!(State & CMDLINE) || cmdmsg_rl))
259#endif
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000260
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000261/*
262 * mb_ptr_adv(): advance a pointer to the next character, taking care of
263 * multi-byte characters if needed.
264 * mb_ptr_back(): backup a pointer to the previous character, taking care of
265 * multi-byte characters if needed.
Bram Moolenaarfd371682005-01-14 21:42:54 +0000266 * MB_COPY_CHAR(f, t): copy one char from "f" to "t" and advance the pointers.
Bram Moolenaar78984f52005-08-01 07:19:10 +0000267 * PTR2CHAR(): get character from pointer.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000268 */
269#ifdef FEAT_MBYTE
Bram Moolenaar94c465c2012-07-19 17:18:26 +0200270/* Get the length of the character p points to */
271# define MB_PTR2LEN(p) (has_mbyte ? (*mb_ptr2len)(p) : 1)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000272/* Advance multi-byte pointer, skip over composing chars. */
273# define mb_ptr_adv(p) p += has_mbyte ? (*mb_ptr2len)(p) : 1
274/* Advance multi-byte pointer, do not skip over composing chars. */
275# define mb_cptr_adv(p) p += enc_utf8 ? utf_ptr2len(p) : has_mbyte ? (*mb_ptr2len)(p) : 1
Bram Moolenaar24dc2302014-05-13 20:19:58 +0200276/* Backup multi-byte pointer. Only use with "p" > "s" ! */
Bram Moolenaare6b165e2005-06-30 21:56:01 +0000277# define mb_ptr_back(s, p) p -= has_mbyte ? ((*mb_head_off)(s, p - 1) + 1) : 1
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000278/* get length of multi-byte char, not including composing chars */
279# define mb_cptr2len(p) (enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p))
280
Bram Moolenaarfd371682005-01-14 21:42:54 +0000281# define MB_COPY_CHAR(f, t) if (has_mbyte) mb_copy_char(&f, &t); else *t++ = *f++
Bram Moolenaar2c4278f2009-05-17 11:33:22 +0000282# define MB_CHARLEN(p) (has_mbyte ? mb_charlen(p) : (int)STRLEN(p))
Bram Moolenaar473de612013-06-08 18:19:48 +0200283# define MB_CHAR2LEN(c) (has_mbyte ? mb_char2len(c) : 1)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000284# define PTR2CHAR(p) (has_mbyte ? mb_ptr2char(p) : (int)*(p))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000285#else
Bram Moolenaar94c465c2012-07-19 17:18:26 +0200286# define MB_PTR2LEN(p) 1
Bram Moolenaar78984f52005-08-01 07:19:10 +0000287# define mb_ptr_adv(p) ++p
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000288# define mb_cptr_adv(p) ++p
Bram Moolenaar78984f52005-08-01 07:19:10 +0000289# define mb_ptr_back(s, p) --p
290# define MB_COPY_CHAR(f, t) *t++ = *f++
291# define MB_CHARLEN(p) STRLEN(p)
Bram Moolenaar473de612013-06-08 18:19:48 +0200292# define MB_CHAR2LEN(c) 1
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000293# define PTR2CHAR(p) ((int)*(p))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000294#endif
Bram Moolenaar498efdb2006-09-05 14:31:54 +0000295
296#ifdef FEAT_AUTOCHDIR
297# define DO_AUTOCHDIR if (p_acd) do_autochdir();
298#else
299# define DO_AUTOCHDIR
300#endif
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200301
302#if defined(FEAT_SCROLLBIND) && defined(FEAT_CURSORBIND)
303# define RESET_BINDING(wp) (wp)->w_p_scb = FALSE; (wp)->w_p_crb = FALSE
304#else
305# if defined(FEAT_SCROLLBIND)
306# define RESET_BINDING(wp) (wp)->w_p_scb = FALSE
307# else
308# if defined(FEAT_CURSORBIND)
309# define RESET_BINDING(wp) (wp)->w_p_crb = FALSE
310# else
311# define RESET_BINDING(wp)
312# endif
313# endif
314#endif