2010-04-27 21:27:52 +02:00
|
|
|
// pch.h : include file for standard system include files,
|
2008-06-06 15:43:15 +02:00
|
|
|
// or project specific include files that are used frequently, but
|
|
|
|
// are changed infrequently
|
|
|
|
//
|
|
|
|
|
2009-10-27 20:58:27 +01:00
|
|
|
/* Copyright 2009 10gen Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2008-07-20 23:37:33 +02:00
|
|
|
|
2008-06-06 15:43:15 +02:00
|
|
|
#pragma once
|
|
|
|
|
2010-04-02 20:40:19 +02:00
|
|
|
#if defined(_WIN32)
|
|
|
|
# define NOMINMAX
|
|
|
|
# include <winsock2.h> //this must be included before the first windows.h include
|
2010-04-03 02:04:56 +02:00
|
|
|
# include <ws2tcpip.h>
|
2010-04-02 20:40:19 +02:00
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2009-10-18 03:56:35 +02:00
|
|
|
#include <string>
|
|
|
|
|
2009-01-14 23:09:51 +01:00
|
|
|
namespace mongo {
|
|
|
|
|
2009-10-18 02:35:03 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2010-05-15 17:44:03 +02:00
|
|
|
#if defined(_DEBUG)
|
2009-01-15 16:17:11 +01:00
|
|
|
const bool debug=true;
|
2008-06-06 15:43:15 +02:00
|
|
|
#else
|
2009-01-15 16:17:11 +01:00
|
|
|
const bool debug=false;
|
2008-06-06 15:43:15 +02:00
|
|
|
#endif
|
|
|
|
|
2009-05-12 20:18:17 +02:00
|
|
|
// pdfile versions
|
|
|
|
const int VERSION = 4;
|
2009-09-10 23:15:37 +02:00
|
|
|
const int VERSION_MINOR = 5;
|
2009-05-12 20:18:17 +02:00
|
|
|
|
2009-06-04 13:25:58 +02:00
|
|
|
// mongo version
|
|
|
|
extern const char versionString[];
|
2009-08-07 21:37:50 +02:00
|
|
|
|
2009-08-05 22:00:27 +02:00
|
|
|
enum ExitCode {
|
|
|
|
EXIT_CLEAN = 0 ,
|
|
|
|
EXIT_BADOPTIONS = 2 ,
|
|
|
|
EXIT_REPLICATION_ERROR = 3 ,
|
2009-09-10 22:25:24 +02:00
|
|
|
EXIT_NEED_UPGRADE = 4 ,
|
2009-08-05 22:00:27 +02:00
|
|
|
EXIT_KILL = 12 ,
|
|
|
|
EXIT_ABRUBT = 14 ,
|
|
|
|
EXIT_NTSERVICE_ERROR = 20 ,
|
|
|
|
EXIT_JAVA = 21 ,
|
|
|
|
EXIT_OOM_MALLOC = 42 ,
|
|
|
|
EXIT_OOM_REALLOC = 43 ,
|
|
|
|
EXIT_FS = 45 ,
|
2010-03-08 21:55:18 +01:00
|
|
|
EXIT_CLOCK_SKEW = 47 ,
|
2009-08-07 21:37:50 +02:00
|
|
|
EXIT_POSSIBLE_CORRUPTION = 60 , // this means we detected a possible corruption situation, like a buf overflow
|
|
|
|
EXIT_UNCAUGHT = 100 , // top level exception that wasn't caught
|
|
|
|
EXIT_TEST = 101 ,
|
|
|
|
|
2009-08-05 22:00:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void dbexit( ExitCode returnCode, const char *whyMsg = "");
|
2009-08-07 21:37:50 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
this is here so you can't just type exit() to quit the program
|
|
|
|
you should either use dbexit to shutdown cleanly, or ::exit to tell the system to quiy
|
|
|
|
if you use this, you'll get a link error since mongo::exit isn't defined
|
|
|
|
*/
|
|
|
|
void exit( ExitCode returnCode );
|
2009-08-05 23:15:04 +02:00
|
|
|
bool inShutdown();
|
2009-04-20 20:23:42 +02:00
|
|
|
|
2009-01-14 23:09:51 +01:00
|
|
|
} // namespace mongo
|
|
|
|
|
2009-06-04 13:25:58 +02:00
|
|
|
#include <memory>
|
2008-09-11 16:45:57 +02:00
|
|
|
#include <string>
|
2008-06-06 15:43:15 +02:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
2009-06-04 13:25:58 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sstream>
|
|
|
|
#include <signal.h>
|
2009-01-14 23:09:51 +01:00
|
|
|
|
2009-06-04 13:25:58 +02:00
|
|
|
#include "targetver.h"
|
|
|
|
#include "time.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "limits.h"
|
2008-06-23 22:28:25 +02:00
|
|
|
|
2009-10-18 02:35:03 +02:00
|
|
|
///using namespace std;
|
2009-01-14 23:09:51 +01:00
|
|
|
|
2008-12-31 17:33:41 +01:00
|
|
|
#include <boost/archive/iterators/base64_from_binary.hpp>
|
2009-01-06 19:02:09 +01:00
|
|
|
#include <boost/archive/iterators/binary_from_base64.hpp>
|
2008-12-31 17:33:41 +01:00
|
|
|
#include <boost/archive/iterators/transform_width.hpp>
|
2009-01-06 19:02:09 +01:00
|
|
|
#include <boost/filesystem/convenience.hpp>
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
2009-01-14 23:09:51 +01:00
|
|
|
#include <boost/program_options.hpp>
|
2009-01-06 20:27:05 +01:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2009-05-15 23:27:31 +02:00
|
|
|
#include <boost/smart_ptr.hpp>
|
2009-01-06 19:02:09 +01:00
|
|
|
#define BOOST_SPIRIT_THREADSAFE
|
2009-08-25 17:10:11 +02:00
|
|
|
|
|
|
|
#include <boost/version.hpp>
|
|
|
|
|
|
|
|
#if BOOST_VERSION >= 103800
|
2009-08-25 17:41:18 +02:00
|
|
|
#define BOOST_SPIRIT_USE_OLD_NAMESPACE
|
2009-08-25 17:10:11 +02:00
|
|
|
#include <boost/spirit/include/classic_core.hpp>
|
|
|
|
#include <boost/spirit/include/classic_loops.hpp>
|
2009-12-01 00:48:55 +01:00
|
|
|
#include <boost/spirit/include/classic_lists.hpp>
|
2009-08-25 17:10:11 +02:00
|
|
|
#else
|
2009-01-06 19:02:09 +01:00
|
|
|
#include <boost/spirit/core.hpp>
|
|
|
|
#include <boost/spirit/utility/loops.hpp>
|
2009-12-01 00:48:55 +01:00
|
|
|
#include <boost/spirit/utility/lists.hpp>
|
2009-08-25 17:10:11 +02:00
|
|
|
#endif
|
|
|
|
|
2009-05-19 00:17:27 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
2009-07-24 20:28:05 +02:00
|
|
|
#include <boost/thread/thread.hpp>
|
|
|
|
#include <boost/thread/condition.hpp>
|
|
|
|
#include <boost/thread/recursive_mutex.hpp>
|
|
|
|
#include <boost/thread/xtime.hpp>
|
2008-06-24 23:31:51 +02:00
|
|
|
#undef assert
|
2010-04-24 02:09:32 +02:00
|
|
|
#define assert MONGO_assert
|
2009-10-18 02:35:03 +02:00
|
|
|
|
|
|
|
namespace mongo {
|
|
|
|
using namespace boost::filesystem;
|
|
|
|
}
|
2008-06-27 20:35:05 +02:00
|
|
|
|
2009-06-04 13:25:58 +02:00
|
|
|
#include "util/debug_util.h"
|
2008-06-27 20:35:05 +02:00
|
|
|
#include "util/goodies.h"
|
2008-07-09 18:32:11 +02:00
|
|
|
#include "util/log.h"
|
2009-06-04 13:25:58 +02:00
|
|
|
#include "util/allocator.h"
|
|
|
|
#include "util/assert_util.h"
|
|
|
|
|
|
|
|
namespace mongo {
|
|
|
|
|
|
|
|
void sayDbContext(const char *msg = 0);
|
|
|
|
void rawOut( const string &s );
|
2009-05-12 19:38:33 +02:00
|
|
|
|
2009-06-04 13:25:58 +02:00
|
|
|
} // namespace mongo
|
|
|
|
|
|
|
|
namespace mongo {
|
|
|
|
|
|
|
|
const char * gitVersion();
|
2010-05-03 01:17:35 +02:00
|
|
|
string sysInfo();
|
2009-06-04 13:25:58 +02:00
|
|
|
string mongodVersion();
|
|
|
|
|
|
|
|
void printGitVersion();
|
|
|
|
void printSysInfo();
|
|
|
|
|
|
|
|
typedef char _TCHAR;
|
|
|
|
} // namespace mongo
|