📄 readline.c
字号:
if (temp) { char *nptr; temp++; nptr = realloc(filename, strlen(temp) + 1); if (nptr == NULL) { free(filename); return NULL; } filename = nptr; (void)strcpy(filename, temp); len = temp - text; /* including last slash */ nptr = realloc(dirname, len + 1); if (nptr == NULL) { free(filename); return NULL; } dirname = nptr; (void)strncpy(dirname, text, len); dirname[len] = '\0'; } else { if (*text == 0) filename = NULL; else { filename = strdup(text); if (filename == NULL) return NULL; } dirname = NULL; } /* support for ``~user'' syntax */ if (dirname && *dirname == '~') { char *nptr; temp = tilde_expand(dirname); if (temp == NULL) return NULL; nptr = realloc(dirname, strlen(temp) + 1); if (nptr == NULL) { free(dirname); return NULL; } dirname = nptr; (void)strcpy(dirname, temp); /* safe */ free(temp); /* no longer needed */ } /* will be used in cycle */ filename_len = filename ? strlen(filename) : 0; if (dir != NULL) { (void)closedir(dir); dir = NULL; } dir = opendir(dirname ? dirname : "."); if (!dir) return (NULL); /* cannot open the directory */ } /* find the match */ while ((entry = readdir(dir)) != NULL) { /* skip . and .. */ if (entry->d_name[0] == '.' && (!entry->d_name[1] || (entry->d_name[1] == '.' && !entry->d_name[2]))) continue; if (filename_len == 0) break; /* otherwise, get first entry where first */ /* filename_len characters are equal */ if (entry->d_name[0] == filename[0] /* Some dirents have d_namlen, but it is not portable. */ && strlen(entry->d_name) >= filename_len && strncmp(entry->d_name, filename, filename_len) == 0) break; } if (entry) { /* match found */ struct stat stbuf; /* Some dirents have d_namlen, but it is not portable. */ len = strlen(entry->d_name) + ((dirname) ? strlen(dirname) : 0) + 1 + 1; temp = malloc(len); if (temp == NULL) return NULL; (void)sprintf(temp, "%s%s", dirname ? dirname : "", entry->d_name); /* safe */ /* test, if it's directory */ if (stat(temp, &stbuf) == 0 && S_ISDIR(stbuf.st_mode)) strcat(temp, "/"); /* safe */ } else { (void)closedir(dir); dir = NULL; temp = NULL; } return (temp);}/* * a completion generator for usernames; returns _first_ username * which starts with supplied text * text contains a partial username preceded by random character * (usually '~'); state is ignored * it's callers responsibility to free returned value */char *username_completion_function(const char *text, int state){ struct passwd *pwd; if (text[0] == '\0') return (NULL); if (*text == '~') text++; if (state == 0) setpwent(); while ((pwd = getpwent()) && text[0] == pwd->pw_name[0] && strcmp(text, pwd->pw_name) == 0); if (pwd == NULL) { endpwent(); return (NULL); } return (strdup(pwd->pw_name));}/* * el-compatible wrapper around rl_complete; needed for key binding *//* ARGSUSED */static unsigned char_el_rl_complete(EditLine *el __attribute__((__unused__)), int ch){ return (unsigned char) rl_complete(0, ch);}/* * el-compatible wrapper to send TSTP on ^Z *//* ARGSUSED */static unsigned char_el_rl_tstp(EditLine *el __attribute__((__unused__)), int ch __attribute__((__unused__))){ (void)kill(0, SIGTSTP); return CC_NORM;}/* * returns list of completions for text given */char **completion_matches(const char *text, CPFunction *genfunc){ char **match_list = NULL, *retstr, *prevstr; size_t match_list_len, max_equal, which, i; size_t matches; if (h == NULL || e == NULL) rl_initialize(); matches = 0; match_list_len = 1; while ((retstr = (*genfunc) (text, (int)matches)) != NULL) { /* allow for list terminator here */ if (matches + 3 >= match_list_len) { char **nmatch_list; while (matches + 3 >= match_list_len) match_list_len <<= 1; nmatch_list = realloc(match_list, match_list_len * sizeof(char *)); if (nmatch_list == NULL) { free(match_list); return NULL; } match_list = nmatch_list; } match_list[++matches] = retstr; } if (!match_list) return NULL; /* nothing found */ /* find least denominator and insert it to match_list[0] */ which = 2; prevstr = match_list[1]; max_equal = strlen(prevstr); for (; which <= matches; which++) { for (i = 0; i < max_equal && prevstr[i] == match_list[which][i]; i++) continue; max_equal = i; } retstr = malloc(max_equal + 1); if (retstr == NULL) { free(match_list); return NULL; } (void)strncpy(retstr, match_list[1], max_equal); retstr[max_equal] = '\0'; match_list[0] = retstr; /* add NULL as last pointer to the array */ match_list[matches + 1] = (char *) NULL; return (match_list);}/* * Sort function for qsort(). Just wrapper around strcasecmp(). */static int_rl_qsort_string_compare(i1, i2) const void *i1, *i2;{ const char *s1 = ((const char * const *)i1)[0]; const char *s2 = ((const char * const *)i2)[0]; return strcasecmp(s1, s2);}/* * Display list of strings in columnar format on readline's output stream. * 'matches' is list of strings, 'len' is number of strings in 'matches', * 'max' is maximum length of string in 'matches'. */voidrl_display_match_list (matches, len, max) char **matches; int len, max;{ int i, idx, limit, count; int screenwidth = e->el_term.t_size.h; /* * Find out how many entries can be put on one line, count * with two spaces between strings. */ limit = screenwidth / (max + 2); if (limit == 0) limit = 1; /* how many lines of output */ count = len / limit; if (count * limit < len) count++; /* Sort the items if they are not already sorted. */ qsort(&matches[1], (size_t)(len - 1), sizeof(char *), _rl_qsort_string_compare); idx = 1; for(; count > 0; count--) { for(i = 0; i < limit && matches[idx]; i++, idx++) (void)fprintf(e->el_outfile, "%-*s ", max, matches[idx]); (void)fprintf(e->el_outfile, "\n"); }}/* * Complete the word at or before point, called by rl_complete() * 'what_to_do' says what to do with the completion. * `?' means list the possible completions. * TAB means do standard completion. * `*' means insert all of the possible completions. * `!' means to do standard completion, and list all possible completions if * there is more than one. * * Note: '*' support is not implemented */static int_rl_complete_internal(int what_to_do){ Function *complet_func; const LineInfo *li; char *temp, **matches; const char *ctemp; size_t len; rl_completion_type = what_to_do; if (h == NULL || e == NULL) rl_initialize(); complet_func = rl_completion_entry_function; if (!complet_func) complet_func = (Function *)(void *)filename_completion_function; /* We now look backwards for the start of a filename/variable word */ li = el_line(e); ctemp = (const char *) li->cursor; while (ctemp > li->buffer && !strchr(rl_basic_word_break_characters, ctemp[-1]) && (!rl_special_prefixes || !strchr(rl_special_prefixes, ctemp[-1]) ) ) ctemp--; len = li->cursor - ctemp; temp = alloca(len + 1); (void)strncpy(temp, ctemp, len); temp[len] = '\0'; /* these can be used by function called in completion_matches() */ /* or (*rl_attempted_completion_function)() */ _rl_update_pos(); if (rl_attempted_completion_function) { int end = li->cursor - li->buffer; matches = (*rl_attempted_completion_function) (temp, (int) (end - len), end); } else matches = 0; if (!rl_attempted_completion_function || !matches) matches = completion_matches(temp, (CPFunction *)complet_func); if (matches) { int i, retval = CC_REFRESH; int matches_num, maxlen, match_len, match_display=1; /* * Only replace the completed string with common part of * possible matches if there is possible completion. */ if (matches[0][0] != '\0') { el_deletestr(e, (int) len); el_insertstr(e, matches[0]); } if (what_to_do == '?') goto display_matches; if (matches[2] == NULL && strcmp(matches[0], matches[1]) == 0) { /* * We found exact match. Add a space after * it, unless we do filename completion and the * object is a directory. */ size_t alen = strlen(matches[0]); if ((complet_func != (Function *)filename_completion_function || (alen > 0 && (matches[0])[alen - 1] != '/')) && rl_completion_append_character) { char buf[2]; buf[0] = rl_completion_append_character; buf[1] = '\0'; el_insertstr(e, buf); } } else if (what_to_do == '!') { display_matches: /* * More than one match and requested to list possible * matches. */ for(i=1, maxlen=0; matches[i]; i++) { match_len = strlen(matches[i]); if (match_len > maxlen) maxlen = match_len; } matches_num = i - 1; /* newline to get on next line from command line */ (void)fprintf(e->el_outfile, "\n"); /* * If there are too many items, ask user for display * confirmation. */ if (matches_num > rl_completion_query_items) { (void)fprintf(e->el_outfile, "Display all %d possibilities? (y or n) ", matches_num); (void)fflush(e->el_outfile); if (getc(stdin) != 'y') match_display = 0; (void)fprintf(e->el_outfile, "\n"); } if (match_display) rl_display_match_list(matches, matches_num, maxlen); retval = CC_REDISPLAY; } else if (matches[0][0]) { /* * There was some common match, but the name was * not complete enough. Next tab will print possible * completions. */ el_beep(e); } else { /* lcd is not a valid object - further specification */ /* is needed */ el_beep(e); retval = CC_NORM; } /* free elements of array and the array itself */ for (i = 0; matches[i]; i++) free(matches[i]); free(matches), matches = NULL; return (retval); } return (CC_NORM);}/* * complete word at current point */int/*ARGSUSED*/rl_complete(int ignore, int invoking_key){ if (h == NULL || e == NULL) rl_initialize(); if (rl_inhibit_completion) { char arr[2]; arr[0] = (char)invoking_key; arr[1] = '\0'; el_insertstr(e, arr); return (CC_REFRESH); } else if (e->el_state.lastcmd == el_rl_complete_cmdnum) return _rl_complete_internal('?'); else if (_rl_complete_show_all) return _rl_complete_internal('!'); else return _rl_complete_internal(TAB);}/* * misc other functions *//* * bind key c to readline-type function func */intrl_bind_key(int c, int func(int, int)){ int retval = -1; if (h == NULL || e == NULL) rl_initialize(); if (func == rl_insert) { /* XXX notice there is no range checking of ``c'' */ e->el_map.key[c] = ED_INSERT; retval = 0; } return (retval);}/* * read one key from input - handles chars pushed back * to input stream also */intrl_read_key(void){ char fooarr[2 * sizeof(int)]; if (e == NULL || h == NULL) rl_initialize(); return (el_getc(e, fooarr));}/* * reset the terminal *//* ARGSUSED */voidrl_reset_terminal(const char *p __attribute__((__unused__))){ if (h == NULL || e == NULL) rl_initialize(); el_reset(e);}/* * insert character ``c'' back into input stream, ``count'' times */intrl_insert(int count, int c){ char arr[2]; if (h == NULL || e == NULL) rl_initialize(); /* XXX - int -> char conversion can lose on multichars */ arr[0] = c; arr[1] = '\0'; for (; count > 0; count--) el_push(e, arr); return (0);}/*ARGSUSED*/intrl_newline(int count, int c){ /* * Readline-4.0 appears to ignore the args. */ return rl_insert(1, '\n');}/*ARGSUSED*/static unsigned charrl_bind_wrapper(EditLine *el, unsigned char c){ if (map[c] == NULL) return CC_ERROR; _rl_update_pos(); (*map[c])(NULL, c); /* If rl_done was set by the above call, deal with it here */ if (rl_done) return CC_EOF; return CC_NORM;}intrl_add_defun(const char *name, Function *fun, int c){ char dest[8]; if (c >= sizeof(map) / sizeof(map[0]) || c < 0) return -1; map[(unsigned char)c] = fun; el_set(e, EL_ADDFN, name, name, rl_bind_wrapper); vis(dest, c, VIS_WHITE|VIS_NOSLASH, 0); el_set(e, EL_BIND, dest, name); return 0;}voidrl_callback_read_char(){ int count = 0, done = 0; const char *buf = el_gets(e, &count); char *wbuf; if (buf == NULL || count-- <= 0) return;#ifdef CTRL2 /* _AIX */ if (count == 0 && buf[0] == CTRL2('d'))#else if (count == 0 && buf[0] == CTRL('d'))#endif done = 1; if (buf[count] == '\n' || buf[count] == '\r') done = 2; if (done && rl_linefunc != NULL) { el_set(e, EL_UNBUFFERED, 0); if (done == 2) { if ((wbuf = strdup(buf)) != NULL) wbuf[count] = '\0'; } else wbuf = NULL; (*(void (*)(const char *))rl_linefunc)(wbuf); el_set(e, EL_UNBUFFERED, 1); }}void rl_callback_handler_install (const char *prompt, VFunction *linefunc){ if (e == NULL) { rl_initialize(); } if (rl_prompt) free(rl_prompt); rl_prompt = prompt ? strdup(strchr(prompt, *prompt)) : NULL; rl_linefunc = linefunc; el_set(e, EL_UNBUFFERED, 1);} void rl_callback_handler_remove(void){ el_set(e, EL_UNBUFFERED, 0);}voidrl_redisplay(void){ char a[2];#ifdef CTRL2 /* _AIX */ a[0] = CTRL2('r');#else a[0] = CTRL('r');#endif a[1] = '\0'; el_push(e, a);}intrl_get_previous_history(int count, int key){ char a[2]; a[0] = key; a[1] = '\0'; while (count--) el_push(e, a); return 0;}void/*ARGSUSED*/rl_prep_terminal(int meta_flag){ el_set(e, EL_PREP_TERM, 1);}voidrl_deprep_terminal(){ el_set(e, EL_PREP_TERM, 0);}intrl_read_init_file(const char *s){ return(el_source(e, s));}intrl_parse_and_bind(const char *line){ const char **argv; int argc; Tokenizer *tok; tok = tok_init(NULL); tok_str(tok, line, &argc, &argv); argc = el_parse(e, argc, argv); tok_end(tok); return (argc ? 1 : 0);}voidrl_stuff_char(int c){ char buf[2]; buf[0] = c; buf[1] = '\0'; el_insertstr(e, buf);}static int_rl_event_read_char(EditLine *el, char *cp){ int n, num_read = 0; *cp = 0; while (rl_event_hook) { (*rl_event_hook)();#if defined(FIONREAD) if (ioctl(el->el_infd, FIONREAD, &n) < 0) return(-1); if (n) num_read = read(el->el_infd, cp, 1); else num_read = 0;#elif defined(F_SETFL) && defined(O_NDELAY) if ((n = fcntl(el->el_infd, F_GETFL, 0)) < 0) return(-1); if (fcntl(el->el_infd, F_SETFL, n|O_NDELAY) < 0) return(-1); num_read = read(el->el_infd, cp, 1); if (fcntl(el->el_infd, F_SETFL, n)) return(-1);#else /* not non-blocking, but what you gonna do? */ num_read = read(el->el_infd, cp, 1); return(-1);#endif if (num_read < 0 && errno == EAGAIN) continue; if (num_read == 0) continue; break; } if (!rl_event_hook) el_set(el, EL_GETCFN, EL_BUILTIN_GETCFN); return(num_read);}static void_rl_update_pos(void){ const LineInfo *li = el_line(e); rl_point = li->cursor - li->buffer; rl_end = li->lastchar - li->buffer;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -