Reorganize source tree to use single autotools instance
[vpp.git] / src / vpp / app / version.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <vlib/vlib.h>
16 #include <vppinfra/cpu.h>
17 #include <vpp/app/version.h>
18
19 #if DPDK > 0
20 #include <rte_version.h>
21 #include <vnet/vnet.h>
22 #include <vnet/devices/dpdk/dpdk.h>
23 #endif /* DPDK */
24
25 static char *vpe_version_string =
26   "vpp v" VPP_BUILD_VER
27   " built by " VPP_BUILD_USER " on " VPP_BUILD_HOST " at " VPP_BUILD_DATE;
28
29 static char *vpe_compiler =
30 #if defined(__INTEL_COMPILER)
31 #define __(x) #x
32 #define _(x) __(x)
33   "icc " _(__INTEL_COMPILER) " (" __VERSION__ ")";
34 #undef _
35 #undef __
36 #elif defined(__clang__)
37   "Clang/LLVM " __clang_version__;
38 #elif defined (__GNUC__)
39   "GCC " __VERSION__;
40 #else
41   "unknown compiler";
42 #endif
43
44 static clib_error_t *
45 show_vpe_version_command_fn (vlib_main_t * vm,
46                              unformat_input_t * input,
47                              vlib_cli_command_t * cmd)
48 {
49   if (unformat (input, "verbose"))
50     {
51 #define _(a,b,c) vlib_cli_output (vm, "%-25s " b, a ":", c);
52       _("Version", "%s", "v" VPP_BUILD_VER);
53       _("Compiled by", "%s", VPP_BUILD_USER);
54       _("Compile host", "%s", VPP_BUILD_HOST);
55       _("Compile date", "%s", VPP_BUILD_DATE);
56       _("Compile location", "%s", VPP_BUILD_TOPDIR);
57       _("Compiler", "%s", vpe_compiler);
58       _("Current PID", "%d", getpid ());
59 #if DPDK > 0
60       _("DPDK Version", "%s", rte_version ());
61       _("DPDK EAL init args", "%s", dpdk_config_main.eal_init_args_str);
62 #endif
63 #undef _
64     }
65   else
66     vlib_cli_output (vm, "%s", vpe_version_string);
67   return 0;
68 }
69
70 /* *INDENT-OFF* */
71 VLIB_CLI_COMMAND (show_vpe_version_command, static) = {
72   .path = "show version",
73   .short_help = "show version information",
74   .function = show_vpe_version_command_fn,
75 };
76 /* *INDENT-ON* */
77
78 char *
79 vpe_api_get_build_directory (void)
80 {
81   return VPP_BUILD_TOPDIR;
82 }
83
84 char *
85 vpe_api_get_version (void)
86 {
87   return VPP_BUILD_VER;
88 }
89
90 char *
91 vpe_api_get_build_date (void)
92 {
93   return VPP_BUILD_DATE;
94 }
95
96 /*
97  * fd.io coding-style-patch-verification: ON
98  *
99  * Local Variables:
100  * eval: (c-set-style "gnu")
101  * End:
102  */