diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-21 07:56:21 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-21 07:56:21 +0200 |
commit | dcfc4e8ed59e015d0d83944bdadf39e8b83298ea (patch) | |
tree | 124e81991dc639ef7a208c22653f89e29adb4eb6 /src | |
parent | 1919f23c2d67dcf38765a06943e66f89d5873a62 (diff) | |
download | weechat-dcfc4e8ed59e015d0d83944bdadf39e8b83298ea.zip |
core: add "length:xxx" and "lengthscr:xxx" in evaluation of expressions
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-command.c | 21 | ||||
-rw-r--r-- | src/core/wee-eval.c | 60 |
2 files changed, 52 insertions, 29 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index d5d3846dd..d8a940fa1 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -7355,19 +7355,21 @@ command_init () "\"cutscr:+max,suffix,string\")\n" " 5. a reversed string (format: \"rev:xxx\")\n" " 6. a repeated string (format: \"repeat:count,string\")\n" - " 7. a color (format: \"color:xxx\", see \"Plugin API " + " 7. length of a string (format: \"length:xxx\" or " + "\"lengthscr:xxx\")\n" + " 8. a color (format: \"color:xxx\", see \"Plugin API " "reference\", function \"color\")\n" - " 8. an info (format: \"info:name,arguments\", arguments are " + " 9. an info (format: \"info:name,arguments\", arguments are " "optional)\n" - " 9. current date/time (format: \"date\" or \"date:format\")\n" - " 10. an environment variable (format: \"env:XXX\")\n" - " 11. a ternary operator (format: " + " 10. current date/time (format: \"date\" or \"date:format\")\n" + " 11. an environment variable (format: \"env:XXX\")\n" + " 12. a ternary operator (format: " "\"if:condition?value_if_true:value_if_false\")\n" - " 12. result of an expression with parentheses and operators " + " 13. result of an expression with parentheses and operators " "+ - * / // % (format: \"calc:xxx\")\n" - " 13. an option (format: \"file.section.option\")\n" - " 14. a local variable in buffer\n" - " 15. a hdata name/variable (the value is automatically converted " + " 14. an option (format: \"file.section.option\")\n" + " 15. a local variable in buffer\n" + " 16. a hdata name/variable (the value is automatically converted " "to string), by default \"window\" and \"buffer\" point to current " "window/buffer.\n" "Format for hdata can be one of following:\n" @@ -7403,6 +7405,7 @@ command_init () " /eval -n ${if:${info:term_width}>80?big:small} ==> big\n" " /eval -n ${rev:Hello} ==> olleH\n" " /eval -n ${repeat:5,-} ==> -----\n" + " /eval -n ${length:test} ==> 4\n" " /eval -n ${calc:(5+2)*3} ==> 21\n" "\n" "Examples (conditions):\n" diff --git a/src/core/wee-eval.c b/src/core/wee-eval.c index 547a4406b..15f5bc3b5 100644 --- a/src/core/wee-eval.c +++ b/src/core/wee-eval.c @@ -296,16 +296,18 @@ end: * (format: cutscr:max,suffix,string or cutscr:+max,suffix,string) * 6. a reversed string (format: rev:xxx) * 7. a repeated string (format: repeat:count,string) - * 8. a regex group captured (format: re:N (0.99) or re:+) - * 9. a color (format: color:xxx) - * 10. an info (format: info:name,arguments) - * 11. current date/time (format: date or date:xxx) - * 12. an environment variable (format: env:XXX) - * 13. a ternary operator (format: if:condition?value_if_true:value_if_false) - * 14. calculate result of an expression (format: calc:xxx) - * 15. an option (format: file.section.option) - * 16. a buffer local variable - * 17. a hdata variable (format: hdata.var1.var2 or hdata[list].var1.var2 + * 8. length of a string (format: length:xxx) or length of a string on screen + * (format: lengthscr:xxx) + * 9. a regex group captured (format: re:N (0.99) or re:+) + * 10. a color (format: color:xxx) + * 11. an info (format: info:name,arguments) + * 12. current date/time (format: date or date:xxx) + * 13. an environment variable (format: env:XXX) + * 14. a ternary operator (format: if:condition?value_if_true:value_if_false) + * 15. calculate result of an expression (format: calc:xxx) + * 16. an option (format: file.section.option) + * 17. a buffer local variable + * 18. a hdata variable (format: hdata.var1.var2 or hdata[list].var1.var2 * or hdata[ptr].var1.var2) * * See /help in WeeChat for examples. @@ -478,7 +480,25 @@ eval_replace_vars_cb (void *data, const char *text) return string_repeat (pos + 1, number); } - /* 8. regex group captured */ + /* + * 8. length of string: + * length: number of chars + * lengthscr: number of chars displayed on screen + */ + if (strncmp (text, "length:", 7) == 0) + { + length = utf8_strlen (text + 7); + snprintf (str_value, sizeof (str_value), "%d", length); + return strdup (str_value); + } + if (strncmp (text, "lengthscr:", 10) == 0) + { + length = utf8_strlen_screen (text + 10); + snprintf (str_value, sizeof (str_value), "%d", length); + return strdup (str_value); + } + + /* 9. regex group captured */ if (strncmp (text, "re:", 3) == 0) { if (eval_context->regex && eval_context->regex->result) @@ -509,7 +529,7 @@ eval_replace_vars_cb (void *data, const char *text) return strdup (""); } - /* 9. color code */ + /* 10. color code */ if (strncmp (text, "color:", 6) == 0) { ptr_value = gui_color_search_config (text + 6); @@ -519,7 +539,7 @@ eval_replace_vars_cb (void *data, const char *text) return strdup ((ptr_value) ? ptr_value : ""); } - /* 10. info */ + /* 11. info */ if (strncmp (text, "info:", 5) == 0) { value = NULL; @@ -539,7 +559,7 @@ eval_replace_vars_cb (void *data, const char *text) return (value) ? value : strdup (""); } - /* 11. current date/time */ + /* 12. current date/time */ if ((strncmp (text, "date", 4) == 0) && (!text[4] || (text[4] == ':'))) { date = time (NULL); @@ -552,7 +572,7 @@ eval_replace_vars_cb (void *data, const char *text) return strdup ((rc > 0) ? str_value : ""); } - /* 12. environment variable */ + /* 13. environment variable */ if (strncmp (text, "env:", 4) == 0) { ptr_value = getenv (text + 4); @@ -560,7 +580,7 @@ eval_replace_vars_cb (void *data, const char *text) return strdup (ptr_value); } - /* 13: ternary operator: if:condition?value_if_true:value_if_false */ + /* 14: ternary operator: if:condition?value_if_true:value_if_false */ if (strncmp (text, "if:", 3) == 0) { value = NULL; @@ -628,7 +648,7 @@ eval_replace_vars_cb (void *data, const char *text) } /* - * 14. calculate the result of an expression + * 15. calculate the result of an expression * (with number, operators and parentheses) */ if (strncmp (text, "calc:", 5) == 0) @@ -636,7 +656,7 @@ eval_replace_vars_cb (void *data, const char *text) return calc_expression (text + 5); } - /* 15. option: if found, return this value */ + /* 16. option: if found, return this value */ if (strncmp (text, "sec.data.", 9) == 0) { ptr_value = hashtable_get (secure_hashtable_data, text + 9); @@ -669,7 +689,7 @@ eval_replace_vars_cb (void *data, const char *text) } } - /* 16. local variable in buffer */ + /* 17. local variable in buffer */ ptr_buffer = hashtable_get (eval_context->pointers, "buffer"); if (ptr_buffer) { @@ -678,7 +698,7 @@ eval_replace_vars_cb (void *data, const char *text) return strdup (ptr_value); } - /* 17. hdata */ + /* 18. hdata */ value = NULL; hdata_name = NULL; list_name = NULL; |