]> git.proxmox.com Git - ceph.git/blob - ceph/src/common/version.cc
update sources to v12.1.0
[ceph.git] / ceph / src / common / version.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2011 New Dream Network
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15 #include <string.h>
16
17 #include "ceph_ver.h"
18 #include "common/version.h"
19 #include "include/rados.h"
20
21 #include <sstream>
22
23 #define _STR(x) #x
24 #define STRINGIFY(x) _STR(x)
25
26 const char *ceph_version_to_str(void)
27 {
28 return CEPH_GIT_NICE_VER;
29 }
30
31 const char *git_version_to_str(void)
32 {
33 return STRINGIFY(CEPH_GIT_VER);
34 }
35
36 std::string const pretty_version_to_str(void)
37 {
38 std::ostringstream oss;
39 oss << "ceph version " << CEPH_GIT_NICE_VER
40 << " (" << STRINGIFY(CEPH_GIT_VER) << ") "
41 << ceph_release_name(CEPH_RELEASE)
42 << " (" << CEPH_RELEASE_TYPE << ")";
43 return oss.str();
44 }
45
46 unsigned ceph_release(void)
47 {
48 return CEPH_RELEASE;
49 }
50
51 const char *ceph_release_type(void)
52 {
53 return CEPH_RELEASE_TYPE;
54 }