Fix return value and mem leak for all commands
[lttng-tools.git] / src / bin / lttng / commands / version.c
CommitLineData
eb9cb8b7
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
82a3637f
DG
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
eb9cb8b7
DG
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19#define _GNU_SOURCE
20#include <popt.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <unistd.h>
3bd1e081 27#include <config.h>
eb9cb8b7 28
c399183f 29#include "../command.h"
eb9cb8b7
DG
30
31enum {
32 OPT_HELP = 1,
679b4943 33 OPT_LIST_OPTIONS,
eb9cb8b7
DG
34};
35
36static struct poptOption long_options[] = {
37 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
38 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
679b4943 39 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
eb9cb8b7
DG
40 {0, 0, 0, 0, 0, 0, 0}
41};
42
43/*
44 * usage
45 */
46static void usage(FILE *ofp)
47{
48 fprintf(ofp, "usage: lttng version\n");
49 fprintf(ofp, "\n");
50 fprintf(ofp, " -h, --help Show this help\n");
679b4943 51 fprintf(ofp, " --list-options Simple listing of options\n");
eb9cb8b7
DG
52 fprintf(ofp, "\n");
53}
54
55/*
56 * cmd_version
57 */
58int cmd_version(int argc, const char **argv)
59{
60 int opt, ret = CMD_SUCCESS;
61 static poptContext pc;
62
63 pc = poptGetContext(NULL, argc, argv, long_options, 0);
64 poptReadDefaultConfig(pc, 0);
65
66 while ((opt = poptGetNextOpt(pc)) != -1) {
67 switch (opt) {
68 case OPT_HELP:
ca1c3607 69 usage(stdout);
eb9cb8b7 70 goto end;
679b4943
SM
71 case OPT_LIST_OPTIONS:
72 list_cmd_options(stdout, long_options);
679b4943 73 goto end;
eb9cb8b7
DG
74 default:
75 usage(stderr);
76 ret = CMD_UNDEFINED;
77 goto end;
78 }
79 }
80
81 MSG("lttng version " VERSION);
82 MSG("Web site: http://lttng.org/");
83 MSG("\nlttng is free software and under the GPL license.");
84
85end:
ca1c3607 86 poptFreeContext(pc);
eb9cb8b7
DG
87 return ret;
88}
This page took 0.027686 seconds and 4 git commands to generate.