0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
mongodb/pch.h

158 lines
4.0 KiB
C
Raw Normal View History

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
//
/* 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-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 {
using namespace std;
2010-05-15 17:44:03 +02:00
#if defined(_DEBUG)
const bool debug=true;
2008-06-06 15:43:15 +02:00
#else
const bool debug=false;
2008-06-06 15:43:15 +02:00
#endif
// pdfile versions
const int VERSION = 4;
2009-09-10 23:15:37 +02:00
const int VERSION_MINOR = 5;
// mongo version
extern const char versionString[];
2009-08-07 21:37:50 +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 ,
EXIT_KILL = 12 ,
EXIT_ABRUBT = 14 ,
EXIT_NTSERVICE_ERROR = 20 ,
EXIT_JAVA = 21 ,
EXIT_OOM_MALLOC = 42 ,
EXIT_OOM_REALLOC = 43 ,
EXIT_FS = 45 ,
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 ,
};
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 );
bool inShutdown();
2009-01-14 23:09:51 +01:00
} // namespace mongo
#include <memory>
#include <string>
2008-06-06 15:43:15 +02:00
#include <iostream>
#include <fstream>
#include <map>
#include <vector>
#include <set>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
#include <signal.h>
2009-01-14 23:09:51 +01:00
#include "targetver.h"
#include "time.h"
#include "string.h"
#include "limits.h"
2008-06-23 22:28:25 +02:00
///using namespace std;
2009-01-14 23:09:51 +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>
#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>
#include <boost/smart_ptr.hpp>
2009-01-06 19:02:09 +01:00
#define BOOST_SPIRIT_THREADSAFE
#include <boost/version.hpp>
#if BOOST_VERSION >= 103800
#define BOOST_SPIRIT_USE_OLD_NAMESPACE
#include <boost/spirit/include/classic_core.hpp>
#include <boost/spirit/include/classic_loops.hpp>
#include <boost/spirit/include/classic_lists.hpp>
#else
2009-01-06 19:02:09 +01:00
#include <boost/spirit/core.hpp>
#include <boost/spirit/utility/loops.hpp>
#include <boost/spirit/utility/lists.hpp>
#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
namespace mongo {
using namespace boost::filesystem;
}
2008-06-27 20:35:05 +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"
#include "util/allocator.h"
#include "util/assert_util.h"
namespace mongo {
void sayDbContext(const char *msg = 0);
void rawOut( const string &s );
} // namespace mongo
namespace mongo {
const char * gitVersion();
2010-05-03 01:17:35 +02:00
string sysInfo();
string mongodVersion();
void printGitVersion();
void printSysInfo();
typedef char _TCHAR;
} // namespace mongo