2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <sys/types.h>
27 #include <common/mi-lttng.h>
29 #include "../command.h"
31 #ifdef LTTNG_EMBED_HELP
32 static const char help_msg
[] =
33 #include <lttng-version.1.h>
42 static const char *lttng_license
= "lttng is free software and under the GPL license and part LGPL";
44 static struct poptOption long_options
[] = {
45 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
46 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
47 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
54 static void create_version(struct mi_lttng_version
*version
)
56 strncpy(version
->version
, VERSION
, NAME_MAX
);
57 version
->version_major
= VERSION_MAJOR
;
58 version
->version_minor
= VERSION_MINOR
;
59 version
->version_patchlevel
= VERSION_PATCHLEVEL
;
60 strncpy(version
->version_commit
, GIT_VERSION
, NAME_MAX
);
61 strncpy(version
->version_name
, VERSION_NAME
, NAME_MAX
);
62 strncpy(version
->package_url
, PACKAGE_URL
, NAME_MAX
);
66 * Print the machine interface output of this command.
70 int ret
= CMD_SUCCESS
;
71 struct mi_writer
*writer
= NULL
;
72 struct mi_lttng_version version
;
74 create_version(&version
);
76 writer
= mi_lttng_writer_create(fileno(stdout
), lttng_opt_mi
);
78 ret
= -LTTNG_ERR_NOMEM
;
82 /* Open the command element */
83 ret
= mi_lttng_writer_command_open(writer
,
84 mi_lttng_element_command_version
);
90 /* Beginning of output */
91 ret
= mi_lttng_writer_open_element(writer
,
92 mi_lttng_element_command_output
);
98 /* Print the machine interface of version */
99 ret
= mi_lttng_version(writer
, &version
,
100 VERSION_DESCRIPTION
, lttng_license
);
106 /* Close the output element */
107 ret
= mi_lttng_writer_close_element(writer
);
113 /* Close the command */
114 ret
= mi_lttng_writer_command_close(writer
);
121 if (writer
&& mi_lttng_writer_destroy(writer
)) {
122 /* Preserve original error code */
123 ret
= ret
? ret
: -LTTNG_ERR_MI_IO_FAIL
;
133 int cmd_version(int argc
, const char **argv
)
135 int opt
, ret
= CMD_SUCCESS
;
136 static poptContext pc
;
138 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
139 poptReadDefaultConfig(pc
, 0);
141 while ((opt
= poptGetNextOpt(pc
)) != -1) {
146 case OPT_LIST_OPTIONS
:
147 list_cmd_options(stdout
, long_options
);
158 MSG("lttng version " VERSION
" - " VERSION_NAME
"%s",
159 GIT_VERSION
[0] == '\0' ? "" : " - " GIT_VERSION
);
160 MSG("\n" VERSION_DESCRIPTION
"\n");
161 MSG("Web site: http://lttng.org");
162 MSG("\n%s", lttng_license
);