0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/pch.h

171 lines
4.3 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.
*/
#ifndef MONGO_PCH_H
#define MONGO_PCH_H
2008-06-06 15:43:15 +02:00
#if defined(MONGO_EXPOSE_MACROS)
2010-06-06 02:55:11 +02:00
# define JS_C_STRINGS_ARE_UTF8
# undef SUPPORT_UCP
# define SUPPORT_UCP
# undef SUPPORT_UTF8
# define SUPPORT_UTF8
# undef _CRT_SECURE_NO_WARNINGS
# define _CRT_SECURE_NO_WARNINGS
#endif
2010-06-08 03:50:36 +02:00
#if defined(WIN32)
2010-07-13 07:35:14 +02:00
#ifndef _WIN32
2010-06-08 03:50:36 +02:00
#define _WIN32
#endif
2010-07-13 07:35:14 +02:00
#endif
2010-04-02 20:40:19 +02:00
#if defined(_WIN32)
2010-07-01 16:29:31 +02:00
# ifndef NOMINMAX
# define NOMINMAX
# endif
2010-06-06 02:55:11 +02:00
# include <winsock2.h> //this must be included before the first windows.h include
# include <ws2tcpip.h>
# include <wspiapi.h>
2010-06-06 02:55:11 +02:00
# include <windows.h>
2010-04-02 20:40:19 +02:00
#endif
2010-05-26 03:11:38 +02:00
#include <ctime>
#include <sstream>
#include <string>
#include <memory>
2009-10-18 03:56:35 +02:00
#include <string>
#include <iostream>
#include <fstream>
#include <map>
#include <vector>
#include <set>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
#include <signal.h>
#include "targetver.h"
#include "time.h"
#include "string.h"
#include "limits.h"
#include <boost/any.hpp>
#include <boost/archive/iterators/transform_width.hpp>
#include <boost/filesystem/convenience.hpp>
2010-07-07 04:19:31 +02:00
#include <boost/filesystem/exception.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/program_options.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/smart_ptr.hpp>
2010-06-07 04:19:06 +02:00
#include <boost/function.hpp>
#include "boost/bind.hpp"
#include "boost/function.hpp"
#include <boost/thread/tss.hpp>
2010-05-26 03:11:38 +02:00
#include "boost/detail/endian.hpp"
#define BOOST_SPIRIT_THREADSAFE
#include <boost/version.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/thread/thread.hpp>
#include <boost/thread/condition.hpp>
#include <boost/thread/recursive_mutex.hpp>
#include <boost/thread/xtime.hpp>
#undef assert
#define assert MONGO_assert
2009-10-18 03:56:35 +02:00
2009-01-14 23:09:51 +01:00
namespace mongo {
using namespace std;
2010-06-28 23:15:39 +02:00
using boost::shared_ptr;
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;
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 ,
2010-08-17 02:27:34 +02:00
EXIT_ABRUPT = 14 ,
EXIT_NTSERVICE_ERROR = 20 ,
EXIT_JAVA = 21 ,
EXIT_OOM_MALLOC = 42 ,
EXIT_OOM_REALLOC = 43 ,
EXIT_FS = 45 ,
EXIT_CLOCK_SKEW = 47 ,
2010-06-04 01:28:49 +02:00
EXIT_NET_ERROR = 48 ,
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
2010-06-03 23:05:03 +02:00
you should either use dbexit to shutdown cleanly, or ::exit to tell the system to quit
2009-08-07 21:37:50 +02:00
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
namespace mongo {
using namespace boost::filesystem;
void asserted(const char *msg, const char *file, unsigned line);
}
2008-06-27 20:35:05 +02:00
#define MONGO_assert(_Expression) (void)( (!!(_Expression)) || (mongo::asserted(#_Expression, __FILE__, __LINE__), 0) )
#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 {
typedef char _TCHAR;
2010-06-02 19:09:43 +02:00
using boost::uint32_t;
using boost::uint64_t;
} // namespace mongo
#endif // MONGO_PCH_H