blob: bba3dd1913c7229ae4ca826e08ab46ed639876f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#include "pch.h"
#include <cstdlib>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <string>
#include "version.h"
namespace mongo {
//
// mongo processes version support
//
const char versionString[] = "1.6.2";
string mongodVersion() {
stringstream ss;
ss << "db version v" << versionString << ", pdfile version " << VERSION << "." << VERSION_MINOR;
return ss.str();
}
//
// git version support
//
#ifndef _SCONS
// only works in scons
const char * gitVersion(){ return "not-scons"; }
#endif
void printGitVersion() { log() << "git version: " << gitVersion() << endl; }
//
// sys info support
//
#ifndef _SCONS
#if defined(_WIN32)
string sysInfo(){
stringstream ss;
ss << "not-scons win";
ss << " mscver:" << _MSC_FULL_VER << " built:" << __DATE__;
ss << " boostver:" << BOOST_VERSION;
#if( !defined(_MT) )
#error _MT is not defined
#endif
ss << (sizeof(char *) == 8) ? " 64bit" : " 32bit";
return ss.str();
}
#else
string sysInfo(){ return ""; }
#endif
#endif
void printSysInfo() { log() << "sys info: " << sysInfo() << endl; }
//
// 32 bit systems warning
//
void show_32_warning(){
bool warned = false;
{
const char * foo = strchr( versionString , '.' ) + 1;
int bar = atoi( foo );
if ( ( 2 * ( bar / 2 ) ) != bar ) {
cout << "\n** NOTE: This is a development version (" << versionString << ") of MongoDB.";
cout << "\n** Not recommended for production. \n" << endl;
warned = true;
}
}
if ( sizeof(int*) != 4 )
return;
if( !warned ) // prettier this way
cout << endl;
cout << "** NOTE: when using MongoDB 32 bit, you are limited to about 2 gigabytes of data" << endl;
cout << "** see http://blog.mongodb.org/post/137788967/32-bit-limitations" << endl;
cout << endl;
}
}
|