aboutsummaryrefslogtreecommitdiff
path: root/bpkg/database.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/database.cxx')
-rw-r--r--bpkg/database.cxx814
1 files changed, 753 insertions, 61 deletions
diff --git a/bpkg/database.cxx b/bpkg/database.cxx
index a866274..44712d2 100644
--- a/bpkg/database.cxx
+++ b/bpkg/database.cxx
@@ -3,45 +3,60 @@
#include <bpkg/database.hxx>
+#include <map>
+
#include <odb/schema-catalog.hxx>
#include <odb/sqlite/exceptions.hxx>
+#include <libbutl/sha256.mxx>
+
#include <bpkg/package.hxx>
#include <bpkg/package-odb.hxx>
#include <bpkg/diagnostics.hxx>
-#include <bpkg/system-repository.hxx>
using namespace std;
namespace bpkg
{
- using namespace odb::sqlite;
- using odb::schema_catalog;
+ namespace sqlite = odb::sqlite;
- // Use a custom connection factory to automatically set and clear the
- // BPKG_OPEN_CONFIG environment variable. A bit heavy-weight but seems like
- // the best option.
+ // Configuration types.
//
- static const string open_name ("BPKG_OPEN_CONFIG");
+ const string host_config_type ("host");
+ const string build2_config_type ("build2");
- class conn_factory: public single_connection_factory // No need for pool.
+ const string&
+ buildtime_dependency_type (const package_name& nm)
{
- public:
- conn_factory (const dir_path& d)
- {
- setenv (open_name, normalize (d, "configuration").string ());
- }
+ return build2_module (nm) ? build2_config_type : host_config_type;
+ }
+
+ // Configuration names.
+ //
+ void
+ validate_configuration_name (const string& s, const char* what)
+ {
+ if (s.empty ())
+ fail << "empty " << what;
- virtual
- ~conn_factory ()
+ if (!(alpha (s[0]) || s[0] == '_'))
+ fail << "invalid " << what << " '" << s << "': illegal first character "
+ << "(must be alphabetic or underscore)";
+
+ for (auto i (s.cbegin () + 1), e (s.cend ()); i != e; ++i)
{
- unsetenv (open_name);
+ char c (*i);
+
+ if (!(alnum (c) || c == '_' || c == '-'))
+ fail << "invalid " << what << " '" << s << "': illegal character "
+ << "(must be alphabetic, digit, underscore, or dash)";
}
- };
+ }
// Register the data migration functions.
//
- // NOTE: remember to qualify table names if using native statements.
+ // NOTE: remember to qualify table names with \"main\". if using native
+ // statements.
//
template <odb::schema_version v>
using migration_entry = odb::data_migration_entry<v, DB_SCHEMA_VERSION_BASE>;
@@ -59,84 +74,761 @@ namespace bpkg
}
});
- database
- open (const dir_path& d, tracer& tr, bool create)
+ static const migration_entry<9>
+ migrate_v9 ([] (odb::database& db)
{
- tracer trace ("open");
+ // Add the unnamed self-link of the target type.
+ //
+ shared_ptr<configuration> sl (
+ make_shared<configuration> (optional<string> (), "target"));
+
+ db.persist (sl);
+ db.execute ("UPDATE selected_package_prerequisites SET configuration = '" +
+ sl->uuid.string () + "'");
+ });
+ static inline path
+ cfg_path (const dir_path& d, bool create)
+ {
path f (d / bpkg_dir / "bpkg.sqlite3");
if (!create && !exists (f))
fail << d << " does not look like a bpkg configuration directory";
+ return f;
+ }
+
+ // The BPKG_OPEN_CONFIGS environment variable.
+ //
+ // Automatically set it to the configuration directory path and clear in the
+ // main database constructor and destructor, respectively. Also append the
+ // attached database configuration paths in their constructors and clear
+ // them in detach_all(). The paths are absolute, normalized, double-quoted,
+ // and separated with spaces.
+ //
+ static const string open_name ("BPKG_OPEN_CONFIGS");
+
+ struct database::impl
+ {
+ sqlite::connection_ptr conn; // Main connection.
+
+ map<dir_path, database> attached_map;
+
+ impl (sqlite::connection_ptr&& c): conn (move (c)) {}
+ };
+
+ database::
+ database (const dir_path& d,
+ configuration* create,
+ odb::tracer& tr,
+ bool pre_attach,
+ bool sys_rep,
+ const dir_paths& pre_link)
+ : sqlite::database (
+ cfg_path (d, create != nullptr).string (),
+ SQLITE_OPEN_READWRITE | (create != nullptr ? SQLITE_OPEN_CREATE : 0),
+ true, // Enable FKs.
+ "", // Default VFS.
+ unique_ptr<sqlite::connection_factory> (
+ new sqlite::serial_connection_factory)), // Single connection.
+ config (normalize (d, "configuration")),
+ config_orig (d)
+ {
+ bpkg::tracer trace ("database");
+
+ // Cache the (single) main connection we will be using.
+ //
+ unique_ptr<impl> ig ((impl_ = new impl (connection ())));
+
try
{
- database db (f.string (),
- SQLITE_OPEN_READWRITE | (create ? SQLITE_OPEN_CREATE : 0),
- true, // Enable FKs.
- "", // Default VFS.
- unique_ptr<connection_factory> (new conn_factory (d)));
-
- db.tracer (trace);
-
- // Lock the database for as long as the connection is active. First
- // we set locking_mode to EXCLUSIVE which instructs SQLite not to
- // release any locks until the connection is closed. Then we force
- // SQLite to acquire the write lock by starting exclusive transaction.
- // See the locking_mode pragma documentation for details. This will
- // also fail if the database is inaccessible (e.g., file does not
- // exist, already used by another process, etc).
+ tracer_guard tg (*this, trace);
+
+ // Lock the database for as long as the connection is active. First we
+ // set locking_mode to EXCLUSIVE which instructs SQLite not to release
+ // any locks until the connection is closed. Then we force SQLite to
+ // acquire the write lock by starting exclusive transaction. See the
+ // locking_mode pragma documentation for details. This will also fail if
+ // the database is inaccessible (e.g., file does not exist, already used
+ // by another process, etc).
//
- using odb::sqlite::transaction; // Skip the wrapper.
+ // Note that here we assume that any database that is ATTACHED within an
+ // exclusive transaction gets the same treatment.
+ //
+ using odb::schema_catalog;
+
+ impl_->conn->execute ("PRAGMA locking_mode = EXCLUSIVE");
+
+ add_env (true /* reset */);
+ auto g (make_exception_guard ([] () {unsetenv (open_name);}));
- try
{
- db.connection ()->execute ("PRAGMA locking_mode = EXCLUSIVE");
- transaction t (db.begin_exclusive ());
+ sqlite::transaction t (impl_->conn->begin_exclusive ());
- if (create)
+ if (create != nullptr)
{
- // Create the new schema.
+ // Create the new schema and persist the self-link.
//
- if (db.schema_version () != 0)
- fail << f << ": already has database schema";
+ if (schema_version () != 0)
+ fail << sqlite::database::name () << ": already has database "
+ << "schema";
+
+ schema_catalog::create_schema (*this);
+
+ persist (*create); // Also assigns link id.
- schema_catalog::create_schema (db);
+ // Cache the configuration information.
+ //
+ cache_config (create->uuid, create->name, create->type);
}
else
{
- // Migrate the database if necessary.
+ // Migrate the linked databases cluster.
+ //
+ migrate ();
+
+ // Cache the configuration information.
+ //
+ shared_ptr<configuration> c (load<configuration> (0));
+ cache_config (c->uuid, move (c->name), move (c->type));
+
+ // Load the system repository, if requested.
//
- schema_catalog::migrate (db);
+ if (sys_rep)
+ load_system_repository ();
}
+ // Migrate the pre-linked databases and the database clusters they
+ // belong to.
+ //
+ for (const dir_path& d: pre_link)
+ attach (d).migrate ();
+
+ t.commit ();
+ }
+
+ // Detach potentially attached during migration the (pre-)linked
+ // databases.
+ //
+ detach_all ();
+
+ if (pre_attach)
+ {
+ sqlite::transaction t (begin_exclusive ());
+ attach_explicit (sys_rep);
t.commit ();
}
+ }
+ catch (odb::timeout&)
+ {
+ fail << "configuration " << d << " is already used by another process";
+ }
+ catch (const sqlite::database_exception& e)
+ {
+ fail << sqlite::database::name () << ": " << e.message ();
+ }
+
+ tracer (tr);
+
+ // Note: will be leaked if anything further throws.
+ //
+ ig.release ();
+ }
+
+ // NOTE: if we ever load/persist any dynamically allocated objects in this
+ // constructor, make sure such objects do not use the session or the session
+ // is temporarily suspended in the attach() function (see its implementation
+ // for the reasoning note) since the database will be moved.
+ //
+ database::
+ database (impl* i,
+ const dir_path& d,
+ std::string schema,
+ bool sys_rep)
+ : sqlite::database (i->conn,
+ cfg_path (d, false /* create */).string (),
+ move (schema)),
+ config (d),
+ impl_ (i)
+ {
+ bpkg::tracer trace ("database");
+
+ // Derive the configuration original directory path.
+ //
+ database& mdb (main_database ());
+
+ if (mdb.config_orig.relative ())
+ {
+ // Fallback to absolute path if the configuration is on a different
+ // drive on Windows.
+ //
+ if (optional<dir_path> c = config.try_relative (current_directory ()))
+ config_orig = move (*c);
+ else
+ config_orig = config;
+ }
+ else
+ config_orig = config;
+
+ try
+ {
+ tracer_guard tg (*this, trace);
+
+ // Cache the configuration information.
+ //
+ shared_ptr<configuration> c (load<configuration> (0));
+ cache_config (c->uuid, move (c->name), move (c->type));
+
+ // Load the system repository, if requested.
+ //
+ if (sys_rep)
+ load_system_repository ();
+ }
+ catch (const sqlite::database_exception& e)
+ {
+ fail << sqlite::database::name () << ": " << e.message ();
+ }
+
+ add_env ();
+
+ // Set the tracer used by the linked configurations cluster.
+ //
+ sqlite::database::tracer (mdb.tracer ());
+ }
+
+ database::
+ ~database ()
+ {
+ if (impl_ != nullptr && // Not a moved-from database?
+ main ())
+ {
+ delete impl_;
+
+ unsetenv (open_name);
+ }
+ }
+
+ database::
+ database (database&& db)
+ : sqlite::database (move (db)),
+ uuid (db.uuid),
+ type (move (db.type)),
+ config (move (db.config)),
+ config_orig (move (db.config_orig)),
+ system_repository (move (db.system_repository)),
+ impl_ (db.impl_),
+ explicit_links_ (move (db.explicit_links_)),
+ implicit_links_ (move (db.implicit_links_))
+ {
+ db.impl_ = nullptr; // See ~database().
+ }
+
+ void database::
+ add_env (bool reset) const
+ {
+ using std::string;
+
+ string v;
+
+ if (!reset)
+ {
+ if (optional<string> e = getenv (open_name))
+ v = move (*e);
+ }
+
+ v += (v.empty () ? "\"" : " \"") + config.string () + '"';
+
+ setenv (open_name, v);
+ }
+
+ void database::
+ tracer (tracer_type* t)
+ {
+ main_database ().sqlite::database::tracer (t);
+
+ for (auto& db: impl_->attached_map)
+ db.second.sqlite::database::tracer (t);
+ }
+
+ void database::
+ migrate ()
+ {
+ using odb::schema_catalog;
+
+ odb::schema_version sv (schema_version ());
+ odb::schema_version scv (schema_catalog::current_version (*this));
+
+ if (sv != scv)
+ {
+ if (sv < schema_catalog::base_version (*this))
+ fail << "configuration " << config_orig << " is too old";
+
+ if (sv > scv)
+ fail << "configuration " << config_orig << " is too new";
+
+ // Note that we need to migrate the current database before the linked
+ // ones to properly handle link cycles.
+ //
+ schema_catalog::migrate (*this);
+
+ for (auto& c: query<configuration> (odb::query<configuration>::id != 0))
+ {
+ dir_path d (c.effective_path (config));
+
+ // Remove the dangling implicit link.
+ //
+ if (!c.expl && !exists (d))
+ {
+ warn << "implicit link " << c.path << " of configuration "
+ << config_orig << " no longer exists, removing";
+
+ erase (c);
+ continue;
+ }
+
+ attach (d).migrate ();
+ }
+ }
+ }
+
+ void database::
+ cache_config (const uuid_type& u, optional<std::string> n, std::string t)
+ {
+ uuid = u;
+ name = move (n);
+ type = move (t);
+ }
+
+ void database::
+ load_system_repository ()
+ {
+ assert (!system_repository); // Must only be loaded once.
+
+ system_repository = bpkg::system_repository ();
+
+ // Query for all the packages with the system substate and enter their
+ // versions into system_repository as non-authoritative. This way an
+ // available_package (e.g., a stub) will automatically "see" system
+ // version, if one is known.
+ //
+ assert (transaction::has_current ());
+
+ for (const auto& p: query<selected_package> (
+ odb::query<selected_package>::substate == "system"))
+ system_repository->insert (p.name,
+ p.version,
+ false /* authoritative */);
+ }
+
+ database& database::
+ attach (const dir_path& d, bool sys_rep)
+ {
+ assert (d.absolute () && d.normalized ());
+
+ // Check if we are trying to attach the main database.
+ //
+ database& md (main_database ());
+ if (d == md.config)
+ return md;
+
+ auto& am (impl_->attached_map);
+
+ auto i (am.find (d));
+
+ if (i == am.end ())
+ {
+ // We know from the implementation that 4-character schema names are
+ // optimal. So try to come up with a unique abbreviated hash that is 4
+ // or more characters long.
+ //
+ std::string schema;
+ {
+ butl::sha256 h (d.string ());
+
+ for (size_t n (4);; ++n)
+ {
+ schema = h.abbreviated_string (n);
+
+ if (find_if (am.begin (), am.end (),
+ [&schema] (const map<dir_path, database>::value_type& v)
+ {
+ return v.second.schema () == schema;
+ }) == am.end ())
+ break;
+ }
+ }
+
+ // If attaching out of an exclusive transaction (all our transactions
+ // are exclusive), start one to force database locking (see the above
+ // locking_mode discussion for details).
+ //
+ sqlite::transaction t;
+ if (!sqlite::transaction::has_current ())
+ t.reset (begin_exclusive ());
+
+ try
+ {
+ // NOTE: we need to be careful here not to bind any persistent objects
+ // the database constructor may load/persist to the temporary database
+ // object in the session cache.
+ //
+ i = am.insert (
+ make_pair (d, database (impl_, d, move (schema), sys_rep))).first;
+ }
catch (odb::timeout&)
{
fail << "configuration " << d << " is already used by another process";
}
- // Query for all the packages with the system substate and enter their
- // versions into system_repository as non-authoritative. This way an
- // available_package (e.g., a stub) will automatically "see" system
- // version, if one is known.
+ if (!t.finalized ())
+ t.commit ();
+ }
+
+ return i->second;
+ }
+
+ void database::
+ detach_all ()
+ {
+ assert (main ());
+
+ explicit_links_.clear ();
+ implicit_links_.clear ();
+
+ for (auto i (impl_->attached_map.begin ());
+ i != impl_->attached_map.end (); )
+ {
+ i->second.detach ();
+ i = impl_->attached_map.erase (i);
+ }
+
+ // Remove the detached databases from the environment.
+ //
+ add_env (true /* reset */);
+ }
+
+ void database::
+ verify_link (const configuration& lc, database& ldb)
+ {
+ const dir_path& c (ldb.config_orig);
+
+ if (lc.uuid != ldb.uuid)
+ fail << "configuration " << c << " uuid mismatch" <<
+ info << "uuid " << ldb.uuid <<
+ info << (!lc.expl ? "implicitly " : "") << "linked with "
+ << config_orig << " as " << lc.uuid;
+
+ if (lc.type != ldb.type)
+ fail << "configuration " << c << " type mismatch" <<
+ info << "type " << ldb.type <<
+ info << (!lc.expl ? "implicitly " : "") << "linked with "
+ << config_orig << " as " << lc.type;
+
+ if (lc.effective_path (config) != ldb.config)
+ fail << "configuration " << c << " path mismatch" <<
+ info << (!lc.expl ? "implicitly " : "") << "linked with "
+ << config_orig << " as " << lc.path;
+ }
+
+ void database::
+ attach_explicit (bool sys_rep)
+ {
+ assert (transaction::has_current ());
+
+ if (explicit_links_.empty ())
+ {
+ // Note that the self-link is implicit.
//
- transaction t (db.begin ());
+ explicit_links_.push_back (linked_config {0, name, *this});
- for (const auto& p:
- db.query<selected_package> (
- query<selected_package>::substate == "system"))
- system_repository.insert (p.name, p.version, false);
+ for (auto& lc: query<configuration> (odb::query<configuration>::expl))
+ {
+ database& db (attach (lc.effective_path (config), sys_rep));
+ verify_link (lc, db);
- t.commit ();
+ explicit_links_.push_back (linked_config {*lc.id, move (lc.name), db});
+ db.attach_explicit (sys_rep);
+ }
+ }
+ }
- db.tracer (tr); // Switch to the caller's tracer.
- return db;
+ linked_databases& database::
+ implicit_links (bool attach_, bool sys_rep)
+ {
+ assert (transaction::has_current ());
+
+ // Note that cached implicit links must at least contain the self-link,
+ // if the databases are already attached and cached.
+ //
+ if (implicit_links_.empty () && attach_)
+ {
+ implicit_links_.push_back (*this);
+
+ using q = odb::query<configuration>;
+
+ for (const auto& lc: query<configuration> (q::id != 0))
+ {
+ dir_path d (lc.effective_path (config));
+
+ // Skip the dangling implicit link.
+ //
+ if (!lc.expl && !exists (d))
+ continue;
+
+ database& db (attach (d, sys_rep));
+
+ // Verify the link integrity.
+ //
+ verify_link (lc, db);
+
+ // If the link is explicit, also check if it is also implicit (see
+ // cfg_link() for details) and skip if it is not.
+ //
+ if (lc.expl)
+ {
+ shared_ptr<configuration> cf (
+ db.query_one<configuration> (q::uuid == uuid.string ()));
+
+ if (cf == nullptr)
+ fail << "configuration " << db.config_orig << " is linked with "
+ << config_orig << " but latter is not implicitly linked "
+ << "with former";
+
+ // While at it, verify the integrity of the other end of the link.
+ //
+ db.verify_link (*cf, *this);
+
+ if (!cf->expl)
+ continue;
+ }
+
+ // If the explicitly linked databases are pre-attached, normally to
+ // make the selected packages loadable, then we also pre-attach
+ // explicit links of the database being attached implicitly, by the
+ // same reason. Indeed, think of loading the package dependent from
+ // the implicitly linked database as a selected package.
+ //
+ if (!explicit_links_.empty ())
+ db.attach_explicit (sys_rep);
+
+ implicit_links_.push_back (db);
+ }
}
- catch (const database_exception& e)
+
+ return implicit_links_;
+ }
+
+ linked_databases database::
+ dependent_configs (bool sys_rep)
+ {
+ linked_databases r;
+
+ // Note that if this configuration is of a build-time dependency type
+ // (host or build2) we need to be carefull during recursion and do not
+ // cross the build-time dependency type boundary. So for example, for the
+ // following implicit links only cfg1, cfg2, and cfg3 configurations are
+ // included.
+ //
+ // cfg1 (this, host) -> cfg2 (host) -> cfg3 (build2) -> cfg4 (target)
+ //
+ // Add the linked database to the resulting list if it is of the linking
+ // database type (t) or this type (t) is of the expected build-time
+ // dependency type (bt).
+ //
+ auto add = [&r, sys_rep] (database& db,
+ const std::string& t,
+ const std::string& bt,
+ const auto& add)
+ {
+ if (!(db.type == t || t == bt) ||
+ std::find (r.begin (), r.end (), db) != r.end ())
+ return;
+
+ r.push_back (db);
+
+ const linked_databases& lds (db.implicit_links (true /* attach */,
+ sys_rep));
+
+ // Skip the self-link.
+ //
+ for (auto i (lds.begin () + 1); i != lds.end (); ++i)
+ add (*i, db.type, db.type == bt ? bt : empty_string, add);
+ };
+
+ add (*this,
+ type,
+ (type == host_config_type || type == build2_config_type
+ ? type
+ : empty_string),
+ add);
+
+ return r;
+ }
+
+ linked_databases database::
+ dependency_configs (optional<bool> buildtime, const std::string& tp)
+ {
+ // The type only makes sense if build-time dependency configurations are
+ // requested.
+ //
+ if (buildtime)
+ assert (!*buildtime ||
+ tp == host_config_type ||
+ tp == build2_config_type);
+ else
+ assert (tp.empty ());
+
+ linked_databases r;
+
+ // Allow dependency configurations of the dependent configuration own type
+ // if all or runtime dependency configurations are requested.
+ //
+ bool allow_own_type (!buildtime || !*buildtime);
+
+ // Allow dependency configurations of the host type if all or regular
+ // build-time dependency configurations are requested.
+ //
+ bool allow_host_type (!buildtime ||
+ (*buildtime && tp == host_config_type));
+
+ // Allow dependency configurations of the build2 type if all or build2
+ // module dependency configurations are requested.
+ //
+ bool allow_build2_type (!buildtime ||
+ (*buildtime && tp == build2_config_type));
+
+ // Add the linked database to the resulting list if it is of the linking
+ // database type and allow_own_type is true, or it is of the host type and
+ // allow_host_type is true, or it is of the build2 type and
+ // allow_build2_type is true. Call itself recursively for the explicitly
+ // linked configurations.
+ //
+ // Note that the linked database of the linking database type is not added
+ // if allow_own_type is false, however its own linked databases of the
+ // host/build2 type are added, if allow_host_type/ allow_build2_type is
+ // true.
+ //
+ linked_databases descended; // Note: we may not add but still descend.
+ auto add = [&r,
+ allow_own_type,
+ allow_host_type,
+ allow_build2_type,
+ &descended]
+ (database& db,
+ const std::string& t,
+ const auto& add)
+ {
+ if (std::find (descended.begin (), descended.end (), db) !=
+ descended.end ())
+ return;
+
+ descended.push_back (db);
+
+ bool own (db.type == t);
+ bool host (db.type == host_config_type);
+ bool build2 (db.type == build2_config_type);
+
+ // Bail out if we are not allowed to descend.
+ //
+ if (!own && !(allow_host_type && host) && !(allow_build2_type && build2))
+ return;
+
+ // Add the database to the list, if allowed, and descend afterwards.
+ //
+ if ((allow_own_type && own) ||
+ (allow_host_type && host) ||
+ (allow_build2_type && build2))
+ r.push_back (db);
+
+ const linked_configs& lcs (db.explicit_links ());
+
+ // Skip the self-link.
+ //
+ for (auto i (lcs.begin () + 1); i != lcs.end (); ++i)
+ add (i->db, db.type, add);
+ };
+
+ add (*this, type, add);
+ return r;
+ }
+
+ linked_databases database::
+ dependency_configs (const package_name& n, bool buildtime)
+ {
+ return dependency_configs (buildtime,
+ (buildtime
+ ? buildtime_dependency_type (n)
+ : empty_string));
+ }
+
+ linked_databases database::
+ dependency_configs ()
+ {
+ return dependency_configs (nullopt /* buildtime */,
+ empty_string /* type */);
+ }
+
+ database& database::
+ find_attached (uint64_t id)
+ {
+ assert (!explicit_links_.empty ());
+
+ // Note that there shouldn't be too many databases, so the linear search
+ // is OK.
+ //
+ auto r (find_if (explicit_links_.begin (), explicit_links_.end (),
+ [&id] (const linked_config& lc)
+ {
+ return lc.id == id;
+ }));
+
+ if (r == explicit_links_.end ())
+ fail << "no configuration with id " << id << " is linked with "
+ << config_orig;
+
+ return r->db;
+ }
+
+ database& database::
+ find_attached (const std::string& name)
+ {
+ assert (!explicit_links_.empty ());
+
+ auto r (find_if (explicit_links_.begin (), explicit_links_.end (),
+ [&name] (const linked_config& lc)
+ {
+ return lc.name && *lc.name == name;
+ }));
+
+ if (r == explicit_links_.end ())
+ fail << "no configuration with name '" << name << "' is linked with "
+ << config_orig;
+
+ return r->db;
+ }
+
+ database& database::
+ find_dependency_config (const uuid_type& uid)
+ {
+ for (database& ldb: dependency_configs ())
{
- fail << f << ": " << e.message () << endf;
+ if (uid == ldb.uuid)
+ return ldb;
}
+
+ fail << "no configuration with uuid " << uid << " is linked with "
+ << config_orig << endf;
+ }
+
+ bool database::
+ main ()
+ {
+ return *this == main_database ();
+ }
+
+ string database::
+ string ()
+ {
+ return main () ? empty_string : '[' + config_orig.representation () + ']';
}
}