f6aaa0be283b82779a0c975fecec59cf7ca61eae
[vpp.git] / 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 <app/version.h>
17
18 static char * vpe_version_string = 
19     "vpp v" VPP_BUILD_VER 
20     " built by " VPP_BUILD_USER 
21     " on " VPP_BUILD_HOST 
22     " at " VPP_BUILD_DATE;
23 static char * vpe_dir_string = "Built in " VPP_BUILD_TOPDIR;
24
25 static clib_error_t *
26 show_vpe_version_command_fn (vlib_main_t * vm,
27                  unformat_input_t * input,
28                  vlib_cli_command_t * cmd)
29 {
30   vlib_cli_output (vm, "%s", vpe_version_string);
31   if (unformat (input, "verbose")){
32      vlib_cli_output (vm, "%s", vpe_dir_string);
33   }
34   return 0;
35 }
36
37 VLIB_CLI_COMMAND (show_vpe_version_command, static) = {
38   .path = "show version",
39   .short_help = "show version information",
40   .function = show_vpe_version_command_fn,
41 };
42
43 char * vpe_api_get_build_directory (void) 
44 {
45   return VPP_BUILD_TOPDIR;
46 }
47
48 char * vpe_api_get_version (void) 
49 {
50   return VPP_BUILD_VER;
51 }
52 char * vpe_api_get_build_date (void) 
53 {
54   return VPP_BUILD_DATE;
55 }