diff options
| author | Venky Shankar <venky@gluster.com> | 2011-04-25 03:10:01 +0000 | 
|---|---|---|
| committer | Anand Avati <avati@gluster.com> | 2011-05-20 11:01:49 -0700 | 
| commit | 2cd8411a0278f98ed820aad3e482de079d0540c0 (patch) | |
| tree | 66cd9fa15fe8d269277b41469c3f45a12f59c24b /cli/src/cli-cmd-parser.c | |
| parent | 03c58c782d99440a5947289d0ff216bca8ef7c57 (diff) | |
cli log level command and per translator log level
Signed-off-by: Venky Shankar <venky@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2714 (implement cli log level command)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2714
Diffstat (limited to 'cli/src/cli-cmd-parser.c')
| -rw-r--r-- | cli/src/cli-cmd-parser.c | 55 | 
1 files changed, 55 insertions, 0 deletions
diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c index 1b3c5ca2d26..d18336e7e28 100644 --- a/cli/src/cli-cmd-parser.c +++ b/cli/src/cli-cmd-parser.c @@ -1015,6 +1015,61 @@ out:  }  int32_t +cli_cmd_log_level_parse (const char **words, int worcount, dict_t **options) +{ +        dict_t *dict            = NULL; +        int     ret             = -1; + +        GF_ASSERT (words); +        GF_ASSERT (options); + +        /* +         * loglevel command format: +         *  > volume log level <VOL> <XLATOR[*]> <LOGLEVEL> +         *  > volume log level colon-o posix WARNING +         *  > volume log level colon-o replicate* DEBUG +         *  > volume log level coon-o * TRACE +         */ + +        GF_ASSERT ((strncmp(words[0], "volume", 6) == 0)); +        GF_ASSERT ((strncmp(words[1], "log", 3) == 0)); +        GF_ASSERT ((strncmp(words[2], "level", 5) == 0)); + +        ret = glusterd_check_log_level(words[5]); +        if (ret == -1) { +                cli_out("invalid log level [%s] specified", words[4]); +                goto out; +        } + +        dict = dict_new (); +        if (!dict) +                goto out; + +        GF_ASSERT(words[3]); +        GF_ASSERT(words[4]); + +        ret = dict_set_str (dict, "volname", (char *)words[3]); +        if (ret) +                goto out; + +        ret = dict_set_str (dict, "xlator", (char *)words[4]); +        if (ret) +                goto out; + +        ret = dict_set_str (dict, "loglevel", (char *)words[5]); +        if (ret) +                goto out; + +        *options = dict; + + out: +        if (ret && dict) +                dict_destroy (dict); + +        return ret; +} + +int32_t  cli_cmd_log_locate_parse (const char **words, int wordcount, dict_t **options)  {          dict_t  *dict = NULL;  | 
