From 6fb470a39ef8900b71634333b0a2227dc8b62799 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 26 Aug 2010 14:52:12 +0200 Subject: Add support for creating other build systems (meta-building) Add support for automake, VC++ 9, and VC++ 10. Also add the Win32 and 'NULL' threading model implementations. --- odb/Makefile.am | 26 +++ odb/compilers/vc/pre.hxx | 1 + odb/core.hxx | 4 + odb/database.hxx | 10 +- odb/details/buffer.hxx | 8 +- odb/details/condition.hxx | 38 ++++ odb/details/config-vc.h | 17 ++ odb/details/config.h.in | 16 ++ odb/details/config.hxx | 23 +++ odb/details/exception.hxx | 8 +- odb/details/export.hxx | 29 +++ odb/details/lock.hxx | 7 +- odb/details/meta/answer.hxx | 4 + odb/details/meta/class-p.hxx | 4 + odb/details/meta/polymorphic-p.hxx | 4 + odb/details/meta/remove-c.hxx | 4 + odb/details/meta/remove-cv.hxx | 4 + odb/details/meta/remove-p.hxx | 4 + odb/details/meta/remove-v.hxx | 4 + odb/details/mutex.hxx | 37 ++++ odb/details/posix/condition.hxx | 7 +- odb/details/posix/exceptions.hxx | 7 +- odb/details/posix/mutex.hxx | 8 +- odb/details/posix/thread.hxx | 8 +- odb/details/posix/tls.hxx | 16 +- odb/details/shared-ptr.hxx | 4 + odb/details/shared-ptr/base.hxx | 16 +- odb/details/thread.hxx | 14 ++ odb/details/tls.hxx | 98 +++++++++- odb/details/win32/condition.cxx | 57 ++++++ odb/details/win32/condition.hxx | 52 ++++++ odb/details/win32/condition.ixx | 32 ++++ odb/details/win32/exceptions.cxx | 18 ++ odb/details/win32/exceptions.hxx | 39 ++++ odb/details/win32/mutex.hxx | 46 +++++ odb/details/win32/mutex.ixx | 34 ++++ odb/details/win32/thread.cxx | 91 ++++++++++ odb/details/win32/thread.hxx | 62 +++++++ odb/exception.hxx | 8 +- odb/exceptions.hxx | 20 ++- odb/forward.hxx | 4 + odb/libodb-vc10.vcxproj | 172 ++++++++++++++++++ odb/libodb-vc10.vcxproj.filters | 21 +++ odb/libodb-vc9.vcproj | 357 +++++++++++++++++++++++++++++++++++++ odb/makefile | 74 ++++++-- odb/pointer-traits.hxx | 4 + odb/query.hxx | 4 + odb/result.hxx | 4 + odb/traits.hxx | 4 + odb/transaction.hxx | 10 +- odb/version.hxx | 4 + 51 files changed, 1498 insertions(+), 49 deletions(-) create mode 100644 odb/Makefile.am create mode 100644 odb/details/config-vc.h create mode 100644 odb/details/config.h.in create mode 100644 odb/details/config.hxx create mode 100644 odb/details/export.hxx create mode 100644 odb/details/win32/condition.cxx create mode 100644 odb/details/win32/condition.hxx create mode 100644 odb/details/win32/condition.ixx create mode 100644 odb/details/win32/exceptions.cxx create mode 100644 odb/details/win32/exceptions.hxx create mode 100644 odb/details/win32/mutex.hxx create mode 100644 odb/details/win32/mutex.ixx create mode 100644 odb/details/win32/thread.cxx create mode 100644 odb/details/win32/thread.hxx create mode 100644 odb/libodb-vc10.vcxproj create mode 100644 odb/libodb-vc10.vcxproj.filters create mode 100644 odb/libodb-vc9.vcproj (limited to 'odb') diff --git a/odb/Makefile.am b/odb/Makefile.am new file mode 100644 index 0000000..cfb0af8 --- /dev/null +++ b/odb/Makefile.am @@ -0,0 +1,26 @@ +# file : odb/Makefile.am +# author : Boris Kolpackov +# copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + +lib_LTLIBRARIES = libodb.la +libodb_la_SOURCES = __path__(sources) + +odbincludedir = $(includedir)/odb +nobase_odbinclude_HEADERS = __path__(headers) +nobase_nodist_odbinclude_HEADERS = details/config.h + +EXTRA_DIST = __file__(extra_dist) + +if ODB_THREADS_POSIX +libodb_la_SOURCES += __path__(posix_sources) +nobase_odbinclude_HEADERS += __path__(posix_headers) +endif + +if ODB_THREADS_WIN32 +libodb_la_SOURCES += __path__(win32_sources) +nobase_odbinclude_HEADERS += __path__(win32_headers) +endif + +AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) +libodb_la_LDFLAGS = -release __value__(interface_version) diff --git a/odb/compilers/vc/pre.hxx b/odb/compilers/vc/pre.hxx index 7f664fd..cdcb527 100644 --- a/odb/compilers/vc/pre.hxx +++ b/odb/compilers/vc/pre.hxx @@ -18,6 +18,7 @@ // #pragma warning (disable:4355) // passing 'this' to a member #pragma warning (disable:4800) // forcing value to bool +#pragma warning (disable:4290) // exception specification ignored //#pragma warning (disable:4275) // non dll-interface base //#pragma warning (disable:4251) // base needs to have dll-interface //#pragma warning (disable:4224) // nonstandard extension (/Za option) diff --git a/odb/core.hxx b/odb/core.hxx index ea0ed05..53aea04 100644 --- a/odb/core.hxx +++ b/odb/core.hxx @@ -6,6 +6,8 @@ #ifndef ODB_CORE_HXX #define ODB_CORE_HXX +#include + #ifdef ODB_COMPILER # define ODB_PRAGMA_IMPL(x) _Pragma (#x) # define ODB_PRAGMA(x) ODB_PRAGMA_IMPL (odb x) @@ -15,4 +17,6 @@ #include +#include + #endif // ODB_CORE_HXX diff --git a/odb/database.hxx b/odb/database.hxx index 1f08daf..ca0cc4c 100644 --- a/odb/database.hxx +++ b/odb/database.hxx @@ -6,16 +6,22 @@ #ifndef ODB_DATABASE_HXX #define ODB_DATABASE_HXX +#include + +#include + #include #include #include #include +#include + namespace odb { class transaction_impl; - class database + class LIBODB_EXPORT database { public: virtual @@ -100,4 +106,6 @@ namespace odb #include #include +#include + #endif // ODB_DATABASE_HXX diff --git a/odb/details/buffer.hxx b/odb/details/buffer.hxx index 4393114..87ee97f 100644 --- a/odb/details/buffer.hxx +++ b/odb/details/buffer.hxx @@ -6,14 +6,18 @@ #ifndef ODB_BUFFER_DETAILS_HXX #define ODB_BUFFER_DETAILS_HXX +#include + #include #include // std::size_t +#include + namespace odb { namespace details { - class buffer + class LIBODB_EXPORT buffer { public: ~buffer () @@ -56,4 +60,6 @@ namespace odb } } +#include + #endif // ODB_BUFFER_DETAILS_HXX diff --git a/odb/details/condition.hxx b/odb/details/condition.hxx index 9e416d6..127d038 100644 --- a/odb/details/condition.hxx +++ b/odb/details/condition.hxx @@ -6,6 +6,44 @@ #ifndef ODB_DETAILS_CONDITION_HXX #define ODB_DETAILS_CONDITION_HXX +#include + +#include +#include + +#ifdef ODB_THREADS_NONE + +namespace odb +{ + namespace details + { + class mutex; + class LIBODB_EXPORT condition + { + public: + condition (mutex&) {} + + void + signal () {} + + void + wait () {} + + private: + condition (const condition&); + condition& operator= (const condition&); + }; + } +} + +#elif defined(ODB_THREADS_POSIX) #include +#elif defined(ODB_THREADS_WIN32) +#include +#else +# error unknown threading model +#endif + +#include #endif // ODB_DETAILS_CONDITION_HXX diff --git a/odb/details/config-vc.h b/odb/details/config-vc.h new file mode 100644 index 0000000..f90ac4d --- /dev/null +++ b/odb/details/config-vc.h @@ -0,0 +1,17 @@ +/* file : odb/details/config-vc.h + * author : Boris Kolpackov + * copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC + * license : GNU GPL v2; see accompanying LICENSE file + */ + +/* Configuration file for Windows/VC++. */ + +#ifndef ODB_DETAILS_CONFIG_VC_H +#define ODB_DETAILS_CONFIG_VC_H + +#define ODB_THREADS_WIN32 +#define ODB_THREADS_TLS_DECLSPEC_POINTER +#define ODB_THREADS_TLS_DECLSPEC_OBJECT + + +#endif /* ODB_DETAILS_CONFIG_VC_H */ diff --git a/odb/details/config.h.in b/odb/details/config.h.in new file mode 100644 index 0000000..aa2417d --- /dev/null +++ b/odb/details/config.h.in @@ -0,0 +1,16 @@ +/* file : odb/details/config.h.in + * author : Boris Kolpackov + * copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC + * license : GNU GPL v2; see accompanying LICENSE file + */ + +/* This file is automatically processed by configure. */ + +#ifndef ODB_DETAILS_CONFIG_H +#define ODB_DETAILS_CONFIG_H + +#undef ODB_THREADS_NONE +#undef ODB_THREADS_POSIX +#undef ODB_THREADS_WIN32 + +#endif /* ODB_DETAILS_CONFIG_H */ diff --git a/odb/details/config.hxx b/odb/details/config.hxx new file mode 100644 index 0000000..c5b97df --- /dev/null +++ b/odb/details/config.hxx @@ -0,0 +1,23 @@ +// file : odb/details/config.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_CONFIG_HXX +#define ODB_DETAILS_CONFIG_HXX + +// no pre + +#ifdef _MSC_VER +# include +#else +# ifdef HAVE_CONFIG_H +# include +# else +# define ODB_THREADS_POSIX +# endif +#endif + +// no post + +#endif // ODB_DETAILS_CONFIG_HXX diff --git a/odb/details/exception.hxx b/odb/details/exception.hxx index 2da18ac..cebb8ca 100644 --- a/odb/details/exception.hxx +++ b/odb/details/exception.hxx @@ -6,16 +6,22 @@ #ifndef ODB_DETAILS_EXCEPTION_HXX #define ODB_DETAILS_EXCEPTION_HXX +#include + #include +#include + namespace odb { namespace details { - struct exception: odb::exception + struct LIBODB_EXPORT exception: odb::exception { }; } } +#include + #endif // ODB_DETAILS_EXCEPTION_HXX diff --git a/odb/details/export.hxx b/odb/details/export.hxx new file mode 100644 index 0000000..ef43c6c --- /dev/null +++ b/odb/details/export.hxx @@ -0,0 +1,29 @@ +// file : odb/details/export.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_EXPORT_HXX +#define ODB_DETAILS_EXPORT_HXX + +#include + +#include + +#ifdef LIBODB_STATIC_LIB +# define LIBODB_EXPORT +#else +# ifdef _WIN32 +# ifdef LIBODB_DYNAMIC_LIB +# define LIBODB_EXPORT __declspec(dllexport) +# else +# define LIBODB_EXPORT __declspec(dllimport) +# endif +# else +# define LIBODB_EXPORT +# endif +#endif + +#include + +#endif // ODB_DETAILS_EXPORT_HXX diff --git a/odb/details/lock.hxx b/odb/details/lock.hxx index 0ee5a6d..044dfdb 100644 --- a/odb/details/lock.hxx +++ b/odb/details/lock.hxx @@ -6,13 +6,16 @@ #ifndef ODB_DETAILS_LOCK_HXX #define ODB_DETAILS_LOCK_HXX +#include + +#include #include namespace odb { namespace details { - struct lock + struct LIBODB_EXPORT lock { lock (mutex& m) : mutex_ (m), locked_ (true) @@ -43,4 +46,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_LOCK_HXX diff --git a/odb/details/meta/answer.hxx b/odb/details/meta/answer.hxx index 31387a9..f607c71 100644 --- a/odb/details/meta/answer.hxx +++ b/odb/details/meta/answer.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_META_ANSWER_HXX #define ODB_DETAILS_META_ANSWER_HXX +#include + namespace odb { namespace details @@ -25,4 +27,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_META_ANSWER_HXX diff --git a/odb/details/meta/class-p.hxx b/odb/details/meta/class-p.hxx index c680d8e..dcbdda2 100644 --- a/odb/details/meta/class-p.hxx +++ b/odb/details/meta/class-p.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_META_CLASS_HXX #define ODB_DETAILS_META_CLASS_HXX +#include + #include namespace odb @@ -28,4 +30,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_META_CLASS_HXX diff --git a/odb/details/meta/polymorphic-p.hxx b/odb/details/meta/polymorphic-p.hxx index 6e95144..f6f122f 100644 --- a/odb/details/meta/polymorphic-p.hxx +++ b/odb/details/meta/polymorphic-p.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_META_POLYMORPHIC_HXX #define ODB_DETAILS_META_POLYMORPHIC_HXX +#include + #include #include @@ -51,4 +53,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_META_POLYMORPHIC_HXX diff --git a/odb/details/meta/remove-c.hxx b/odb/details/meta/remove-c.hxx index 9d8e0b5..6326e2a 100644 --- a/odb/details/meta/remove-c.hxx +++ b/odb/details/meta/remove-c.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_META_REMOVE_C_HXX #define ODB_DETAILS_META_REMOVE_C_HXX +#include + namespace odb { namespace details @@ -27,4 +29,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_META_REMOVE_C_HXX diff --git a/odb/details/meta/remove-cv.hxx b/odb/details/meta/remove-cv.hxx index 958fc08..f5982e1 100644 --- a/odb/details/meta/remove-cv.hxx +++ b/odb/details/meta/remove-cv.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_META_REMOVE_CV_HXX #define ODB_DETAILS_META_REMOVE_CV_HXX +#include + #include #include @@ -24,4 +26,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_META_REMOVE_CV_HXX diff --git a/odb/details/meta/remove-p.hxx b/odb/details/meta/remove-p.hxx index c8f6d92..b017399 100644 --- a/odb/details/meta/remove-p.hxx +++ b/odb/details/meta/remove-p.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_META_REMOVE_P_HXX #define ODB_DETAILS_META_REMOVE_P_HXX +#include + namespace odb { namespace details @@ -27,4 +29,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_META_REMOVE_P_HXX diff --git a/odb/details/meta/remove-v.hxx b/odb/details/meta/remove-v.hxx index c91b7e4..d77e9d2 100644 --- a/odb/details/meta/remove-v.hxx +++ b/odb/details/meta/remove-v.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_META_REMOVE_V_HXX #define ODB_DETAILS_META_REMOVE_V_HXX +#include + namespace odb { namespace details @@ -27,4 +29,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_META_REMOVE_V_HXX diff --git a/odb/details/mutex.hxx b/odb/details/mutex.hxx index e1121b9..b0d59bb 100644 --- a/odb/details/mutex.hxx +++ b/odb/details/mutex.hxx @@ -6,6 +6,43 @@ #ifndef ODB_DETAILS_MUTEX_HXX #define ODB_DETAILS_MUTEX_HXX +#include + +#include +#include + +#ifdef ODB_THREADS_NONE + +namespace odb +{ + namespace details + { + class LIBODB_EXPORT mutex + { + public: + mutex () {} + + void + lock () {} + + void + unlock () {} + + private: + mutex (const mutex&); + mutex& operator= (const mutex&); + }; + } +} + +#elif defined(ODB_THREADS_POSIX) #include +#elif defined(ODB_THREADS_WIN32) +#include +#else +# error unknown threading model +#endif + +#include #endif // ODB_DETAILS_MUTEX_HXX diff --git a/odb/details/posix/condition.hxx b/odb/details/posix/condition.hxx index 8e8e05c..1358db8 100644 --- a/odb/details/posix/condition.hxx +++ b/odb/details/posix/condition.hxx @@ -6,15 +6,18 @@ #ifndef ODB_DETAILS_POSIX_CONDITION_HXX #define ODB_DETAILS_POSIX_CONDITION_HXX +#include + #include +#include #include namespace odb { namespace details { - class condition + class LIBODB_EXPORT condition { public: ~condition (); @@ -39,4 +42,6 @@ namespace odb #include +#include + #endif // ODB_DETAILS_POSIX_CONDITION_HXX diff --git a/odb/details/posix/exceptions.hxx b/odb/details/posix/exceptions.hxx index f4b4572..76f5763 100644 --- a/odb/details/posix/exceptions.hxx +++ b/odb/details/posix/exceptions.hxx @@ -6,13 +6,16 @@ #ifndef ODB_DETAILS_POSIX_EXCEPTIONS_HXX #define ODB_DETAILS_POSIX_EXCEPTIONS_HXX +#include + +#include #include namespace odb { namespace details { - struct posix_exception: details::exception + struct LIBODB_EXPORT posix_exception: details::exception { posix_exception (int code) : code_ (code) {} @@ -28,4 +31,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_POSIX_EXCEPTIONS_HXX diff --git a/odb/details/posix/mutex.hxx b/odb/details/posix/mutex.hxx index d06a8c3..d62fa24 100644 --- a/odb/details/posix/mutex.hxx +++ b/odb/details/posix/mutex.hxx @@ -6,13 +6,17 @@ #ifndef ODB_DETAILS_POSIX_MUTEX_HXX #define ODB_DETAILS_POSIX_MUTEX_HXX +#include + #include +#include + namespace odb { namespace details { - class mutex + class LIBODB_EXPORT mutex { public: ~mutex (); @@ -37,4 +41,6 @@ namespace odb #include +#include + #endif // ODB_DETAILS_POSIX_MUTEX_HXX diff --git a/odb/details/posix/thread.hxx b/odb/details/posix/thread.hxx index 5036b37..f2e2a75 100644 --- a/odb/details/posix/thread.hxx +++ b/odb/details/posix/thread.hxx @@ -6,13 +6,17 @@ #ifndef ODB_DETAILS_POSIX_THREAD_HXX #define ODB_DETAILS_POSIX_THREAD_HXX +#include + #include +#include + namespace odb { namespace details { - class thread + class LIBODB_EXPORT thread { public: ~thread (); @@ -34,4 +38,6 @@ namespace odb #include +#include + #endif // ODB_DETAILS_POSIX_THREAD_HXX diff --git a/odb/details/posix/tls.hxx b/odb/details/posix/tls.hxx index 6e11a64..92b0f4b 100644 --- a/odb/details/posix/tls.hxx +++ b/odb/details/posix/tls.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_POSIX_TLS_HXX #define ODB_DETAILS_POSIX_TLS_HXX +#include + #include namespace odb @@ -69,23 +71,23 @@ namespace odb template inline T& - tls_get (const tls& s) + tls_get (const tls& t) { - return s.get (); + return t.get (); } template inline T* - tls_get (const tls& s) + tls_get (const tls& t) { - return s.get (); + return t.get (); } template inline void - tls_set (tls& s, T* p) + tls_set (tls& t, T* p) { - return s.set (p); + t.set (p); } } } @@ -93,4 +95,6 @@ namespace odb #include #include +#include + #endif // ODB_DETAILS_POSIX_TLS_HXX diff --git a/odb/details/shared-ptr.hxx b/odb/details/shared-ptr.hxx index 6a9a640..dfa620c 100644 --- a/odb/details/shared-ptr.hxx +++ b/odb/details/shared-ptr.hxx @@ -6,6 +6,8 @@ #ifndef ODB_DETAILS_SHARED_PTR_HXX #define ODB_DETAILS_SHARED_PTR_HXX +#include + #include namespace odb @@ -159,4 +161,6 @@ namespace odb } } +#include + #endif // ODB_DETAILS_SHARED_PTR_HXX diff --git a/odb/details/shared-ptr/base.hxx b/odb/details/shared-ptr/base.hxx index 4fbbc0b..309f7d2 100644 --- a/odb/details/shared-ptr/base.hxx +++ b/odb/details/shared-ptr/base.hxx @@ -6,16 +6,20 @@ #ifndef ODB_DETAILS_SHARED_PTR_BASE_HXX #define ODB_DETAILS_SHARED_PTR_BASE_HXX +#include + #include #include // std::size_t #include +#include + namespace odb { namespace details { - struct share + struct LIBODB_EXPORT share { explicit share (char id); @@ -32,23 +36,23 @@ namespace odb } } -void* +LIBODB_EXPORT void* operator new (std::size_t, odb::details::share) throw (std::bad_alloc); -void +LIBODB_EXPORT void operator delete (void*, odb::details::share) throw (); namespace odb { namespace details { - struct not_shared: exception + struct LIBODB_EXPORT not_shared: exception { virtual const char* what () const throw (); }; - struct shared_base + struct LIBODB_EXPORT shared_base { shared_base (); shared_base (const shared_base&); @@ -105,4 +109,6 @@ namespace odb #include #include +#include + #endif // ODB_DETAILS_SHARED_PTR_BASE_HXX diff --git a/odb/details/thread.hxx b/odb/details/thread.hxx index 4dba45e..f3da490 100644 --- a/odb/details/thread.hxx +++ b/odb/details/thread.hxx @@ -6,6 +6,20 @@ #ifndef ODB_DETAILS_THREAD_HXX #define ODB_DETAILS_THREAD_HXX +#include + +#include + +#ifdef ODB_THREADS_NONE +# error no thread support available +#elif defined(ODB_THREADS_POSIX) #include +#elif defined(ODB_THREADS_WIN32) +#include +#else +# error unknown threading model +#endif + +#include #endif // ODB_DETAILS_THREAD_HXX diff --git a/odb/details/tls.hxx b/odb/details/tls.hxx index 6d38e6b..7ce5c19 100644 --- a/odb/details/tls.hxx +++ b/odb/details/tls.hxx @@ -6,9 +6,101 @@ #ifndef ODB_DETAILS_TLS_HXX #define ODB_DETAILS_TLS_HXX -#include +#include -#define ODB_TLS_POINTER(type) tls -#define ODB_TLS_OBJECT(type) tls +#include + +#ifdef ODB_THREADS_NONE + +# define ODB_TLS_POINTER(type) type* +# define ODB_TLS_OBJECT(type) type + +namespace odb +{ + namespace details + { + template + inline T& + tls_get (T& x) + { + return x; + } + + template + inline T* + tls_get (T* p) + { + return p; + } + + template + inline void + tls_set (T*& rp, T* p) + { + rp = p; + } + } +} + +#elif defined(ODB_THREADS_POSIX) + +# include +# define ODB_TLS_POINTER(type) tls +# define ODB_TLS_OBJECT(type) tls + +#elif defined(ODB_THREADS_WIN32) + +# ifdef ODB_THREADS_TLS_DECLSPEC_POINTER +# define ODB_TLS_POINTER(type) __declspec(thread) type* + +namespace odb +{ + namespace details + { + template + inline T* + tls_get (T* p) + { + return p; + } + + template + inline void + tls_set (T*& rp, T* p) + { + rp = p; + } + } +} + +# else +# error unsupported TLS pointer model +# endif + +# ifdef ODB_THREADS_TLS_DECLSPEC_OBJECT +# define ODB_TLS_OBJECT(type) __declspec(thread) type + +namespace odb +{ + namespace details + { + template + inline T& + tls_get (T& x) + { + return x; + } + } +} + +# else +# error unsupported TLS object model +# endif + +#else +# error unknown threading model +#endif + +#include #endif // ODB_DETAILS_TLS_HXX diff --git a/odb/details/win32/condition.cxx b/odb/details/win32/condition.cxx new file mode 100644 index 0000000..93c396b --- /dev/null +++ b/odb/details/win32/condition.cxx @@ -0,0 +1,57 @@ +// file : odb/details/win32/condition.cxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#include + +#include +#include + +namespace odb +{ + namespace details + { + void condition:: + signal () + { + mutex_.lock (); + + if (waiters_ > signals_) + { + if (signals_++ == 0) + { + if (SetEvent (event_) == 0) + throw win32_exception (); + } + } + + mutex_.unlock (); + } + + void condition:: + wait () + { + // When we enter this functions the mutex is locked. When we + // return from this function the mutex must be locked. + // + waiters_++; + mutex_.unlock (); + + if (WaitForSingleObject (event_, INFINITE) != 0) + throw win32_exception (); + + mutex_.lock (); + waiters_--; + signals_--; + + if (signals_ > 0) + { + // Wake up the next thread. + // + if (SetEvent (event_) == 0) + throw win32_exception (); + } + } + } +} diff --git a/odb/details/win32/condition.hxx b/odb/details/win32/condition.hxx new file mode 100644 index 0000000..3c40f3a --- /dev/null +++ b/odb/details/win32/condition.hxx @@ -0,0 +1,52 @@ +// file : odb/details/win32/condition.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_WIN32_CONDITION_HXX +#define ODB_DETAILS_WIN32_CONDITION_HXX + +#include + +#include + +#include // std::size_t + +#include +#include + +namespace odb +{ + namespace details + { + class LIBODB_EXPORT condition + { + public: + ~condition (); + condition (mutex&); + + void + signal (); + + void + wait (); + + private: + condition (const condition&); + condition& operator= (const condition&); + + private: + mutex& mutex_; + HANDLE event_; + + std::size_t waiters_; + std::size_t signals_; + }; + } +} + +#include + +#include + +#endif // ODB_DETAILS_WIN32_CONDITION_HXX diff --git a/odb/details/win32/condition.ixx b/odb/details/win32/condition.ixx new file mode 100644 index 0000000..4a6bd1d --- /dev/null +++ b/odb/details/win32/condition.ixx @@ -0,0 +1,32 @@ +// file : odb/details/win32/condition.ixx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#include + +namespace odb +{ + namespace details + { + inline condition:: + ~condition () + { + CloseHandle (event_); + } + + inline condition:: + condition (mutex& mutex) + : mutex_ (mutex), waiters_ (0), signals_ (0) + { + // Auto-reset event. Releases one waiting thread and automatically + // resets the event state. If no threads are waiting the event + // remains signalled. + // + event_ = CreateEvent (0, false, false, 0); + + if (event_ == 0) + throw win32_exception (); + } + } +} diff --git a/odb/details/win32/exceptions.cxx b/odb/details/win32/exceptions.cxx new file mode 100644 index 0000000..e8652cd --- /dev/null +++ b/odb/details/win32/exceptions.cxx @@ -0,0 +1,18 @@ +// file : odb/details/win32/exceptions.cxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#include + +namespace odb +{ + namespace details + { + const char* win32_exception:: + what () const throw () + { + return "Win32 API error"; + } + } +} diff --git a/odb/details/win32/exceptions.hxx b/odb/details/win32/exceptions.hxx new file mode 100644 index 0000000..b9ccf50 --- /dev/null +++ b/odb/details/win32/exceptions.hxx @@ -0,0 +1,39 @@ +// file : odb/details/win32/exceptions.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_WIN32_EXCEPTIONS_HXX +#define ODB_DETAILS_WIN32_EXCEPTIONS_HXX + +#include + +#include + +#include +#include + +namespace odb +{ + namespace details + { + struct LIBODB_EXPORT win32_exception: details::exception + { + win32_exception () : code_ (GetLastError ()) {} + win32_exception (DWORD code) : code_ (code) {} + + DWORD + code () const {return code_;} + + virtual const char* + what () const throw (); + + private: + DWORD code_; + }; + } +} + +#include + +#endif // ODB_DETAILS_WIN32_EXCEPTIONS_HXX diff --git a/odb/details/win32/mutex.hxx b/odb/details/win32/mutex.hxx new file mode 100644 index 0000000..9dbe3a8 --- /dev/null +++ b/odb/details/win32/mutex.hxx @@ -0,0 +1,46 @@ +// file : odb/details/win32/mutex.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_WIN32_MUTEX_HXX +#define ODB_DETAILS_WIN32_MUTEX_HXX + +#include + +#include + +#include + +namespace odb +{ + namespace details + { + class LIBODB_EXPORT mutex + { + public: + ~mutex (); + mutex (); + + void + lock (); + + void + unlock (); + + private: + mutex (const mutex&); + mutex& operator= (const mutex&); + + private: + friend class condition; + CRITICAL_SECTION cs_; + }; + } +} + +#include + +#include + +#endif // ODB_DETAILS_WIN32_MUTEX_HXX diff --git a/odb/details/win32/mutex.ixx b/odb/details/win32/mutex.ixx new file mode 100644 index 0000000..a2b6d37 --- /dev/null +++ b/odb/details/win32/mutex.ixx @@ -0,0 +1,34 @@ +// file : odb/details/win32/mutex.ixx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +namespace odb +{ + namespace details + { + inline mutex:: + ~mutex () + { + DeleteCriticalSection (&cs_); + } + + inline mutex:: + mutex () + { + InitializeCriticalSection (&cs_); + } + + inline void mutex:: + lock () + { + EnterCriticalSection (&cs_); + } + + inline void mutex:: + unlock () + { + LeaveCriticalSection (&cs_); + } + } +} diff --git a/odb/details/win32/thread.cxx b/odb/details/win32/thread.cxx new file mode 100644 index 0000000..610980d --- /dev/null +++ b/odb/details/win32/thread.cxx @@ -0,0 +1,91 @@ +// file : odb/details/win32/thread.cxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#include +#include // _beginthreadex, _endthreadex + +#include // std::auto_ptr + +#include +#include + +unsigned int __stdcall +odb_thread_thunk (void* arg) +{ + odb::details::thread::thread_thunk (arg); + _endthreadex (0); + return 0; +} + +namespace odb +{ + namespace details + { + void thread:: + thread_thunk (void* arg) + { + data* d (static_cast (arg)); + d->ret = d->func (d->arg); + d->mutex.lock (); + unsigned char count = --d->count; + d->mutex.unlock (); + + if (count == 0) + delete d; + } + + thread:: + ~thread () + { + if (handle_ != 0) + { + CloseHandle (handle_); + + // Win32 mutex implementation does not throw. + // + data_->mutex.lock (); + unsigned char count = --data_->count; + data_->mutex.unlock (); + + if (count == 0) + delete data_; + } + } + + thread:: + thread (void* (*func) (void*), void* arg) + { + std::auto_ptr d (new data); + d->func = func; + d->arg = arg; + d->count = 2; // One for the thread and one for us. + + handle_ = (HANDLE)_beginthreadex ( + 0, 0, &odb_thread_thunk, d.get (), 0, 0); + + if (handle_ == 0) + throw win32_exception (); + + data_ = d.release (); + } + + void* thread:: + join () + { + void* r; + + if (WaitForSingleObject (handle_, INFINITE) != 0) + throw win32_exception (); + + r = data_->ret; + + CloseHandle (handle_); + delete data_; + handle_ = 0; + data_ = 0; + return r; + } + } +} diff --git a/odb/details/win32/thread.hxx b/odb/details/win32/thread.hxx new file mode 100644 index 0000000..d52de48 --- /dev/null +++ b/odb/details/win32/thread.hxx @@ -0,0 +1,62 @@ +// file : odb/details/win32/thread.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_WIN32_THREAD_HXX +#define ODB_DETAILS_WIN32_THREAD_HXX + +#include + +#include + +#include +#include + +namespace odb +{ + namespace details + { + class LIBODB_EXPORT thread + { + public: + ~thread (); + thread (void* (*thread_func) (void*), void* arg = 0); + + void* + join (); + + private: + thread (const thread&); + thread& operator= (const thread&); + + private: + typedef void* (*thread_func) (void*); + + struct data + { + thread_func func; + void* arg; + void* ret; + + // Thread-safe reference counter. + // + details::mutex mutex; + unsigned char count; + }; + + + public: + static void + thread_thunk (void*); + + private: + HANDLE handle_; + data* data_; + }; + } +} + +#include + +#endif // ODB_DETAILS_WIN32_THREAD_HXX diff --git a/odb/exception.hxx b/odb/exception.hxx index c8e2f35..0ab188a 100644 --- a/odb/exception.hxx +++ b/odb/exception.hxx @@ -6,11 +6,15 @@ #ifndef ODB_EXCEPTION_HXX #define ODB_EXCEPTION_HXX +#include + #include +#include + namespace odb { - struct exception: std::exception + struct LIBODB_EXPORT exception: std::exception { // By default return the exception type name ( typeid (*this).name () ). // @@ -19,4 +23,6 @@ namespace odb }; } +#include + #endif // ODB_EXCEPTION_HXX diff --git a/odb/exceptions.hxx b/odb/exceptions.hxx index 13603be..ff97873 100644 --- a/odb/exceptions.hxx +++ b/odb/exceptions.hxx @@ -6,37 +6,43 @@ #ifndef ODB_EXCEPTIONS_HXX #define ODB_EXCEPTIONS_HXX +#include + #include +#include + namespace odb { - struct already_in_transaction: odb::exception + struct LIBODB_EXPORT already_in_transaction: odb::exception { }; - struct not_in_transaction: odb::exception + struct LIBODB_EXPORT not_in_transaction: odb::exception { }; - struct transaction_already_finilized: odb::exception + struct LIBODB_EXPORT transaction_already_finilized: odb::exception { }; - struct deadlock: odb::exception + struct LIBODB_EXPORT deadlock: odb::exception { }; - struct object_not_persistent: odb::exception + struct LIBODB_EXPORT object_not_persistent: odb::exception { }; - struct object_already_persistent: odb::exception + struct LIBODB_EXPORT object_already_persistent: odb::exception { }; - struct database_exception: odb::exception + struct LIBODB_EXPORT database_exception: odb::exception { }; } +#include + #endif // ODB_EXCEPTIONS_HXX diff --git a/odb/forward.hxx b/odb/forward.hxx index 695cef6..38b1415 100644 --- a/odb/forward.hxx +++ b/odb/forward.hxx @@ -6,6 +6,8 @@ #ifndef ODB_FORWARD_HXX #define ODB_FORWARD_HXX +#include + namespace odb { class database; @@ -31,4 +33,6 @@ namespace odb }; } +#include + #endif // ODB_FORWARD_HXX diff --git a/odb/libodb-vc10.vcxproj b/odb/libodb-vc10.vcxproj new file mode 100644 index 0000000..5047a56 --- /dev/null +++ b/odb/libodb-vc10.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {1C53C543-8038-4C8A-8AB1-65E74FD7DE2E} + Win32Proj + libodb + + + + DynamicLibrary + true + Unicode + + + DynamicLibrary + true + Unicode + + + DynamicLibrary + false + true + Unicode + + + DynamicLibrary + false + true + Unicode + + + + + + + + + + + + + + + + + + + true + ..\bin\ + odb_d-__value__(interface_version)-vc10 + + + true + ..\bin64\ + odb_d-__value__(interface_version)-vc10 + + + false + ..\bin\ + odb-__value__(interface_version)-vc10 + + + false + ..\bin64\ + odb-__value__(interface_version)-vc10 + + + + + + Level3 + Disabled + WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;%(DisableSpecificWarnings) + + + Windows + true + $(TargetPath) + ..\lib\odb_d.lib + + + + + + + Level3 + Disabled + WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;%(DisableSpecificWarnings) + + + Windows + true + $(TargetPath) + ..\lib64\odb_d.lib + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;%(DisableSpecificWarnings) + + + Windows + true + true + true + $(TargetPath) + ..\lib\odb.lib + + + + + Level3 + + + MaxSpeed + true + true + WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBODB_DYNAMIC_LIB;%(PreprocessorDefinitions) + .. + 4355;4800;4290;%(DisableSpecificWarnings) + + + Windows + true + true + true + $(TargetPath) + ..\lib64\odb.lib + + + +__header_entries__(headers) +__header_entry__(details\config-vc.h) + + +__source_entries__(sources) +__source_entries__(win32_sources) + + + + + diff --git a/odb/libodb-vc10.vcxproj.filters b/odb/libodb-vc10.vcxproj.filters new file mode 100644 index 0000000..1663f9d --- /dev/null +++ b/odb/libodb-vc10.vcxproj.filters @@ -0,0 +1,21 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cxx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hxx;ixx;txx + + + +__header_filter_entries__(headers) +__header_filter_entry__(details\config-vc.h) + + +__source_filter_entries__(sources) +__source_filter_entries__(win32_sources) + + diff --git a/odb/libodb-vc9.vcproj b/odb/libodb-vc9.vcproj new file mode 100644 index 0000000..ac970db --- /dev/null +++ b/odb/libodb-vc9.vcproj @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +__source_entries__(sources) +__source_entries__(win32_sources) + + +__file_entries__(headers) +__file_entry__(details\config-vc.h) + + + + + diff --git a/odb/makefile b/odb/makefile index 9b6c094..e058463 100644 --- a/odb/makefile +++ b/odb/makefile @@ -5,27 +5,41 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make -cxx_tun := \ -exception.cxx \ -exceptions.cxx \ -database.cxx \ +cxx := \ +exception.cxx \ +exceptions.cxx \ +database.cxx \ transaction.cxx -cxx_tun += details/buffer.cxx details/shared-ptr/base.cxx +# Implementation details. +# +cxx += \ +details/buffer.cxx \ +details/shared-ptr/base.cxx # POSIX-based implementation details. # -cxx_tun += details/posix/exceptions.cxx details/posix/thread.cxx +posix_cxx := \ +details/posix/exceptions.cxx \ +details/posix/thread.cxx + +# Win32-based implementation details. +# +win32_cxx := \ +details/win32/exceptions.cxx \ +details/win32/condition.cxx \ +details/win32/thread.cxx -cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) -cxx_od := $(cxx_obj:.o=.o.d) +cxx_tun := $(cxx) $(posix_cxx) +cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) +cxx_od := $(cxx_obj:.o=.o.d) odb.l := $(out_base)/odb.l odb.l.cpp-options := $(out_base)/odb.l.cpp-options -default := $(out_base)/ -install := $(out_base)/.install -clean := $(out_base)/.clean +default := $(out_base)/ +dist := $(out_base)/.dist +clean := $(out_base)/.clean # Build. @@ -33,7 +47,7 @@ clean := $(out_base)/.clean $(odb.l): $(cxx_obj) -lpthread $(cxx_obj) $(cxx_od): $(odb.l.cpp-options) -$(odb.l.cpp-options): value := -I$(src_root) +$(odb.l.cpp-options): value := -I$(out_root) -I$(src_root) $(call include-dep,$(cxx_od)) @@ -42,12 +56,33 @@ $(call include-dep,$(cxx_od)) # $(out_base)/: $(odb.l) -# Install. +# Dist. # -$(install): $(odb.l) - $(call install-lib,$<,$(install_lib_dir)/$(ld_lib_prefix)odb$(ld_lib_suffix)) - $(call install-dir,$(src_base),$(install_inc_dir)/odb,\ -'(' -name '*.hxx' -o -name '*.ixx' -o -name '*.txx' ')') +$(dist): export sources := $(cxx) +$(dist): export posix_sources := $(posix_cxx) +$(dist): export win32_sources := $(win32_cxx) + +$(dist): export headers = $(subst $(src_base)/,,$(shell find $(src_base) \ +-path $(src_base)/details/posix -a -prune -a -false -o \ +-path $(src_base)/details/win32 -a -prune -a -false -o \ +-name '*.hxx' -o -name '*.ixx' -o -name '*.txx')) +$(dist): export posix_headers = $(subst $(src_base)/,,$(shell find \ +$(src_base)/details/posix -name '*.hxx' -o -name '*.ixx' -o -name '*.txx')) +$(dist): export win32_headers = $(subst $(src_base)/,,$(shell find \ +$(src_base)/details/win32 -name '*.hxx' -o -name '*.ixx' -o -name '*.txx')) + +$(dist): data_dist := details/config-vc.h +$(dist): export extra_dist := $(data_dist) libodb-vc9.vcproj \ +libodb-vc10.vcxproj libodb-vc10.vcxproj.filters +$(dist): export interface_version = $(shell sed -e \ +'s/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version) + +$(dist): + $(call dist-data,$(sources) $(posix_sources) $(win32_sources) \ +$(headers) $(posix_headers) $(win32_headers) $(data_dist) details/config.h.in) + $(call meta-vc9proj,$(src_base)/libodb-vc9.vcproj) + $(call meta-vc10proj,$(src_base)/libodb-vc10.vcxproj) + $(call meta-automake) # Clean. # @@ -59,6 +94,11 @@ $(clean): $(odb.l).o.clean \ # How to. # +$(call include,$(bld_root)/dist.make) +$(call include,$(bld_root)/meta/vc9proj.make) +$(call include,$(bld_root)/meta/vc10proj.make) +$(call include,$(bld_root)/meta/automake.make) + $(call include,$(bld_root)/cxx/o-l.make) $(call include,$(bld_root)/cxx/cxx-o.make) $(call include,$(bld_root)/cxx/cxx-d.make) diff --git a/odb/pointer-traits.hxx b/odb/pointer-traits.hxx index 23ec1f8..18162e4 100644 --- a/odb/pointer-traits.hxx +++ b/odb/pointer-traits.hxx @@ -6,6 +6,8 @@ #ifndef ODB_POINTER_TRAITS_HXX #define ODB_POINTER_TRAITS_HXX +#include + #include // operators new/delete #include // std::size_t @@ -157,4 +159,6 @@ namespace odb }; } +#include + #endif // ODB_POINTER_TRAITS_HXX diff --git a/odb/query.hxx b/odb/query.hxx index 56af84b..6c2de0d 100644 --- a/odb/query.hxx +++ b/odb/query.hxx @@ -6,6 +6,8 @@ #ifndef ODB_QUERY_HXX #define ODB_QUERY_HXX +#include + #include namespace odb @@ -15,4 +17,6 @@ namespace odb class query; } +#include + #endif // ODB_QUERY_HXX diff --git a/odb/result.hxx b/odb/result.hxx index 58dd9cb..7501326 100644 --- a/odb/result.hxx +++ b/odb/result.hxx @@ -6,6 +6,8 @@ #ifndef ODB_RESULT_HXX #define ODB_RESULT_HXX +#include + #include // std::ptrdiff_t, std::size_t #include // iterator categories @@ -234,4 +236,6 @@ namespace odb #include +#include + #endif // ODB_RESULT_HXX diff --git a/odb/traits.hxx b/odb/traits.hxx index 5e500bf..bfdcf71 100644 --- a/odb/traits.hxx +++ b/odb/traits.hxx @@ -6,6 +6,8 @@ #ifndef ODB_TRAITS_HXX #define ODB_TRAITS_HXX +#include + #include #include @@ -83,4 +85,6 @@ namespace odb }; } +#include + #endif // ODB_TRAITS_HXX diff --git a/odb/transaction.hxx b/odb/transaction.hxx index 43526d0..71d17eb 100644 --- a/odb/transaction.hxx +++ b/odb/transaction.hxx @@ -6,13 +6,17 @@ #ifndef ODB_TRANSACTION_HXX #define ODB_TRANSACTION_HXX +#include + #include +#include + namespace odb { class transaction_impl; - class transaction + class LIBODB_EXPORT transaction { public: typedef odb::database database_type; @@ -62,7 +66,7 @@ namespace odb transaction_impl* impl_; }; - class transaction_impl + class LIBODB_EXPORT transaction_impl { protected: friend class transaction; @@ -96,4 +100,6 @@ namespace odb #include +#include + #endif // ODB_TRANSACTION_HXX diff --git a/odb/version.hxx b/odb/version.hxx index 7bc1928..e0f9833 100644 --- a/odb/version.hxx +++ b/odb/version.hxx @@ -6,6 +6,8 @@ #ifndef ODB_VERSION_HXX #define ODB_VERSION_HXX +#include + // Version format is AABBCCDD where // // AA - major version number @@ -33,4 +35,6 @@ #define LIBODB_VERSION 999901 #define LIBODB_VERSION_STR "1.0.0.a1" +#include + #endif // ODB_VERSION_HXX -- cgit v1.1