2 * Copyright (C) 2011 EfficiOS Inc.
4 * SPDX-License-Identifier: GPL-2.0-only
9 #include "../command.hpp"
10 #include "version.hpp"
12 #include <common/mi-lttng.hpp>
19 #include <sys/types.h>
22 #ifdef LTTNG_EMBED_HELP
23 static const char help_msg
[] =
24 #include <lttng-version.1.h>
33 static const char *lttng_license
= "lttng is free software and under the GPL license and part LGPL";
35 static struct poptOption long_options
[] = {
36 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
37 { "help", 'h', POPT_ARG_NONE
, nullptr, OPT_HELP
, nullptr, nullptr },
38 { "list-options", 0, POPT_ARG_NONE
, nullptr, OPT_LIST_OPTIONS
, nullptr, nullptr },
39 { nullptr, 0, 0, nullptr, 0, nullptr, nullptr }
45 static void create_version(struct mi_lttng_version_data
*version
)
47 strncpy(version
->version
, VERSION
, NAME_MAX
);
48 version
->version_major
= VERSION_MAJOR
;
49 version
->version_minor
= VERSION_MINOR
;
50 version
->version_patchlevel
= VERSION_PATCHLEVEL
;
51 strncpy(version
->version_commit
, GIT_VERSION
, NAME_MAX
);
52 strncpy(version
->version_name
, VERSION_NAME
, NAME_MAX
);
53 strncpy(version
->package_url
, PACKAGE_URL
, NAME_MAX
);
57 * Print the machine interface output of this command.
61 int ret
= CMD_SUCCESS
;
62 struct mi_writer
*writer
= nullptr;
63 struct mi_lttng_version_data version
;
65 create_version(&version
);
67 writer
= mi_lttng_writer_create(fileno(stdout
), lttng_opt_mi
);
69 ret
= -LTTNG_ERR_NOMEM
;
73 /* Open the command element */
74 ret
= mi_lttng_writer_command_open(writer
, mi_lttng_element_command_version
);
80 /* Beginning of output */
81 ret
= mi_lttng_writer_open_element(writer
, mi_lttng_element_command_output
);
87 /* Print the machine interface of version */
88 ret
= mi_lttng_version(writer
, &version
, VERSION_DESCRIPTION
, lttng_license
);
94 /* Close the output element */
95 ret
= mi_lttng_writer_close_element(writer
);
101 /* Close the command */
102 ret
= mi_lttng_writer_command_close(writer
);
109 if (writer
&& mi_lttng_writer_destroy(writer
)) {
110 /* Preserve original error code */
111 ret
= ret
? ret
: -LTTNG_ERR_MI_IO_FAIL
;
121 int cmd_version(int argc
, const char **argv
)
123 int opt
, ret
= CMD_SUCCESS
;
124 static poptContext pc
;
126 pc
= poptGetContext(nullptr, argc
, argv
, long_options
, 0);
127 poptReadDefaultConfig(pc
, 0);
129 while ((opt
= poptGetNextOpt(pc
)) != -1) {
134 case OPT_LIST_OPTIONS
:
135 list_cmd_options(stdout
, long_options
);
146 MSG("lttng version " VERSION
" - " VERSION_NAME
"%s",
147 GIT_VERSION
[0] == '\0' ? "" : " - " GIT_VERSION
);
148 MSG("\n" VERSION_DESCRIPTION
"\n");
149 MSG("Web site: https://lttng.org");
150 MSG("\n%s", lttng_license
);
151 if (EXTRA_VERSION_NAME
[0] != '\0') {
152 MSG("\nExtra version name: " EXTRA_VERSION_NAME
);
154 if (EXTRA_VERSION_DESCRIPTION
[0] != '\0') {
155 MSG("\nExtra version description:\n\t" EXTRA_VERSION_DESCRIPTION
);
157 if (EXTRA_VERSION_PATCHES
[0] != '\0') {
158 MSG("\nExtra version patches:\n\t" EXTRA_VERSION_PATCHES
);