From 118ea61dc79bf9b1c45bbf81b31361a749e32fdd Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Wed, 11 Aug 2021 03:06:47 -0400 Subject: spine search and configuration related --- org/out_sqlite.org | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'org/out_sqlite.org') diff --git a/org/out_sqlite.org b/org/out_sqlite.org index 58de0cf..2f09101 100644 --- a/org/out_sqlite.org +++ b/org/out_sqlite.org @@ -81,7 +81,7 @@ template SQLiteHubBuildTablesAndPopulate() { const D doc_abstraction, M doc_matters, ) { - auto pth_sqlite = spinePathsSQLite!()(doc_matters.sqlite.filename, doc_matters.output_path); + auto pth_sqlite = spinePathsSQLite!()(doc_matters.sqlite.filename, doc_matters.sqlite.path); pth_sqlite.base.mkdirRecurse; auto db = Database(pth_sqlite.sqlite_file); template SQLiteDbStatementComposite() { @@ -111,7 +111,7 @@ template SQLiteHubDiscreteBuildTablesAndPopulate() { M doc_matters, ) { auto url_html = spineUrlsHTML!()(doc_matters.conf_make_meta.conf.w_srv_data_root_url_html, doc_matters.src.language); - auto pth_sqlite = spinePathsSQLiteDiscrete!()(doc_matters.output_path, doc_matters.src.language); + auto pth_sqlite = spinePathsSQLiteDiscrete!()(doc_matters.output_path, doc_matters.src.language); // doc_matters.db_path pth_sqlite.base.mkdirRecurse; auto db = Database(pth_sqlite.sqlite_file(doc_matters.src.filename)); template SQLiteDiscreteDbStatementComposite() { @@ -328,19 +328,19 @@ template SQLiteTablesCreate() { string _db_statement; string db_filename = (opt_action.sqlite_filename.length > 0) ? opt_action.sqlite_filename - : (config.conf.w_srv_db_sqlite.length > 0) - ? config.conf.w_srv_db_sqlite + : (config.conf.w_srv_db_sqlite_filename.length > 0) + ? config.conf.w_srv_db_sqlite_filename : ""; - string output_path = (opt_action.output_dir_set.length > 0) + string db_path = (opt_action.output_dir_set.length > 0) ? opt_action.output_dir_set - : (config.conf.output_path.length > 0) - ? config.conf.output_path + : (config.conf.w_srv_db_sqlite_path.length > 0) + ? config.conf.w_srv_db_sqlite_path : ""; - if (db_filename.length > 0 && output_path.length > 0) { + if (db_filename.length > 0 && db_path.length > 0) { if ((opt_action.verbose)) { - writeln("db name & path: ", config.conf.output_path, "/sqlite/", db_filename); + writeln("db name & path: ", db_path, db_filename); } - auto pth_sqlite = spinePathsSQLite!()(db_filename, output_path); + auto pth_sqlite = spinePathsSQLite!()(db_filename, db_path); pth_sqlite.base.mkdirRecurse; auto db = Database(pth_sqlite.sqlite_file); { @@ -350,7 +350,7 @@ template SQLiteTablesCreate() { } else { writeln("must provide db name & output root path either on the command line or in configuration file"); writeln("db name: ", db_filename); - writeln("output root path (path less /sqlite which is added: ", config.conf.output_path); + writeln("db path: ", db_path); } } } @@ -367,16 +367,16 @@ template SQLiteDbDrop() { if ((opt_action.sqlite_db_drop)) { string db_filename = (opt_action.sqlite_filename.length > 0) ? opt_action.sqlite_filename - : (config.conf.w_srv_db_sqlite.length > 0) - ? config.conf.w_srv_db_sqlite + : (config.conf.w_srv_db_sqlite_filename.length > 0) + ? config.conf.w_srv_db_sqlite_filename : ""; - string output_path = (opt_action.output_dir_set.length > 0) - ? opt_action.output_dir_set - : (config.conf.output_path.length > 0) - ? config.conf.output_path + string db_path = (opt_action.sqlite_db_path.length > 0) // + ? opt_action.sqlite_db_path + : (config.conf.w_srv_db_sqlite_path.length > 0) + ? config.conf.w_srv_db_sqlite_path : ""; - if (db_filename.length > 0 && output_path.length > 0) { - auto pth_sqlite = spinePathsSQLite!()(db_filename, output_path); + if (db_filename.length > 0 && db_path.length > 0) { + auto pth_sqlite = spinePathsSQLite!()(db_filename, db_path); writeln("remove(", pth_sqlite.sqlite_file, ")"); try { remove(pth_sqlite.sqlite_file); @@ -386,7 +386,7 @@ template SQLiteDbDrop() { } else { writeln("must provide db name & output root path either on the command line or in configuration file"); writeln("db name: ", db_filename); - writeln("output root path (path less /sqlite which is added: ", config.conf.output_path); + writeln("db path: ", db_path); } } } @@ -402,7 +402,7 @@ template SQLiteDbDrop() { { string _db_statement; if ((doc_matters.opt.action.sqlite_db_create)) { - auto pth_sqlite = spinePathsSQLite!()(doc_matters.sqlite.filename, doc_matters.output_path); + auto pth_sqlite = spinePathsSQLite!()(doc_matters.sqlite.filename, doc_matters.sqlite.path); pth_sqlite.base.mkdirRecurse; _db_statement ~= SQLiteTablesReCreate!()(); SQLiteDbRun!()(db, _db_statement, doc_matters.opt.action, "TABLE RE-CREATE"); -- cgit v1.2.3