[vlc-devel] [PATCH 1/2] zsh completion: adapt to module interface changes
Hugo Beauzée-Luyssen
hugo at beauzee.fr
Wed Sep 27 10:28:53 CEST 2017
Hi,
On Wed, Sep 27, 2017, at 12:23 AM, Sebastian Ramacher wrote:
> Use module_config_get to obtain modules. Change ReplaceChars to work on
> std::strings as we have to copy the strings anyhow. Also psz_type of
> CONFIG_ITEM_MODULE type module configs can be NULL now.
>
> Signed-off-by: Sebastian Ramacher <sramacher at debian.org>
> ---
> extras/analyser/zsh.cpp | 68
> +++++++++++++++++++++++++++++++++----------------
> 1 file changed, 46 insertions(+), 22 deletions(-)
>
> diff --git a/extras/analyser/zsh.cpp b/extras/analyser/zsh.cpp
> index 0954a72dc1..f66c026168 100644
> --- a/extras/analyser/zsh.cpp
> +++ b/extras/analyser/zsh.cpp
> @@ -27,6 +27,7 @@
>
> #include <stdio.h>
> #include <map>
> +#include <set>
> #include <string>
> #include <sstream>
>
> @@ -44,26 +45,35 @@ typedef std::pair<int, std::string> mcpair;
> typedef std::multimap<int, std::string> mcmap;
> mcmap categories;
>
> -static void ReplaceChars(char *str)
> +std::set<std::string> mnames;
> +
> +static void ReplaceChar(std::string& str, char f, char t)
You might want to use std::replace instead
> {
> - if (str) {
> - char *parser;
> - while ((parser = strchr(str, ':'))) *parser=';' ;
> - while ((parser = strchr(str, '"'))) *parser='\'' ;
> - while ((parser = strchr(str, '`'))) *parser='\'' ;
> + std::size_t pos = 0;
> + while ((pos = str.find(f, pos)) != std::string::npos)
> + {
> + str.replace(pos, 1, 1, t);
> + pos += 1;
Nitpicking, but could you use 4 spaces indentation in this file?
> }
> }
>
> +static void ReplaceChars(std::string& str)
> +{
> + ReplaceChar(str, ':', ';');
> + ReplaceChar(str, '"', '\'');
> + ReplaceChar(str, '`', '\'');
> +}
> +
> static void PrintOption(const module_config_t *item, const std::string
> &opt,
> const std::string &excl, const std::string
> &args)
> {
> - char *longtext = item->psz_longtext;
> - char *text = item->psz_text;
> + std::string longtext = item->psz_longtext ? item->psz_longtext : "";
> + std::string text = item->psz_text ? item->psz_text : "";
> char i_short = item->i_short;
> ReplaceChars(longtext);
> ReplaceChars(text);
>
> - if (!longtext || strchr(longtext, '\n') || strchr(longtext, '('))
> + if (!longtext.length() || longtext.find('\n') != std::string::npos
> || longtext.find('(') != std::string::npos)
> longtext = text;
>
> printf(" \"");
> @@ -75,10 +85,10 @@ static void PrintOption(const module_config_t *item,
> const std::string &opt,
> if (!excl.empty())
> printf("%s", excl.c_str());
>
> - printf(")--%s%s[%s]", opt.c_str(), args_c, text);
> + printf(")--%s%s[%s]", opt.c_str(), args_c, text.c_str());
If we're going to use std::string (and I think we should), we might as
well use std::cout (IMHO)
>
> if (!args.empty())
> - printf(":%s:%s", longtext, args.c_str());
> + printf(":%s:%s", longtext.c_str(), args.c_str());
>
> printf("\"\\\n \"(--%s%s)-%c", opt.c_str(), excl.c_str(),
> i_short);
> } else {
> @@ -89,9 +99,9 @@ static void PrintOption(const module_config_t *item,
> const std::string &opt,
> printf("%s", args_c);
> }
>
> - printf("[%s]", text);
> + printf("[%s]", text.c_str());
> if (!args.empty())
> - printf( ":%s:%s", longtext, args.c_str());
> + printf( ":%s:%s", longtext.c_str(), args.c_str());
> puts( "\"\\");
> }
>
> @@ -108,7 +118,7 @@ static void ParseOption(const module_config_t *item)
> switch(item->i_type)
> {
> case CONFIG_ITEM_MODULE:
> - range_mod = capabilities.equal_range(item->psz_type);
> + range_mod = capabilities.equal_range(item->psz_type ?
> item->psz_type : "");
> args = "(" + (*range_mod.first).second;
> while (range_mod.first++ != range_mod.second)
> args += " " + range_mod.first->second;
> @@ -199,24 +209,38 @@ static void PrintModule(const module_t *mod)
> if (mod->psz_capability)
> capabilities.insert(mpair(mod->psz_capability, name));
>
> - module_config_t *max = &mod->p_config[mod->i_config_items];
> - for (module_config_t *cfg = mod->p_config; cfg && cfg < max; cfg++)
> + unsigned int cfg_size = 0;
> + module_config_t *cfg_list = module_config_get(mod, &cfg_size);
> +
> + for (unsigned int j = 0; j < cfg_size; ++j)
> + {
> + const module_config_t *cfg = cfg_list + j;
> if (cfg->i_type == CONFIG_SUBCATEGORY)
> categories.insert(mcpair(cfg->value.i, name));
> + }
>
> - if (!mod->parent)
> - printf("%s ", name);
> + module_config_free(cfg_list);
> +
> + if (mnames.find(name) == mnames.end())
> + {
> + printf("%s ", name);
> + mnames.insert(name);
> + }
> }
>
> static void ParseModule(const module_t *mod)
> {
> - if (mod->parent)
> - return;
> + unsigned int cfg_size = 0;
> + module_config_t *cfg_list = module_config_get(mod, &cfg_size);
>
> - module_config_t *max = mod->p_config + mod->confsize;
> - for (module_config_t *cfg = mod->p_config; cfg && cfg < max; cfg++)
> + for (unsigned int j = 0; j < cfg_size; ++j)
> + {
> + const module_config_t *cfg = cfg_list + j;
> if (CONFIG_ITEM(cfg->i_type))
> ParseOption(cfg);
> + }
> +
> + module_config_free(cfg_list);
> }
>
> int main(int argc, const char **argv)
> --
> 2.14.2
>
Other than that, LGTM. Thanks!
--
Hugo Beauzée-Luyssen
hugo at beauzee.fr
More information about the vlc-devel
mailing list