[7d4fbcd] | 1 | #include "owl.h" |
---|
| 2 | #include <stdlib.h> |
---|
| 3 | #include <string.h> |
---|
[5145235] | 4 | #include <unistd.h> |
---|
[7d4fbcd] | 5 | #include <ctype.h> |
---|
[f36222f] | 6 | #include <pwd.h> |
---|
[7d4fbcd] | 7 | |
---|
[1aee7d9] | 8 | static const char fileIdent[] = "$Id$"; |
---|
| 9 | |
---|
[e4eebe8] | 10 | void sepbar(char *in) |
---|
| 11 | { |
---|
[7d4fbcd] | 12 | char buff[1024]; |
---|
| 13 | WINDOW *sepwin; |
---|
| 14 | owl_messagelist *ml; |
---|
| 15 | owl_view *v; |
---|
| 16 | int x, y, i; |
---|
| 17 | char *foo, *appendtosepbar; |
---|
| 18 | |
---|
| 19 | sepwin=owl_global_get_curs_sepwin(&g); |
---|
| 20 | ml=owl_global_get_msglist(&g); |
---|
| 21 | v=owl_global_get_current_view(&g); |
---|
| 22 | |
---|
| 23 | werase(sepwin); |
---|
| 24 | wattron(sepwin, A_REVERSE); |
---|
[c15bbfb] | 25 | if (owl_global_is_fancylines(&g)) { |
---|
| 26 | whline(sepwin, ACS_HLINE, owl_global_get_cols(&g)); |
---|
| 27 | } else { |
---|
| 28 | whline(sepwin, '-', owl_global_get_cols(&g)); |
---|
| 29 | } |
---|
[7d4fbcd] | 30 | |
---|
[73624b4] | 31 | if (owl_global_is_sepbar_disable(&g)) { |
---|
| 32 | getyx(sepwin, y, x); |
---|
| 33 | wmove(sepwin, y, owl_global_get_cols(&g)-1); |
---|
| 34 | return; |
---|
| 35 | } |
---|
| 36 | |
---|
[7d4fbcd] | 37 | wmove(sepwin, 0, 2); |
---|
| 38 | |
---|
| 39 | if (owl_messagelist_get_size(ml)==0) { |
---|
| 40 | strcpy(buff, " (-/-) "); |
---|
| 41 | } else { |
---|
[1c6c4d3] | 42 | snprintf(buff, 1024, " (%i/%i/%i) ", owl_global_get_curmsg(&g)+1, |
---|
[7d4fbcd] | 43 | owl_view_get_size(v), |
---|
| 44 | owl_messagelist_get_size(ml)); |
---|
| 45 | } |
---|
| 46 | waddstr(sepwin, buff); |
---|
| 47 | |
---|
| 48 | foo=owl_view_get_filtname(v); |
---|
[330bcec] | 49 | if (strcmp(foo, owl_global_get_view_home(&g))) wattroff(sepwin, A_REVERSE); |
---|
[7d4fbcd] | 50 | waddstr(sepwin, " "); |
---|
| 51 | waddstr(sepwin, owl_view_get_filtname(v)); |
---|
| 52 | waddstr(sepwin, " "); |
---|
[330bcec] | 53 | if (strcmp(foo, owl_global_get_view_home(&g))) wattron(sepwin, A_REVERSE); |
---|
[7d4fbcd] | 54 | |
---|
| 55 | if (owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) { |
---|
| 56 | getyx(sepwin, y, x); |
---|
| 57 | wmove(sepwin, y, x+2); |
---|
| 58 | wattron(sepwin, A_BOLD); |
---|
| 59 | waddstr(sepwin, " <truncated> "); |
---|
| 60 | wattroff(sepwin, A_BOLD); |
---|
| 61 | } |
---|
| 62 | |
---|
| 63 | i=owl_mainwin_get_last_msg(owl_global_get_mainwin(&g)); |
---|
| 64 | if ((i != -1) && |
---|
| 65 | (i < owl_view_get_size(v)-1)) { |
---|
| 66 | getyx(sepwin, y, x); |
---|
| 67 | wmove(sepwin, y, x+2); |
---|
| 68 | wattron(sepwin, A_BOLD); |
---|
| 69 | waddstr(sepwin, " <more> "); |
---|
| 70 | wattroff(sepwin, A_BOLD); |
---|
| 71 | } |
---|
| 72 | |
---|
| 73 | if (owl_global_get_rightshift(&g)>0) { |
---|
| 74 | getyx(sepwin, y, x); |
---|
| 75 | wmove(sepwin, y, x+2); |
---|
[1c6c4d3] | 76 | snprintf(buff, 1024, " right: %i ", owl_global_get_rightshift(&g)); |
---|
[7d4fbcd] | 77 | waddstr(sepwin, buff); |
---|
| 78 | } |
---|
| 79 | |
---|
[4b660cc] | 80 | if (owl_global_is_zaway(&g) || owl_global_is_aaway(&g)) { |
---|
[7d4fbcd] | 81 | getyx(sepwin, y, x); |
---|
| 82 | wmove(sepwin, y, x+2); |
---|
| 83 | wattron(sepwin, A_BOLD); |
---|
| 84 | wattroff(sepwin, A_REVERSE); |
---|
[4b660cc] | 85 | if (owl_global_is_zaway(&g) && owl_global_is_aaway(&g)) { |
---|
| 86 | waddstr(sepwin, " AWAY "); |
---|
| 87 | } else if (owl_global_is_zaway(&g)) { |
---|
| 88 | waddstr(sepwin, " Z-AWAY "); |
---|
| 89 | } else if (owl_global_is_aaway(&g)) { |
---|
| 90 | waddstr(sepwin, " A-AWAY "); |
---|
| 91 | } |
---|
[7d4fbcd] | 92 | wattron(sepwin, A_REVERSE); |
---|
| 93 | wattroff(sepwin, A_BOLD); |
---|
| 94 | } |
---|
| 95 | |
---|
| 96 | if (owl_global_get_curmsg_vert_offset(&g)) { |
---|
| 97 | getyx(sepwin, y, x); |
---|
| 98 | wmove(sepwin, y, x+2); |
---|
| 99 | wattron(sepwin, A_BOLD); |
---|
| 100 | wattroff(sepwin, A_REVERSE); |
---|
| 101 | waddstr(sepwin, " SCROLL "); |
---|
| 102 | wattron(sepwin, A_REVERSE); |
---|
| 103 | wattroff(sepwin, A_BOLD); |
---|
| 104 | } |
---|
| 105 | |
---|
| 106 | if (in) { |
---|
| 107 | getyx(sepwin, y, x); |
---|
| 108 | wmove(sepwin, y, x+2); |
---|
| 109 | waddstr(sepwin, in); |
---|
| 110 | } |
---|
| 111 | |
---|
| 112 | appendtosepbar = owl_global_get_appendtosepbar(&g); |
---|
| 113 | if (appendtosepbar && *appendtosepbar) { |
---|
| 114 | getyx(sepwin, y, x); |
---|
| 115 | wmove(sepwin, y, x+2); |
---|
| 116 | waddstr(sepwin, " "); |
---|
| 117 | waddstr(sepwin, owl_global_get_appendtosepbar(&g)); |
---|
| 118 | waddstr(sepwin, " "); |
---|
| 119 | } |
---|
| 120 | |
---|
| 121 | getyx(sepwin, y, x); |
---|
| 122 | wmove(sepwin, y, owl_global_get_cols(&g)-1); |
---|
| 123 | |
---|
| 124 | wattroff(sepwin, A_BOLD); |
---|
| 125 | wattroff(sepwin, A_REVERSE); |
---|
| 126 | wnoutrefresh(sepwin); |
---|
| 127 | } |
---|
| 128 | |
---|
| 129 | |
---|
[e4eebe8] | 130 | void pophandler_quit(int ch) |
---|
| 131 | { |
---|
[7d4fbcd] | 132 | if (ch=='q') { |
---|
| 133 | owl_popwin_close(owl_global_get_popwin(&g)); |
---|
| 134 | } |
---|
| 135 | } |
---|
| 136 | |
---|
[e4eebe8] | 137 | char **atokenize(char *buffer, char *sep, int *i) |
---|
| 138 | { |
---|
[7d4fbcd] | 139 | /* each element of return must be freed by user */ |
---|
| 140 | char **args; |
---|
| 141 | char *workbuff, *foo; |
---|
| 142 | int done=0, first=1, count=0; |
---|
| 143 | |
---|
| 144 | workbuff=owl_malloc(strlen(buffer)+1); |
---|
| 145 | memcpy(workbuff, buffer, strlen(buffer)+1); |
---|
| 146 | |
---|
| 147 | args=NULL; |
---|
| 148 | while (!done) { |
---|
| 149 | if (first) { |
---|
| 150 | first=0; |
---|
| 151 | foo=(char *)strtok(workbuff, sep); |
---|
| 152 | } else { |
---|
| 153 | foo=(char *)strtok(NULL, sep); |
---|
| 154 | } |
---|
| 155 | if (foo==NULL) { |
---|
| 156 | done=1; |
---|
| 157 | } else { |
---|
| 158 | args=(char **)owl_realloc(args, sizeof(char *) * (count+1)); |
---|
| 159 | args[count]=owl_malloc(strlen(foo)+1); |
---|
| 160 | strcpy(args[count], foo); |
---|
| 161 | count++; |
---|
| 162 | } |
---|
| 163 | } |
---|
| 164 | *i=count; |
---|
| 165 | owl_free(workbuff); |
---|
| 166 | return(args); |
---|
| 167 | } |
---|
| 168 | |
---|
| 169 | char *skiptokens(char *buff, int n) { |
---|
[42abb10] | 170 | /* skips n tokens and returns where that would be. |
---|
| 171 | * TODO: handle quotes more sanely. */ |
---|
| 172 | |
---|
[7d4fbcd] | 173 | int inquotes=0; |
---|
| 174 | while (*buff && n>0) { |
---|
| 175 | while (*buff == ' ') buff++; |
---|
| 176 | while (*buff && (inquotes || *buff != ' ')) { |
---|
[e1c4636] | 177 | if (*buff == '"' || *buff == '\'') inquotes=!inquotes; |
---|
[7d4fbcd] | 178 | buff++; |
---|
| 179 | } |
---|
| 180 | while (*buff == ' ') buff++; |
---|
| 181 | n--; |
---|
| 182 | } |
---|
| 183 | return buff; |
---|
| 184 | } |
---|
| 185 | |
---|
[f36222f] | 186 | /* Return a "nice" version of the path. Tilde expansion is done, and |
---|
| 187 | * duplicate slashes are removed. Caller must free the return. |
---|
| 188 | */ |
---|
| 189 | char *owl_util_makepath(char *in) |
---|
| 190 | { |
---|
| 191 | int i, j, x; |
---|
| 192 | char *out, user[MAXPATHLEN]; |
---|
| 193 | struct passwd *pw; |
---|
| 194 | |
---|
| 195 | out=owl_malloc(MAXPATHLEN+1); |
---|
| 196 | out[0]='\0'; |
---|
| 197 | j=strlen(in); |
---|
| 198 | x=0; |
---|
| 199 | for (i=0; i<j; i++) { |
---|
| 200 | if (in[i]=='~') { |
---|
| 201 | if ( (i==(j-1)) || /* last character */ |
---|
| 202 | (in[i+1]=='/') ) { /* ~/ */ |
---|
| 203 | /* use my homedir */ |
---|
| 204 | pw=getpwuid(getuid()); |
---|
| 205 | if (!pw) { |
---|
| 206 | out[x]=in[i]; |
---|
| 207 | } else { |
---|
| 208 | out[x]='\0'; |
---|
| 209 | strcat(out, pw->pw_dir); |
---|
| 210 | x+=strlen(pw->pw_dir); |
---|
| 211 | } |
---|
| 212 | } else { |
---|
| 213 | /* another user homedir */ |
---|
| 214 | int a, b; |
---|
| 215 | b=0; |
---|
| 216 | for (a=i+1; i<j; a++) { |
---|
| 217 | if (in[a]==' ' || in[a]=='/') { |
---|
| 218 | break; |
---|
| 219 | } else { |
---|
| 220 | user[b]=in[a]; |
---|
| 221 | i++; |
---|
| 222 | b++; |
---|
| 223 | } |
---|
| 224 | } |
---|
| 225 | user[b]='\0'; |
---|
| 226 | pw=getpwnam(user); |
---|
| 227 | if (!pw) { |
---|
[8766d44] | 228 | out[x]=in[i]; |
---|
[f36222f] | 229 | } else { |
---|
| 230 | out[x]='\0'; |
---|
| 231 | strcat(out, pw->pw_dir); |
---|
| 232 | x+=strlen(pw->pw_dir); |
---|
| 233 | } |
---|
| 234 | } |
---|
| 235 | } else if (in[i]=='/') { |
---|
| 236 | /* check for a double / */ |
---|
| 237 | if (i<(j-1) && (in[i+1]=='/')) { |
---|
| 238 | /* do nothing */ |
---|
| 239 | } else { |
---|
| 240 | out[x]=in[i]; |
---|
| 241 | x++; |
---|
| 242 | } |
---|
| 243 | } else { |
---|
| 244 | out[x]=in[i]; |
---|
| 245 | x++; |
---|
| 246 | } |
---|
| 247 | } |
---|
| 248 | out[x]='\0'; |
---|
| 249 | return(out); |
---|
| 250 | } |
---|
| 251 | |
---|
[e4eebe8] | 252 | void atokenize_free(char **tok, int nels) |
---|
| 253 | { |
---|
[7d4fbcd] | 254 | int i; |
---|
| 255 | for (i=0; i<nels; i++) { |
---|
| 256 | owl_free(tok[i]); |
---|
| 257 | } |
---|
| 258 | owl_free(tok); |
---|
| 259 | } |
---|
| 260 | |
---|
| 261 | |
---|
[e4eebe8] | 262 | void owl_parsefree(char **argv, int argc) |
---|
| 263 | { |
---|
[7d4fbcd] | 264 | int i; |
---|
| 265 | |
---|
| 266 | if (!argv) return; |
---|
| 267 | |
---|
| 268 | for (i=0; i<argc; i++) { |
---|
| 269 | if (argv[i]) owl_free(argv[i]); |
---|
| 270 | } |
---|
| 271 | owl_free(argv); |
---|
| 272 | } |
---|
| 273 | |
---|
[e4eebe8] | 274 | char **owl_parseline(char *line, int *argc) |
---|
| 275 | { |
---|
[7d4fbcd] | 276 | /* break a command line up into argv, argc. The caller must free |
---|
| 277 | the returned values. If there is an error argc will be set to |
---|
| 278 | -1, argv will be NULL and the caller does not need to free |
---|
| 279 | anything */ |
---|
| 280 | |
---|
| 281 | char **argv; |
---|
| 282 | int i, len, between=1; |
---|
| 283 | char *curarg; |
---|
| 284 | char quote; |
---|
| 285 | |
---|
| 286 | argv=owl_malloc(sizeof(char *)); |
---|
| 287 | len=strlen(line); |
---|
| 288 | curarg=owl_malloc(len+10); |
---|
| 289 | strcpy(curarg, ""); |
---|
| 290 | quote='\0'; |
---|
| 291 | *argc=0; |
---|
| 292 | for (i=0; i<len+1; i++) { |
---|
| 293 | /* find the first real character */ |
---|
| 294 | if (between) { |
---|
| 295 | if (line[i]==' ' || line[i]=='\t' || line[i]=='\0') { |
---|
| 296 | continue; |
---|
| 297 | } else { |
---|
| 298 | between=0; |
---|
| 299 | i--; |
---|
| 300 | continue; |
---|
| 301 | } |
---|
| 302 | } |
---|
| 303 | |
---|
| 304 | /* deal with a quote character */ |
---|
| 305 | if (line[i]=='"' || line[i]=="'"[0]) { |
---|
| 306 | /* if this type of quote is open, close it */ |
---|
| 307 | if (quote==line[i]) { |
---|
| 308 | quote='\0'; |
---|
| 309 | continue; |
---|
| 310 | } |
---|
| 311 | |
---|
| 312 | /* if no quoting is open then open with this */ |
---|
| 313 | if (quote=='\0') { |
---|
| 314 | quote=line[i]; |
---|
| 315 | continue; |
---|
| 316 | } |
---|
| 317 | |
---|
| 318 | /* if another type of quote is open then treat this as a literal */ |
---|
| 319 | curarg[strlen(curarg)+1]='\0'; |
---|
| 320 | curarg[strlen(curarg)]=line[i]; |
---|
| 321 | continue; |
---|
| 322 | } |
---|
| 323 | |
---|
| 324 | /* if it's not a space or end of command, then use it */ |
---|
| 325 | if (line[i]!=' ' && line[i]!='\t' && line[i]!='\n' && line[i]!='\0') { |
---|
| 326 | curarg[strlen(curarg)+1]='\0'; |
---|
| 327 | curarg[strlen(curarg)]=line[i]; |
---|
| 328 | continue; |
---|
| 329 | } |
---|
| 330 | |
---|
| 331 | /* otherwise, if we're not in quotes, add the whole argument */ |
---|
| 332 | if (quote=='\0') { |
---|
| 333 | /* add the argument */ |
---|
| 334 | argv=owl_realloc(argv, sizeof(char *)*((*argc)+1)); |
---|
| 335 | argv[*argc]=owl_malloc(strlen(curarg)+2); |
---|
| 336 | strcpy(argv[*argc], curarg); |
---|
| 337 | *argc=*argc+1; |
---|
| 338 | strcpy(curarg, ""); |
---|
| 339 | between=1; |
---|
| 340 | continue; |
---|
| 341 | } |
---|
| 342 | |
---|
| 343 | /* if it is a space and we're in quotes, then use it */ |
---|
| 344 | curarg[strlen(curarg)+1]='\0'; |
---|
| 345 | curarg[strlen(curarg)]=line[i]; |
---|
| 346 | } |
---|
| 347 | |
---|
[d524c83] | 348 | owl_free(curarg); |
---|
[95caa16] | 349 | |
---|
[7d4fbcd] | 350 | /* check for unbalanced quotes */ |
---|
| 351 | if (quote!='\0') { |
---|
| 352 | owl_parsefree(argv, *argc); |
---|
| 353 | *argc=-1; |
---|
| 354 | return(NULL); |
---|
| 355 | } |
---|
| 356 | |
---|
| 357 | return(argv); |
---|
| 358 | } |
---|
| 359 | |
---|
[de03334] | 360 | /* caller must free the return */ |
---|
[5b85d19] | 361 | char *owl_util_minutes_to_timestr(int in) |
---|
[de03334] | 362 | { |
---|
[f1e629d] | 363 | int days, hours; |
---|
[de03334] | 364 | long run; |
---|
| 365 | char *out; |
---|
| 366 | |
---|
[5b85d19] | 367 | run=in; |
---|
[de03334] | 368 | |
---|
[5b85d19] | 369 | days=run/1440; |
---|
| 370 | run-=days*1440; |
---|
| 371 | hours=run/60; |
---|
| 372 | run-=hours*60; |
---|
[de03334] | 373 | |
---|
| 374 | if (days>0) { |
---|
[5b85d19] | 375 | out=owl_sprintf("%i d %2.2i:%2.2i", days, hours, run); |
---|
[de03334] | 376 | } else { |
---|
[3ba3af0] | 377 | out=owl_sprintf(" %2.2i:%2.2i", hours, run); |
---|
[de03334] | 378 | } |
---|
| 379 | return(out); |
---|
| 380 | } |
---|
| 381 | |
---|
[e4eebe8] | 382 | /* return the index of the last char before a change from the first one */ |
---|
| 383 | int owl_util_find_trans(char *in, int len) |
---|
| 384 | { |
---|
[7d4fbcd] | 385 | int i; |
---|
| 386 | for (i=1; i<len; i++) { |
---|
| 387 | if (in[i] != in[0]) return(i-1); |
---|
| 388 | } |
---|
| 389 | return(i); |
---|
| 390 | } |
---|
| 391 | |
---|
[e4eebe8] | 392 | /* downcase the string 'foo' */ |
---|
| 393 | void downstr(char *foo) |
---|
| 394 | { |
---|
[7d4fbcd] | 395 | int i; |
---|
| 396 | for (i=0; foo[i]!='\0'; i++) { |
---|
| 397 | foo[i]=tolower(foo[i]); |
---|
| 398 | } |
---|
| 399 | } |
---|
| 400 | |
---|
[e4eebe8] | 401 | /* Caller must free response. |
---|
| 402 | * Takes in strings which are space-separated lists of tokens |
---|
| 403 | * and returns a single string containing no token more than once. |
---|
| 404 | * If prohibit is non-null, no token may start with a character |
---|
| 405 | * in prohibit. |
---|
| 406 | */ |
---|
| 407 | char *owl_util_uniq(char *A, char *B, char *prohibit) |
---|
| 408 | { |
---|
[42abb10] | 409 | |
---|
[e50cd56] | 410 | char *cat, **tok; |
---|
| 411 | int toklen, i, j, first=1; |
---|
| 412 | cat = owl_malloc(strlen(A)+strlen(B)+3); |
---|
| 413 | strcpy(cat, A); |
---|
| 414 | strcat(cat, " "); |
---|
| 415 | strcat(cat, B); |
---|
| 416 | tok = atokenize(cat, " ", &toklen); |
---|
| 417 | strcpy(cat, ""); |
---|
| 418 | for (i=0; i<toklen; i++) { |
---|
| 419 | int dup=0; |
---|
| 420 | for (j=0; j<i; j++) { |
---|
| 421 | if (!strcmp(tok[i], tok[j])) dup=1; |
---|
| 422 | } |
---|
| 423 | if (!dup && (!prohibit || !strchr(prohibit, tok[i][0]))) { |
---|
| 424 | if (!first) { |
---|
| 425 | strcat(cat, " "); |
---|
| 426 | } |
---|
| 427 | first=0; |
---|
| 428 | strcat(cat, tok[i]); |
---|
| 429 | } |
---|
| 430 | } |
---|
| 431 | atokenize_free(tok, toklen); |
---|
| 432 | return(cat); |
---|
| 433 | } |
---|
| 434 | |
---|
[42abb10] | 435 | /* hooks for doing memory allocation et. al. in owl */ |
---|
| 436 | |
---|
[e4eebe8] | 437 | void *owl_malloc(size_t size) |
---|
| 438 | { |
---|
[7d4fbcd] | 439 | return(malloc(size)); |
---|
| 440 | } |
---|
| 441 | |
---|
[e4eebe8] | 442 | void owl_free(void *ptr) |
---|
| 443 | { |
---|
[7d4fbcd] | 444 | free(ptr); |
---|
| 445 | } |
---|
| 446 | |
---|
[e4eebe8] | 447 | char *owl_strdup(const char *s1) |
---|
| 448 | { |
---|
[7d4fbcd] | 449 | return(strdup(s1)); |
---|
| 450 | } |
---|
| 451 | |
---|
[e4eebe8] | 452 | void *owl_realloc(void *ptr, size_t size) |
---|
| 453 | { |
---|
[7d4fbcd] | 454 | return(realloc(ptr, size)); |
---|
| 455 | } |
---|
| 456 | |
---|
[e4eebe8] | 457 | /* allocates memory and returns the string or null. |
---|
| 458 | * caller must free the string. |
---|
| 459 | * from Linux sprintf man page. |
---|
| 460 | */ |
---|
| 461 | char *owl_sprintf(const char *fmt, ...) |
---|
| 462 | { |
---|
[1c6c4d3] | 463 | int n, size = 100; |
---|
| 464 | char *p; |
---|
| 465 | va_list ap; |
---|
[42abb10] | 466 | if ((p = owl_malloc (size)) == NULL) return (NULL); |
---|
[1c6c4d3] | 467 | while (1) { |
---|
| 468 | /* Try to print in the allocated space. */ |
---|
| 469 | va_start(ap, fmt); |
---|
| 470 | n = vsnprintf (p, size, fmt, ap); |
---|
| 471 | va_end(ap); |
---|
| 472 | /* If that worked, return the string. */ |
---|
| 473 | if (n > -1 && n < size) |
---|
| 474 | return p; |
---|
| 475 | /* Else try again with more space. */ |
---|
| 476 | if (n > -1) /* glibc 2.1 */ |
---|
| 477 | size = n+1; /* precisely what is needed */ |
---|
| 478 | else /* glibc 2.0 */ |
---|
| 479 | size *= 2; /* twice the old size */ |
---|
| 480 | if ((p = owl_realloc (p, size)) == NULL) |
---|
| 481 | return NULL; |
---|
| 482 | } |
---|
| 483 | } |
---|
| 484 | |
---|
[12c35df] | 485 | /* Return the owl color associated with the named color. Return -1 |
---|
| 486 | * if the named color is not available |
---|
| 487 | */ |
---|
[e4eebe8] | 488 | int owl_util_string_to_color(char *color) |
---|
| 489 | { |
---|
[7d4fbcd] | 490 | if (!strcasecmp(color, "black")) { |
---|
| 491 | return(OWL_COLOR_BLACK); |
---|
| 492 | } else if (!strcasecmp(color, "red")) { |
---|
| 493 | return(OWL_COLOR_RED); |
---|
| 494 | } else if (!strcasecmp(color, "green")) { |
---|
| 495 | return(OWL_COLOR_GREEN); |
---|
| 496 | } else if (!strcasecmp(color, "yellow")) { |
---|
| 497 | return(OWL_COLOR_YELLOW); |
---|
| 498 | } else if (!strcasecmp(color, "blue")) { |
---|
| 499 | return(OWL_COLOR_BLUE); |
---|
| 500 | } else if (!strcasecmp(color, "magenta")) { |
---|
| 501 | return(OWL_COLOR_MAGENTA); |
---|
| 502 | } else if (!strcasecmp(color, "cyan")) { |
---|
| 503 | return(OWL_COLOR_CYAN); |
---|
| 504 | } else if (!strcasecmp(color, "white")) { |
---|
| 505 | return(OWL_COLOR_WHITE); |
---|
| 506 | } else if (!strcasecmp(color, "default")) { |
---|
| 507 | return(OWL_COLOR_DEFAULT); |
---|
| 508 | } |
---|
[12c35df] | 509 | return(-1); |
---|
[7d4fbcd] | 510 | } |
---|
| 511 | |
---|
[e4eebe8] | 512 | /* Return a string name of the given owl color */ |
---|
| 513 | char *owl_util_color_to_string(int color) |
---|
| 514 | { |
---|
[7d4fbcd] | 515 | if (color==OWL_COLOR_BLACK) return("black"); |
---|
| 516 | if (color==OWL_COLOR_RED) return("red"); |
---|
| 517 | if (color==OWL_COLOR_GREEN) return("green"); |
---|
| 518 | if (color==OWL_COLOR_YELLOW) return("yellow"); |
---|
| 519 | if (color==OWL_COLOR_BLUE) return("blue"); |
---|
| 520 | if (color==OWL_COLOR_MAGENTA) return("magenta"); |
---|
| 521 | if (color==OWL_COLOR_CYAN) return("cyan"); |
---|
| 522 | if (color==OWL_COLOR_WHITE) return("white"); |
---|
| 523 | if (color==OWL_COLOR_DEFAULT) return("default"); |
---|
| 524 | return("Unknown color"); |
---|
| 525 | } |
---|
[e1c4636] | 526 | |
---|
[e4eebe8] | 527 | /* Get the default tty name. Caller must free the return */ |
---|
| 528 | char *owl_util_get_default_tty() |
---|
| 529 | { |
---|
[5145235] | 530 | char *out, *tmp; |
---|
[61e79a9] | 531 | |
---|
| 532 | if (getenv("DISPLAY")) { |
---|
| 533 | out=owl_strdup(getenv("DISPLAY")); |
---|
[5145235] | 534 | } else if ((tmp=ttyname(fileno(stdout)))!=NULL) { |
---|
| 535 | out=owl_strdup(tmp); |
---|
[61e79a9] | 536 | if (!strncmp(out, "/dev/", 5)) { |
---|
| 537 | owl_free(out); |
---|
[5145235] | 538 | out=owl_strdup(tmp+5); |
---|
[61e79a9] | 539 | } |
---|
| 540 | } else { |
---|
[5145235] | 541 | out=owl_strdup("unknown"); |
---|
[61e79a9] | 542 | } |
---|
| 543 | return(out); |
---|
| 544 | } |
---|
| 545 | |
---|
| 546 | |
---|
[e4eebe8] | 547 | /* Animation hack */ |
---|
| 548 | void owl_hack_animate() |
---|
| 549 | { |
---|
[4b464a4] | 550 | owl_messagelist *ml; |
---|
| 551 | owl_message *m; |
---|
| 552 | owl_fmtext *fm; |
---|
| 553 | char *text, *ptr; |
---|
| 554 | int place; |
---|
| 555 | |
---|
| 556 | /* grab the first message and make sure its id is 0 */ |
---|
| 557 | ml=owl_global_get_msglist(&g); |
---|
| 558 | m=owl_messagelist_get_element(ml, 0); |
---|
| 559 | if (!m) return; |
---|
| 560 | if (owl_message_get_id(m)!=0) return; |
---|
| 561 | |
---|
| 562 | fm=owl_message_get_fmtext(m); |
---|
| 563 | text=owl_fmtext_get_text(fm); |
---|
| 564 | |
---|
| 565 | ptr=strstr(text, "OvO"); |
---|
| 566 | if (ptr) { |
---|
| 567 | place=ptr-text; |
---|
| 568 | owl_fmtext_set_char(fm, place, '-'); |
---|
| 569 | owl_fmtext_set_char(fm, place+2, '-'); |
---|
| 570 | |
---|
| 571 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
[a15a84f] | 572 | if (owl_popwin_is_active(owl_global_get_popwin(&g))) { |
---|
| 573 | owl_popwin_refresh(owl_global_get_popwin(&g)); |
---|
| 574 | /* TODO: this is a broken kludge */ |
---|
| 575 | if (owl_global_get_viewwin(&g)) { |
---|
| 576 | owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0); |
---|
| 577 | } |
---|
| 578 | } |
---|
[4b464a4] | 579 | owl_global_set_needrefresh(&g); |
---|
| 580 | return; |
---|
| 581 | } |
---|
| 582 | |
---|
| 583 | ptr=strstr(text, "-v-"); |
---|
| 584 | if (ptr) { |
---|
| 585 | place=ptr-text; |
---|
| 586 | owl_fmtext_set_char(fm, place, 'O'); |
---|
| 587 | owl_fmtext_set_char(fm, place+2, 'O'); |
---|
| 588 | |
---|
| 589 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
[a15a84f] | 590 | if (owl_popwin_is_active(owl_global_get_popwin(&g))) { |
---|
| 591 | owl_popwin_refresh(owl_global_get_popwin(&g)); |
---|
| 592 | /* TODO: this is a broken kludge */ |
---|
| 593 | if (owl_global_get_viewwin(&g)) { |
---|
| 594 | owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0); |
---|
| 595 | } |
---|
| 596 | } |
---|
[4b464a4] | 597 | owl_global_set_needrefresh(&g); |
---|
| 598 | return; |
---|
| 599 | } |
---|
| 600 | } |
---|
[e1c4636] | 601 | |
---|
[e4eebe8] | 602 | /* strip leading and trailing new lines. Caller must free the |
---|
| 603 | * return. |
---|
| 604 | */ |
---|
| 605 | char *owl_util_stripnewlines(char *in) |
---|
| 606 | { |
---|
[7e3e00a] | 607 | |
---|
| 608 | char *tmp, *ptr1, *ptr2, *out; |
---|
| 609 | |
---|
| 610 | ptr1=tmp=owl_strdup(in); |
---|
| 611 | while (ptr1[0]=='\n') { |
---|
| 612 | ptr1++; |
---|
| 613 | } |
---|
| 614 | ptr2=ptr1+strlen(ptr1)-1; |
---|
[1bb1e67] | 615 | while (ptr2>ptr1 && ptr2[0]=='\n') { |
---|
[7e3e00a] | 616 | ptr2[0]='\0'; |
---|
| 617 | ptr2--; |
---|
| 618 | } |
---|
| 619 | |
---|
| 620 | out=owl_strdup(ptr1); |
---|
| 621 | owl_free(tmp); |
---|
| 622 | return(out); |
---|
| 623 | } |
---|
| 624 | |
---|
[38cf544c] | 625 | /* Delete the line matching "line" from the named file. If no such |
---|
| 626 | * line is found the file is left intact. If backup==1 then create a |
---|
| 627 | * backupfile containing the original contents. This is an |
---|
| 628 | * inefficient impelementation which reads the entire file into |
---|
| 629 | * memory. |
---|
| 630 | */ |
---|
| 631 | void owl_util_file_deleteline(char *filename, char *line, int backup) |
---|
| 632 | { |
---|
| 633 | char buff[LINE], *text; |
---|
[e6449bc] | 634 | char *backupfilename=""; |
---|
| 635 | FILE *file, *backupfile=NULL; |
---|
[38cf544c] | 636 | int size, newline; |
---|
| 637 | |
---|
| 638 | /* open the file for reading */ |
---|
| 639 | file=fopen(filename, "r"); |
---|
| 640 | if (!file) { |
---|
[836ea3a3] | 641 | owl_function_error("Error opening file %s", filename); |
---|
[38cf544c] | 642 | return; |
---|
| 643 | } |
---|
[e6449bc] | 644 | |
---|
[38cf544c] | 645 | /* open the backup file for writing */ |
---|
| 646 | if (backup) { |
---|
| 647 | backupfilename=owl_sprintf("%s.backup", filename); |
---|
| 648 | backupfile=fopen(backupfilename, "w"); |
---|
| 649 | if (!backupfile) { |
---|
[836ea3a3] | 650 | owl_function_error("Error opening file %s for writing", backupfilename); |
---|
[378fa14] | 651 | owl_free(backupfilename); |
---|
[38cf544c] | 652 | return; |
---|
| 653 | } |
---|
[378fa14] | 654 | owl_free(backupfilename); |
---|
[38cf544c] | 655 | } |
---|
| 656 | |
---|
| 657 | /* we'll read the entire file into memory, minus the line we don't want and |
---|
| 658 | * and at the same time create the backup file if necessary |
---|
| 659 | */ |
---|
| 660 | text=owl_malloc(LINE); |
---|
| 661 | strcpy(text, ""); |
---|
| 662 | size=LINE; |
---|
| 663 | while (fgets(buff, LINE, file)!=NULL) { |
---|
| 664 | /* strip the newline */ |
---|
| 665 | newline=0; |
---|
| 666 | if (buff[strlen(buff)-1]=='\n') { |
---|
| 667 | buff[strlen(buff)-1]='\0'; |
---|
| 668 | newline=1; |
---|
| 669 | } |
---|
| 670 | |
---|
| 671 | /* if we don't match the line, add to saved text in memory */ |
---|
| 672 | if (strcasecmp(buff, line)) { |
---|
| 673 | size+=LINE; |
---|
| 674 | text=owl_realloc(text, size); |
---|
| 675 | strcat(text, buff); |
---|
| 676 | if (newline) strcat(text, "\n"); |
---|
| 677 | } |
---|
| 678 | |
---|
| 679 | /* write to backupfile if necessary */ |
---|
[6a50af2] | 680 | if (backup) { |
---|
| 681 | fputs(buff, backupfile); |
---|
| 682 | if (newline) fputs("\n", backupfile); |
---|
| 683 | } |
---|
[38cf544c] | 684 | } |
---|
[65ad073] | 685 | if (backup) fclose(backupfile); |
---|
[38cf544c] | 686 | fclose(file); |
---|
| 687 | |
---|
| 688 | /* now rewrite the original file from memory */ |
---|
| 689 | file=fopen(filename, "w"); |
---|
| 690 | if (!file) { |
---|
[836ea3a3] | 691 | owl_function_error("WARNING: Error opening %s for writing. Use %s to restore.", filename, backupfilename); |
---|
[38cf544c] | 692 | owl_function_beep(); |
---|
| 693 | owl_free(line); |
---|
| 694 | return; |
---|
| 695 | } |
---|
| 696 | |
---|
| 697 | fputs(text, file); |
---|
| 698 | fclose(file); |
---|
| 699 | } |
---|
| 700 | |
---|
[40458b9] | 701 | /* add the string 'str' to the list 'list' of strings, only if it |
---|
| 702 | * is not already present |
---|
| 703 | */ |
---|
| 704 | void owl_util_list_add_unique_string(owl_list *list, char *str) |
---|
| 705 | { |
---|
| 706 | int i, j; |
---|
| 707 | |
---|
| 708 | j=owl_list_get_size(list); |
---|
| 709 | for (i=0; i<j; i++) { |
---|
| 710 | if (!strcmp(str, owl_list_get_element(list, i))) return; |
---|
| 711 | } |
---|
| 712 | owl_list_append_element(list, owl_strdup(str)); |
---|
| 713 | } |
---|
| 714 | |
---|
| 715 | int owl_util_common_strings_in_lists(owl_list *a, owl_list *b) |
---|
| 716 | { |
---|
| 717 | int i, j, x, y; |
---|
| 718 | |
---|
| 719 | j=owl_list_get_size(a); |
---|
| 720 | for (i=0; i<j; i++) { |
---|
| 721 | y=owl_list_get_size(b); |
---|
| 722 | for (x=0; x<y; x++) { |
---|
| 723 | if (!strcmp(owl_list_get_element(a, i), owl_list_get_element(b, x))) return(1); |
---|
| 724 | } |
---|
| 725 | } |
---|
| 726 | return(0); |
---|
| 727 | } |
---|
| 728 | |
---|
[fe67f1f] | 729 | int owl_util_max(int a, int b) |
---|
| 730 | { |
---|
| 731 | if (a>b) return(a); |
---|
| 732 | return(b); |
---|
| 733 | } |
---|
| 734 | |
---|
| 735 | int owl_util_min(int a, int b) |
---|
| 736 | { |
---|
| 737 | if (a<b) return(a); |
---|
| 738 | return(b); |
---|
| 739 | } |
---|
| 740 | |
---|
[7a20e4c] | 741 | /* Return the base class or instance from a zephyr class, by removing |
---|
| 742 | leading `un' or trailing `.d'. |
---|
[be5aa09] | 743 | The caller is responsible for freeing the allocated string. |
---|
[7a20e4c] | 744 | */ |
---|
| 745 | char * owl_util_baseclass(char * class) |
---|
| 746 | { |
---|
[59916e8] | 747 | char *ret; |
---|
| 748 | char *start, *end; |
---|
| 749 | |
---|
[f166580] | 750 | start = class; |
---|
[59916e8] | 751 | while(!strncmp(start, "un", 2)) { |
---|
| 752 | start += 2; |
---|
[7a20e4c] | 753 | } |
---|
[f166580] | 754 | |
---|
| 755 | start = owl_strdup(start); |
---|
[59916e8] | 756 | end = start + strlen(start) - 1; |
---|
[7a20e4c] | 757 | while(*end == 'd' && *(end-1) == '.') { |
---|
| 758 | end -= 2; |
---|
| 759 | } |
---|
| 760 | *(end + 1) = 0; |
---|
[59916e8] | 761 | |
---|
[f166580] | 762 | return start; |
---|
[7a20e4c] | 763 | } |
---|
| 764 | |
---|
[e1c4636] | 765 | /**************************************************************************/ |
---|
| 766 | /************************* REGRESSION TESTS *******************************/ |
---|
| 767 | /**************************************************************************/ |
---|
| 768 | |
---|
| 769 | #ifdef OWL_INCLUDE_REG_TESTS |
---|
| 770 | |
---|
[0138478] | 771 | #include "test.h" |
---|
[e1c4636] | 772 | |
---|
[e4eebe8] | 773 | int owl_util_regtest(void) |
---|
| 774 | { |
---|
[e1c4636] | 775 | int numfailed=0; |
---|
| 776 | |
---|
| 777 | printf("BEGIN testing owl_util\n"); |
---|
| 778 | |
---|
| 779 | FAIL_UNLESS("owl_util_substitute 1", |
---|
[e3d9c77] | 780 | !strcmp("foo", owl_text_substitute("foo", "", "Y"))); |
---|
| 781 | FAIL_UNLESS("owl_text_substitute 2", |
---|
| 782 | !strcmp("fYZYZ", owl_text_substitute("foo", "o", "YZ"))); |
---|
| 783 | FAIL_UNLESS("owl_text_substitute 3", |
---|
| 784 | !strcmp("foo", owl_text_substitute("fYZYZ", "YZ", "o"))); |
---|
| 785 | FAIL_UNLESS("owl_text_substitute 4", |
---|
| 786 | !strcmp("/u/foo/meep", owl_text_substitute("~/meep", "~", "/u/foo"))); |
---|
[e1c4636] | 787 | |
---|
| 788 | FAIL_UNLESS("skiptokens 1", |
---|
| 789 | !strcmp("bar quux", skiptokens("foo bar quux", 1))); |
---|
| 790 | FAIL_UNLESS("skiptokens 2", |
---|
| 791 | !strcmp("meep", skiptokens("foo 'bar quux' meep", 2))); |
---|
| 792 | |
---|
[e50cd56] | 793 | FAIL_UNLESS("owl_util_uniq 1", |
---|
| 794 | !strcmp("foo bar x", owl_util_uniq("foo", "bar x", "-"))); |
---|
| 795 | FAIL_UNLESS("owl_util_uniq 2", |
---|
| 796 | !strcmp("foo bar x", owl_util_uniq("foo", "bar -y x", "-"))); |
---|
| 797 | FAIL_UNLESS("owl_util_uniq 3", |
---|
| 798 | !strcmp("meep foo bar", owl_util_uniq("meep foo", "bar foo meep", "-"))); |
---|
| 799 | |
---|
[e1c4636] | 800 | if (numfailed) printf("*** WARNING: failures encountered with owl_util\n"); |
---|
| 801 | printf("END testing owl_util (%d failures)\n", numfailed); |
---|
| 802 | return(numfailed); |
---|
| 803 | } |
---|
| 804 | |
---|
| 805 | #endif /* OWL_INCLUDE_REG_TESTS */ |
---|