//------------------------------------------------------------------------------ /* This file is part of rippled: https://github.com/ripple/rippled Copyright (c) 2012, 2013 Ripple Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ //============================================================================== #ifndef RIPPLE_APP_DATA_DATABASECON_H_INCLUDED #define RIPPLE_APP_DATA_DATABASECON_H_INCLUDED #include #include #include #include #include namespace soci { class session; } namespace ripple { template class LockedPointer { public: using mutex = TMutex; private: T* it_; std::unique_lock lock_; public: LockedPointer (T* it, mutex& m) : it_ (it), lock_ (m) { } LockedPointer (LockedPointer&& rhs) noexcept : it_ (rhs.it_), lock_ (std::move (rhs.lock_)) { } LockedPointer () = delete; LockedPointer (LockedPointer const& rhs) = delete; LockedPointer& operator=(LockedPointer const& rhs) = delete; T* get () { return it_; } T& operator*() { return *it_; } T* operator->() { return it_; } explicit operator bool() const { return bool (it_); } }; using LockedSociSession = LockedPointer; class DatabaseCon { public: struct Setup { explicit Setup() = default; Config::StartUpType startUp = Config::NORMAL; bool standAlone = false; boost::filesystem::path dataDir; }; DatabaseCon (Setup const& setup, std::string const& name, const char* initString[], int countInit); soci::session& getSession() { return session_; } LockedSociSession checkoutDb () { return LockedSociSession (&session_, lock_); } void setupCheckpointing (JobQueue*, Logs&); private: LockedSociSession::mutex lock_; soci::session session_; std::unique_ptr checkpointer_; }; DatabaseCon::Setup setup_DatabaseCon (Config const& c); } // ripple #endif