Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Rob Landley |
Denis Vlasenko | d18f52b | 2008-03-02 12:53:15 +0000 | [diff] [blame] | 7 | * Copyright (C) 2006 Denys Vlasenko |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 8 | * |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 9 | * Licensed under GPL version 2, see file LICENSE in this tarball for details. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 12 | /* We need to have separate xfuncs.c and xfuncs_printf.c because |
| 13 | * with current linkers, even with section garbage collection, |
| 14 | * if *.o module references any of XXXprintf functions, you pull in |
| 15 | * entire printf machinery. Even if you do not use the function |
| 16 | * which uses XXXprintf. |
| 17 | * |
| 18 | * xfuncs.c contains functions (not necessarily xfuncs) |
| 19 | * which do not pull in printf, directly or indirectly. |
| 20 | * xfunc_printf.c contains those which do. |
| 21 | * |
| 22 | * TODO: move xmalloc() and xatonum() here. |
| 23 | */ |
| 24 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 25 | #include "libbb.h" |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 26 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 27 | /* Turn on nonblocking I/O on a fd */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 28 | int FAST_FUNC ndelay_on(int fd) |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 29 | { |
Denis Vlasenko | d37f222 | 2007-08-19 13:42:08 +0000 | [diff] [blame] | 30 | return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) | O_NONBLOCK); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 31 | } |
| 32 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 33 | int FAST_FUNC ndelay_off(int fd) |
Denis Vlasenko | a5b3e76 | 2006-12-24 07:15:50 +0000 | [diff] [blame] | 34 | { |
Denis Vlasenko | d37f222 | 2007-08-19 13:42:08 +0000 | [diff] [blame] | 35 | return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) & ~O_NONBLOCK); |
Denis Vlasenko | a5b3e76 | 2006-12-24 07:15:50 +0000 | [diff] [blame] | 36 | } |
| 37 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 38 | int FAST_FUNC close_on_exec_on(int fd) |
Denis Vlasenko | a27a11b | 2007-08-18 14:16:39 +0000 | [diff] [blame] | 39 | { |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 40 | return fcntl(fd, F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | a27a11b | 2007-08-18 14:16:39 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Denis Vlasenko | 360d966 | 2008-12-02 18:18:50 +0000 | [diff] [blame] | 43 | char* FAST_FUNC strncpy_IFNAMSIZ(char *dst, const char *src) |
| 44 | { |
| 45 | #ifndef IFNAMSIZ |
| 46 | enum { IFNAMSIZ = 16 }; |
| 47 | #endif |
| 48 | return strncpy(dst, src, IFNAMSIZ); |
| 49 | } |
| 50 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 51 | /* Convert unsigned long long value into compact 4-char |
Denis Vlasenko | 56ea65c | 2008-01-06 03:26:53 +0000 | [diff] [blame] | 52 | * representation. Examples: "1234", "1.2k", " 27M", "123T" |
| 53 | * String is not terminated (buf[4] is untouched) */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 54 | void FAST_FUNC smart_ulltoa4(unsigned long long ul, char buf[5], const char *scale) |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 55 | { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 56 | const char *fmt; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 57 | char c; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 58 | unsigned v, u, idx = 0; |
| 59 | |
| 60 | if (ul > 9999) { // do not scale if 9999 or less |
| 61 | ul *= 10; |
| 62 | do { |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 63 | ul /= 1024; |
| 64 | idx++; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 65 | } while (ul >= 10000); |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 66 | } |
| 67 | v = ul; // ullong divisions are expensive, avoid them |
| 68 | |
| 69 | fmt = " 123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 70 | u = v / 10; |
| 71 | v = v % 10; |
| 72 | if (!idx) { |
| 73 | // 9999 or less: use "1234" format |
| 74 | // u is value/10, v is last digit |
| 75 | c = buf[0] = " 123456789"[u/100]; |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 76 | if (c != ' ') fmt = "0123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 77 | c = buf[1] = fmt[u/10%10]; |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 78 | if (c != ' ') fmt = "0123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 79 | buf[2] = fmt[u%10]; |
| 80 | buf[3] = "0123456789"[v]; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 81 | } else { |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 82 | // u is value, v is 1/10ths (allows for 9.2M format) |
| 83 | if (u >= 10) { |
| 84 | // value is >= 10: use "123M', " 12M" formats |
| 85 | c = buf[0] = " 123456789"[u/100]; |
Denis Vlasenko | 1b6fa4c | 2007-03-24 12:08:36 +0000 | [diff] [blame] | 86 | if (c != ' ') fmt = "0123456789"; |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 87 | v = u % 10; |
| 88 | u = u / 10; |
| 89 | buf[1] = fmt[u%10]; |
| 90 | } else { |
| 91 | // value is < 10: use "9.2M" format |
| 92 | buf[0] = "0123456789"[u]; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 93 | buf[1] = '.'; |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 94 | } |
Denis Vlasenko | b308d81 | 2007-08-28 19:35:34 +0000 | [diff] [blame] | 95 | buf[2] = "0123456789"[v]; |
Denis Vlasenko | 56ea65c | 2008-01-06 03:26:53 +0000 | [diff] [blame] | 96 | buf[3] = scale[idx]; /* typically scale = " kmgt..." */ |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 97 | } |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 100 | /* Convert unsigned long long value into compact 5-char representation. |
Denis Vlasenko | 56ea65c | 2008-01-06 03:26:53 +0000 | [diff] [blame] | 101 | * String is not terminated (buf[5] is untouched) */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 102 | void FAST_FUNC smart_ulltoa5(unsigned long long ul, char buf[6], const char *scale) |
Denis Vlasenko | 56ea65c | 2008-01-06 03:26:53 +0000 | [diff] [blame] | 103 | { |
| 104 | const char *fmt; |
| 105 | char c; |
| 106 | unsigned v, u, idx = 0; |
| 107 | |
| 108 | if (ul > 99999) { // do not scale if 99999 or less |
| 109 | ul *= 10; |
| 110 | do { |
| 111 | ul /= 1024; |
| 112 | idx++; |
| 113 | } while (ul >= 100000); |
| 114 | } |
| 115 | v = ul; // ullong divisions are expensive, avoid them |
| 116 | |
| 117 | fmt = " 123456789"; |
| 118 | u = v / 10; |
| 119 | v = v % 10; |
| 120 | if (!idx) { |
| 121 | // 99999 or less: use "12345" format |
| 122 | // u is value/10, v is last digit |
| 123 | c = buf[0] = " 123456789"[u/1000]; |
| 124 | if (c != ' ') fmt = "0123456789"; |
| 125 | c = buf[1] = fmt[u/100%10]; |
| 126 | if (c != ' ') fmt = "0123456789"; |
| 127 | c = buf[2] = fmt[u/10%10]; |
| 128 | if (c != ' ') fmt = "0123456789"; |
| 129 | buf[3] = fmt[u%10]; |
| 130 | buf[4] = "0123456789"[v]; |
| 131 | } else { |
| 132 | // value has been scaled into 0..9999.9 range |
| 133 | // u is value, v is 1/10ths (allows for 92.1M format) |
| 134 | if (u >= 100) { |
| 135 | // value is >= 100: use "1234M', " 123M" formats |
| 136 | c = buf[0] = " 123456789"[u/1000]; |
| 137 | if (c != ' ') fmt = "0123456789"; |
| 138 | c = buf[1] = fmt[u/100%10]; |
| 139 | if (c != ' ') fmt = "0123456789"; |
| 140 | v = u % 10; |
| 141 | u = u / 10; |
| 142 | buf[2] = fmt[u%10]; |
| 143 | } else { |
| 144 | // value is < 100: use "92.1M" format |
| 145 | c = buf[0] = " 123456789"[u/10]; |
| 146 | if (c != ' ') fmt = "0123456789"; |
| 147 | buf[1] = fmt[u%10]; |
| 148 | buf[2] = '.'; |
| 149 | } |
| 150 | buf[3] = "0123456789"[v]; |
| 151 | buf[4] = scale[idx]; /* typically scale = " kmgt..." */ |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | |
Denis Vlasenko | 450196c | 2007-03-28 21:57:12 +0000 | [diff] [blame] | 156 | // Convert unsigned integer to ascii, writing into supplied buffer. |
| 157 | // A truncated result contains the first few digits of the result ala strncpy. |
| 158 | // Returns a pointer past last generated digit, does _not_ store NUL. |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 159 | void BUG_sizeof_unsigned_not_4(void); |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 160 | char* FAST_FUNC utoa_to_buf(unsigned n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 161 | { |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 162 | unsigned i, out, res; |
| 163 | if (sizeof(unsigned) != 4) |
| 164 | BUG_sizeof_unsigned_not_4(); |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 165 | if (buflen) { |
Denis Vlasenko | aae0311 | 2006-11-05 00:44:39 +0000 | [diff] [blame] | 166 | out = 0; |
| 167 | for (i = 1000000000; i; i /= 10) { |
| 168 | res = n / i; |
| 169 | if (res || out || i == 1) { |
| 170 | if (!--buflen) break; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 171 | out++; |
| 172 | n -= res*i; |
| 173 | *buf++ = '0' + res; |
| 174 | } |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 175 | } |
| 176 | } |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 177 | return buf; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 180 | /* Convert signed integer to ascii, like utoa_to_buf() */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 181 | char* FAST_FUNC itoa_to_buf(int n, char *buf, unsigned buflen) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 182 | { |
Denis Vlasenko | 6c10657 | 2008-04-19 19:05:12 +0000 | [diff] [blame] | 183 | if (buflen && n < 0) { |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 184 | n = -n; |
| 185 | *buf++ = '-'; |
Rob Landley | 22d3958 | 2006-07-11 00:44:36 +0000 | [diff] [blame] | 186 | buflen--; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 187 | } |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 188 | return utoa_to_buf((unsigned)n, buf, buflen); |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 191 | // The following two functions use a static buffer, so calling either one a |
| 192 | // second time will overwrite previous results. |
| 193 | // |
| 194 | // The largest 32 bit integer is -2 billion plus null terminator, or 12 bytes. |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 195 | // It so happens that sizeof(int) * 3 is enough for 32+ bits. |
| 196 | // (sizeof(int) * 3 + 2 is correct for any width, even 8-bit) |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 197 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 198 | static char local_buf[sizeof(int) * 3]; |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 199 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 200 | // Convert unsigned integer to ascii using a static buffer (returned). |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 201 | char* FAST_FUNC utoa(unsigned n) |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 202 | { |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 203 | *(utoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0'; |
Rob Landley | 23b61be | 2006-08-04 20:20:03 +0000 | [diff] [blame] | 204 | |
| 205 | return local_buf; |
| 206 | } |
| 207 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 208 | /* Convert signed integer to ascii using a static buffer (returned). */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 209 | char* FAST_FUNC itoa(int n) |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 210 | { |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 211 | *(itoa_to_buf(n, local_buf, sizeof(local_buf))) = '\0'; |
Rob Landley | 5b88a38 | 2006-07-10 07:41:34 +0000 | [diff] [blame] | 212 | |
| 213 | return local_buf; |
| 214 | } |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 215 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 216 | /* Emit a string of hex representation of bytes */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 217 | char* FAST_FUNC bin2hex(char *p, const char *cp, int count) |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 218 | { |
| 219 | while (count) { |
| 220 | unsigned char c = *cp++; |
| 221 | /* put lowercase hex digits */ |
Denis Vlasenko | 98c0bba | 2007-01-26 23:31:05 +0000 | [diff] [blame] | 222 | *p++ = 0x20 | bb_hexdigits_upcase[c >> 4]; |
| 223 | *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf]; |
Denis Vlasenko | 3a34d0c | 2007-01-12 22:10:34 +0000 | [diff] [blame] | 224 | count--; |
| 225 | } |
| 226 | return p; |
| 227 | } |
| 228 | |
Denis Vlasenko | b12b1c8 | 2008-04-09 00:33:23 +0000 | [diff] [blame] | 229 | /* Return how long the file at fd is, if there's any way to determine it. */ |
Denis Vlasenko | b5c60fc | 2008-01-27 23:41:34 +0000 | [diff] [blame] | 230 | #ifdef UNUSED |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 231 | off_t FAST_FUNC fdlength(int fd) |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 232 | { |
| 233 | off_t bottom = 0, top = 0, pos; |
| 234 | long size; |
| 235 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 236 | // If the ioctl works for this, return it. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 237 | |
| 238 | if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512; |
| 239 | |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 240 | // FIXME: explain why lseek(SEEK_END) is not used here! |
| 241 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 242 | // If not, do a binary search for the last location we can read. (Some |
| 243 | // block devices don't do BLKGETSIZE right.) |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 244 | |
| 245 | do { |
| 246 | char temp; |
| 247 | |
Denis Vlasenko | d25a264 | 2006-09-05 09:36:19 +0000 | [diff] [blame] | 248 | pos = bottom + (top - bottom) / 2; |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 249 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 250 | // If we can read from the current location, it's bigger. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 251 | |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 252 | if (lseek(fd, pos, SEEK_SET)>=0 && safe_read(fd, &temp, 1)==1) { |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 253 | if (bottom == top) bottom = top = (top+1) * 2; |
| 254 | else bottom = pos; |
| 255 | |
Rob Landley | da9d1d0 | 2006-09-14 19:52:07 +0000 | [diff] [blame] | 256 | // If we can't, it's smaller. |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 257 | |
| 258 | } else { |
| 259 | if (bottom == top) { |
| 260 | if (!top) return 0; |
| 261 | bottom = top/2; |
| 262 | } |
| 263 | else top = pos; |
| 264 | } |
| 265 | } while (bottom + 1 != top); |
| 266 | |
| 267 | return pos + 1; |
| 268 | } |
Denis Vlasenko | b5c60fc | 2008-01-27 23:41:34 +0000 | [diff] [blame] | 269 | #endif |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 270 | |
Denis Vlasenko | 4e12b1a | 2008-12-23 23:36:47 +0000 | [diff] [blame] | 271 | char* FAST_FUNC xmalloc_ttyname(int fd) |
| 272 | { |
| 273 | char *buf = xzalloc(128); |
| 274 | int r = ttyname_r(fd, buf, 127); |
| 275 | if (r) { |
| 276 | free(buf); |
| 277 | buf = NULL; |
| 278 | } |
| 279 | return buf; |
| 280 | } |
| 281 | |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 282 | /* It is perfectly ok to pass in a NULL for either width or for |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 283 | * height, in which case that value will not be set. */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 284 | int FAST_FUNC get_terminal_width_height(int fd, unsigned *width, unsigned *height) |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 285 | { |
| 286 | struct winsize win = { 0, 0, 0, 0 }; |
| 287 | int ret = ioctl(fd, TIOCGWINSZ, &win); |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 288 | |
| 289 | if (height) { |
| 290 | if (!win.ws_row) { |
| 291 | char *s = getenv("LINES"); |
| 292 | if (s) win.ws_row = atoi(s); |
| 293 | } |
| 294 | if (win.ws_row <= 1 || win.ws_row >= 30000) |
| 295 | win.ws_row = 24; |
| 296 | *height = (int) win.ws_row; |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 297 | } |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 298 | |
| 299 | if (width) { |
| 300 | if (!win.ws_col) { |
| 301 | char *s = getenv("COLUMNS"); |
| 302 | if (s) win.ws_col = atoi(s); |
| 303 | } |
| 304 | if (win.ws_col <= 1 || win.ws_col >= 30000) |
| 305 | win.ws_col = 80; |
| 306 | *width = (int) win.ws_col; |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 307 | } |
Rob Landley | fbdf121 | 2006-09-20 22:06:01 +0000 | [diff] [blame] | 308 | |
| 309 | return ret; |
| 310 | } |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 311 | |
| 312 | int FAST_FUNC tcsetattr_stdin_TCSANOW(const struct termios *tp) |
| 313 | { |
| 314 | return tcsetattr(STDIN_FILENO, TCSANOW, tp); |
| 315 | } |