32
31
#include <stdexcept>
34
33
#include <boost/program_options.hpp>
35
#include <drizzled/program_options/config_file.h>
34
#include "drizzled/program_options/config_file.h"
36
35
#include <boost/thread/recursive_mutex.hpp>
37
36
#include <boost/thread/mutex.hpp>
38
#include <boost/thread/shared_mutex.hpp>
39
37
#include <boost/thread/condition_variable.hpp>
40
38
#include <boost/filesystem.hpp>
41
#include <boost/detail/atomic_count.hpp>
43
#include <drizzled/cached_directory.h>
44
#include <drizzled/charset.h>
45
#include <drizzled/data_home.h>
46
#include <drizzled/debug.h>
47
#include <drizzled/definition/cache.h>
48
#include <drizzled/drizzled.h>
40
#include "drizzled/internal/my_sys.h"
41
#include "drizzled/internal/my_bit.h"
42
#include <drizzled/my_hash.h>
43
#include <drizzled/error.h>
49
44
#include <drizzled/errmsg_print.h>
50
#include <drizzled/error.h>
51
#include <drizzled/global_buffer.h>
52
#include <drizzled/internal/my_bit.h>
53
#include <drizzled/internal/my_sys.h>
45
#include <drizzled/tztime.h>
46
#include <drizzled/sql_base.h>
47
#include <drizzled/show.h>
48
#include <drizzled/sql_parse.h>
54
49
#include <drizzled/item/cmpfunc.h>
50
#include <drizzled/session.h>
55
51
#include <drizzled/item/create.h>
56
#include <drizzled/message/cache.h>
57
#include <drizzled/module/load_list.h>
58
#include <drizzled/module/registry.h>
59
#include <drizzled/my_hash.h>
60
#include <drizzled/plugin/client.h>
61
#include <drizzled/plugin/error_message.h>
62
#include <drizzled/plugin/event_observer.h>
63
#include <drizzled/plugin/listen.h>
64
#include <drizzled/plugin/monitored_in_transaction.h>
65
#include <drizzled/plugin/scheduler.h>
66
#include <drizzled/plugin/storage_engine.h>
67
#include <drizzled/plugin/xa_resource_manager.h>
68
#include <drizzled/probes.h>
69
#include <drizzled/replication_services.h> /* For ReplicationServices::evaluateRegisteredPlugins() */
70
#include <drizzled/session.h>
71
#include <drizzled/session/cache.h>
72
#include <drizzled/show.h>
73
#include <drizzled/sql_base.h>
74
#include <drizzled/sql_parse.h>
75
#include <drizzled/temporal_format.h> /* For init_temporal_formats() */
76
#include <drizzled/tztime.h>
77
52
#include <drizzled/unireg.h>
78
#include <plugin/myisam/myisam.h>
80
#include "drizzled/visibility.h"
53
#include "drizzled/temporal_format.h" /* For init_temporal_formats() */
54
#include "drizzled/plugin/listen.h"
55
#include "drizzled/plugin/error_message.h"
56
#include "drizzled/plugin/client.h"
57
#include "drizzled/plugin/scheduler.h"
58
#include "drizzled/plugin/xa_resource_manager.h"
59
#include "drizzled/plugin/monitored_in_transaction.h"
60
#include "drizzled/replication_services.h" /* For ReplicationServices::evaluateRegisteredPlugins() */
61
#include "drizzled/probes.h"
62
#include "drizzled/session_list.h"
63
#include "drizzled/charset.h"
64
#include "plugin/myisam/myisam.h"
65
#include "drizzled/drizzled.h"
66
#include "drizzled/module/registry.h"
67
#include "drizzled/module/load_list.h"
82
69
#include <google/protobuf/stubs/common.h>
84
#include <drizzled/refresh_version.h>
86
71
#if TIME_WITH_SYS_TIME
87
72
# include <sys/time.h>
1128
1225
pid_file.replace_extension(".pid");
1130
1227
system_config_dir /= "drizzle";
1228
std::string system_config_file_drizzle("drizzled.cnf");
1132
1230
config_options.add_options()
1133
1231
("help,?", po::value<bool>(&opt_help)->default_value(false)->zero_tokens(),
1134
_("Display this help and exit."))
1135
("daemon,d", po::value<bool>(&opt_daemon)->default_value(false)->zero_tokens(),
1136
_("Run as a daemon."))
1232
N_("Display this help and exit."))
1137
1233
("no-defaults", po::value<bool>()->default_value(false)->zero_tokens(),
1138
_("Configuration file defaults are not used if no-defaults is set"))
1234
N_("Configuration file defaults are not used if no-defaults is set"))
1139
1235
("defaults-file", po::value<vector<string> >()->composing()->notifier(&compose_defaults_file_list),
1140
_("Configuration file to use"))
1236
N_("Configuration file to use"))
1141
1237
("config-dir", po::value<fs::path>(&system_config_dir),
1142
_("Base location for config files"))
1238
N_("Base location for config files"))
1143
1239
("plugin-dir", po::value<fs::path>(&plugin_dir)->notifier(¬ify_plugin_dir),
1144
_("Directory for plugins."))
1240
N_("Directory for plugins."))
1147
1243
plugin_load_options.add_options()
1148
1244
("plugin-add", po::value<vector<string> >()->composing()->notifier(&compose_plugin_add),
1149
_("Optional comma separated list of plugins to load at startup in addition "
1245
N_("Optional comma separated list of plugins to load at startup in addition "
1150
1246
"to the default list of plugins. "
1151
1247
"[for example: --plugin_add=crc32,logger_gearman]"))
1152
1248
("plugin-remove", po::value<vector<string> >()->composing()->notifier(&compose_plugin_remove),
1153
_("Optional comma separated list of plugins to not load at startup. Effectively "
1249
N_("Optional comma separated list of plugins to not load at startup. Effectively "
1154
1250
"removes a plugin from the list of plugins to be loaded. "
1155
1251
"[for example: --plugin_remove=crc32,logger_gearman]"))
1156
1252
("plugin-load", po::value<string>()->notifier(¬ify_plugin_load)->default_value(PANDORA_PLUGIN_LIST),
1157
_("Optional comma separated list of plugins to load at starup instead of "
1253
N_("Optional comma separated list of plugins to load at starup instead of "
1158
1254
"the default plugin load list. "
1159
1255
"[for example: --plugin_load=crc32,logger_gearman]"))
1162
1258
long_options.add_options()
1163
1259
("auto-increment-increment", po::value<uint64_t>(&global_system_variables.auto_increment_increment)->default_value(1)->notifier(&check_limits_aii),
1164
_("Auto-increment columns are incremented by this"))
1260
N_("Auto-increment columns are incremented by this"))
1165
1261
("auto-increment-offset", po::value<uint64_t>(&global_system_variables.auto_increment_offset)->default_value(1)->notifier(&check_limits_aio),
1166
_("Offset added to Auto-increment columns. Used when auto-increment-increment != 1"))
1262
N_("Offset added to Auto-increment columns. Used when auto-increment-increment != 1"))
1167
1263
("basedir,b", po::value<fs::path>(&basedir),
1168
_("Path to installation directory. All paths are usually resolved "
1264
N_("Path to installation directory. All paths are usually resolved "
1169
1265
"relative to this."))
1170
1266
("chroot,r", po::value<string>(),
1171
_("Chroot drizzled daemon during startup."))
1267
N_("Chroot drizzled daemon during startup."))
1172
1268
("collation-server", po::value<string>(),
1173
_("Set the default collation."))
1269
N_("Set the default collation."))
1174
1270
("completion-type", po::value<uint32_t>(&global_system_variables.completion_type)->default_value(0)->notifier(&check_limits_completion_type),
1175
_("Default completion type."))
1176
("core-file", _("Write core on errors."))
1177
("datadir", po::value<fs::path>(&getDataHome()),
1178
_("Path to the database root."))
1271
N_("Default completion type."))
1272
("core-file", N_("Write core on errors."))
1273
("datadir", po::value<fs::path>(&data_home),
1274
N_("Path to the database root."))
1179
1275
("default-storage-engine", po::value<string>(),
1180
_("Set the default storage engine for tables."))
1276
N_("Set the default storage engine for tables."))
1181
1277
("default-time-zone", po::value<string>(),
1182
_("Set the default time zone."))
1278
N_("Set the default time zone."))
1183
1279
("exit-info,T", po::value<long>(),
1184
_("Used for debugging; Use at your own risk!"))
1280
N_("Used for debugging; Use at your own risk!"))
1185
1281
("gdb", po::value<bool>(&opt_debugging)->default_value(false)->zero_tokens(),
1186
_("Set up signals usable for debugging"))
1282
N_("Set up signals usable for debugging"))
1187
1283
("lc-time-name", po::value<string>(),
1188
_("Set the language used for the month names and the days of the week."))
1284
N_("Set the language used for the month names and the days of the week."))
1189
1285
("log-warnings,W", po::value<bool>(&global_system_variables.log_warnings)->default_value(false)->zero_tokens(),
1190
_("Log some not critical warnings to the log file."))
1286
N_("Log some not critical warnings to the log file."))
1191
1287
("pid-file", po::value<fs::path>(&pid_file),
1192
_("Pid file used by drizzled."))
1288
N_("Pid file used by drizzled."))
1193
1289
("port-open-timeout", po::value<uint32_t>(&drizzled_bind_timeout)->default_value(0),
1194
_("Maximum time in seconds to wait for the port to become free. "))
1195
("replicate-query", po::value<bool>(&global_system_variables.replicate_query)->default_value(false)->zero_tokens(),
1196
_("Include the SQL query in replicated protobuf messages."))
1290
N_("Maximum time in seconds to wait for the port to become free. "))
1197
1291
("secure-file-priv", po::value<fs::path>(&secure_file_priv)->notifier(expand_secure_file_priv),
1198
_("Limit LOAD DATA, SELECT ... OUTFILE, and LOAD_FILE() to files "
1292
N_("Limit LOAD DATA, SELECT ... OUTFILE, and LOAD_FILE() to files "
1199
1293
"within specified directory"))
1200
1294
("server-id", po::value<uint32_t>(&server_id)->default_value(0),
1201
_("Uniquely identifies the server instance in the community of "
1295
N_("Uniquely identifies the server instance in the community of "
1202
1296
"replication partners."))
1203
1297
("skip-stack-trace",
1204
_("Don't print a stack trace on failure."))
1298
N_("Don't print a stack trace on failure."))
1205
1299
("symbolic-links,s", po::value<bool>(&internal::my_use_symdir)->default_value(IF_PURIFY(false,true))->zero_tokens(),
1206
_("Enable symbolic link support."))
1300
N_("Enable symbolic link support."))
1207
1301
("timed-mutexes", po::value<bool>(&internal::timed_mutexes)->default_value(false)->zero_tokens(),
1208
_("Specify whether to time mutexes (only InnoDB mutexes are currently "
1302
N_("Specify whether to time mutexes (only InnoDB mutexes are currently "
1210
1304
("tmpdir,t", po::value<string>(),
1211
_("Path for temporary files."))
1305
N_("Path for temporary files."))
1212
1306
("transaction-isolation", po::value<string>(),
1213
_("Default transaction isolation level."))
1214
("transaction-message-threshold", po::value<size_t>(&transaction_message_threshold)->default_value(1024*1024)->notifier(&check_limits_transaction_message_threshold),
1215
_("Max message size written to transaction log, valid values 131072 - 1048576 bytes."))
1307
N_("Default transaction isolation level."))
1308
("transaction-message-threshold", po::value<size_t>(&global_system_variables.transaction_message_threshold)->default_value(1024*1024)->notifier(&check_limits_transaction_message_threshold),
1309
N_("Max message size written to transaction log, valid values 131072 - 1048576 bytes."))
1216
1310
("user,u", po::value<string>(),
1217
_("Run drizzled daemon as user."))
1311
N_("Run drizzled daemon as user."))
1219
_("Output version information and exit."))
1220
("back-log", po::value<back_log_constraints>(&back_log),
1221
_("The number of outstanding connection requests Drizzle can have. This "
1313
N_("Output version information and exit."))
1314
("back-log", po::value<uint32_t>(&back_log)->default_value(50)->notifier(&check_limits_back_log),
1315
N_("The number of outstanding connection requests Drizzle can have. This "
1222
1316
"comes into play when the main Drizzle thread gets very many connection "
1223
1317
"requests in a very short time."))
1224
1318
("bulk-insert-buffer-size",
1225
1319
po::value<uint64_t>(&global_system_variables.bulk_insert_buff_size)->default_value(8192*1024),
1226
_("Size of tree cache used in bulk insert optimization. Note that this is "
1320
N_("Size of tree cache used in bulk insert optimization. Note that this is "
1227
1321
"a limit per thread!"))
1228
1322
("div-precision-increment", po::value<uint32_t>(&global_system_variables.div_precincrement)->default_value(4)->notifier(&check_limits_dpi),
1229
_("Precision of the result of '/' operator will be increased on that "
1323
N_("Precision of the result of '/' operator will be increased on that "
1231
1325
("group-concat-max-len", po::value<uint64_t>(&global_system_variables.group_concat_max_len)->default_value(1024)->notifier(&check_limits_gcml),
1232
_("The maximum length of the result of function group_concat."))
1326
N_("The maximum length of the result of function group_concat."))
1233
1327
("join-buffer-size", po::value<uint64_t>(&global_system_variables.join_buff_size)->default_value(128*1024L)->notifier(&check_limits_join_buffer_size),
1234
_("The size of the buffer that is used for full joins."))
1235
("join-heap-threshold",
1236
po::value<uint64_t>()->default_value(0),
1237
_("A global cap on the amount of memory that can be allocated by session join buffers (0 means unlimited)"))
1238
("max-allowed-packet", po::value<uint32_t>(&global_system_variables.max_allowed_packet)->default_value(64*1024*1024L)->notifier(&check_limits_map),
1239
_("Max packetlength to send/receive from to server."))
1328
N_("The size of the buffer that is used for full joins."))
1329
("max-allowed-packet", po::value<uint32_t>(&global_system_variables.max_allowed_packet)->default_value(1024*1024L)->notifier(&check_limits_map),
1330
N_("Max packetlength to send/receive from to server."))
1331
("max-connect-errors", po::value<uint64_t>(&max_connect_errors)->default_value(MAX_CONNECT_ERRORS)->notifier(&check_limits_mce),
1332
N_("If there is more than this number of interrupted connections from a "
1333
"host this host will be blocked from further connections."))
1240
1334
("max-error-count", po::value<uint64_t>(&global_system_variables.max_error_count)->default_value(DEFAULT_ERROR_COUNT)->notifier(&check_limits_max_err_cnt),
1241
_("Max number of errors/warnings to store for a statement."))
1335
N_("Max number of errors/warnings to store for a statement."))
1242
1336
("max-heap-table-size", po::value<uint64_t>(&global_system_variables.max_heap_table_size)->default_value(16*1024*1024L)->notifier(&check_limits_mhts),
1243
_("Don't allow creation of heap tables bigger than this."))
1337
N_("Don't allow creation of heap tables bigger than this."))
1244
1338
("max-join-size", po::value<drizzled::ha_rows>(&global_system_variables.max_join_size)->default_value(INT32_MAX)->notifier(&check_limits_max_join_size),
1245
_("Joins that are probably going to read more than max_join_size records "
1339
N_("Joins that are probably going to read more than max_join_size records "
1246
1340
"return an error."))
1247
1341
("max-length-for-sort-data", po::value<uint64_t>(&global_system_variables.max_length_for_sort_data)->default_value(1024)->notifier(&check_limits_mlfsd),
1248
_("Max number of bytes in sorted records."))
1342
N_("Max number of bytes in sorted records."))
1249
1343
("max-seeks-for-key", po::value<uint64_t>(&global_system_variables.max_seeks_for_key)->default_value(ULONG_MAX)->notifier(&check_limits_msfk),
1250
_("Limit assumed max number of seeks when looking up rows based on a key"))
1344
N_("Limit assumed max number of seeks when looking up rows based on a key"))
1251
1345
("max-sort-length", po::value<size_t>(&global_system_variables.max_sort_length)->default_value(1024)->notifier(&check_limits_max_sort_length),
1252
_("The number of bytes to use when sorting BLOB or TEXT values "
1346
N_("The number of bytes to use when sorting BLOB or TEXT values "
1253
1347
"(only the first max_sort_length bytes of each value are used; the "
1254
1348
"rest are ignored)."))
1255
1349
("max-write-lock-count", po::value<uint64_t>(&max_write_lock_count)->default_value(UINT64_MAX),
1256
_("After this many write locks, allow some read locks to run in between."))
1350
N_("After this many write locks, allow some read locks to run in between."))
1257
1351
("min-examined-row-limit", po::value<uint64_t>(&global_system_variables.min_examined_row_limit)->default_value(0)->notifier(&check_limits_merl),
1258
_("Don't log queries which examine less than min_examined_row_limit "
1352
N_("Don't log queries which examine less than min_examined_row_limit "
1259
1353
"rows to file."))
1260
1354
("disable-optimizer-prune",
1261
_("Do not apply any heuristic(s) during query optimization to prune, "
1355
N_("Do not apply any heuristic(s) during query optimization to prune, "
1262
1356
"thus perform an exhaustive search from the optimizer search space."))
1263
1357
("optimizer-search-depth", po::value<uint32_t>(&global_system_variables.optimizer_search_depth)->default_value(0)->notifier(&check_limits_osd),
1264
_("Maximum depth of search performed by the query optimizer. Values "
1358
N_("Maximum depth of search performed by the query optimizer. Values "
1265
1359
"larger than the number of relations in a query result in better query "
1266
1360
"plans, but take longer to compile a query. Smaller values than the "
1267
1361
"number of tables in a relation result in faster optimization, but may "
1270
1364
"optimizer will switch to the original find_best (used for "
1271
1365
"testing/comparison)."))
1272
1366
("preload-buffer-size", po::value<uint64_t>(&global_system_variables.preload_buff_size)->default_value(32*1024L)->notifier(&check_limits_pbs),
1273
_("The size of the buffer that is allocated when preloading indexes"))
1367
N_("The size of the buffer that is allocated when preloading indexes"))
1274
1368
("query-alloc-block-size",
1275
1369
po::value<uint32_t>(&global_system_variables.query_alloc_block_size)->default_value(QUERY_ALLOC_BLOCK_SIZE)->notifier(&check_limits_qabs),
1276
_("Allocation block size for query parsing and execution"))
1370
N_("Allocation block size for query parsing and execution"))
1277
1371
("query-prealloc-size",
1278
1372
po::value<uint32_t>(&global_system_variables.query_prealloc_size)->default_value(QUERY_ALLOC_PREALLOC_SIZE)->notifier(&check_limits_qps),
1279
_("Persistent buffer for query parsing and execution"))
1373
N_("Persistent buffer for query parsing and execution"))
1280
1374
("range-alloc-block-size",
1281
1375
po::value<size_t>(&global_system_variables.range_alloc_block_size)->default_value(RANGE_ALLOC_BLOCK_SIZE)->notifier(&check_limits_rabs),
1282
_("Allocation block size for storing ranges during optimization"))
1376
N_("Allocation block size for storing ranges during optimization"))
1283
1377
("read-buffer-size",
1284
1378
po::value<uint32_t>(&global_system_variables.read_buff_size)->default_value(128*1024L)->notifier(&check_limits_read_buffer_size),
1285
_("Each thread that does a sequential scan allocates a buffer of this "
1379
N_("Each thread that does a sequential scan allocates a buffer of this "
1286
1380
"size for each table it scans. If you do many sequential scans, you may "
1287
1381
"want to increase this value."))
1288
("read-buffer-threshold",
1289
po::value<uint64_t>()->default_value(0),
1290
_("A global cap on the size of read-buffer-size (0 means unlimited)"))
1291
1382
("read-rnd-buffer-size",
1292
1383
po::value<uint32_t>(&global_system_variables.read_rnd_buff_size)->default_value(256*1024L)->notifier(&check_limits_read_rnd_buffer_size),
1293
_("When reading rows in sorted order after a sort, the rows are read "
1384
N_("When reading rows in sorted order after a sort, the rows are read "
1294
1385
"through this buffer to avoid a disk seeks. If not set, then it's set "
1295
1386
"to the value of record_buffer."))
1296
("read-rnd-threshold",
1297
po::value<uint64_t>()->default_value(0),
1298
_("A global cap on the size of read-rnd-buffer-size (0 means unlimited)"))
1299
1387
("scheduler", po::value<string>(),
1300
_("Select scheduler to be used (by default multi-thread)."))
1388
N_("Select scheduler to be used (by default multi-thread)."))
1301
1389
("sort-buffer-size",
1302
1390
po::value<size_t>(&global_system_variables.sortbuff_size)->default_value(MAX_SORT_MEMORY)->notifier(&check_limits_sort_buffer_size),
1303
_("Each thread that needs to do a sort allocates a buffer of this size."))
1304
("sort-heap-threshold",
1305
po::value<uint64_t>()->default_value(0),
1306
_("A global cap on the amount of memory that can be allocated by session sort buffers (0 means unlimited)"))
1391
N_("Each thread that needs to do a sort allocates a buffer of this size."))
1307
1392
("table-definition-cache", po::value<size_t>(&table_def_size)->default_value(128)->notifier(&check_limits_tdc),
1308
_("The number of cached table definitions."))
1393
N_("The number of cached table definitions."))
1309
1394
("table-open-cache", po::value<uint64_t>(&table_cache_size)->default_value(TABLE_OPEN_CACHE_DEFAULT)->notifier(&check_limits_toc),
1310
_("The number of cached open tables."))
1395
N_("The number of cached open tables."))
1311
1396
("table-lock-wait-timeout", po::value<uint64_t>(&table_lock_wait_timeout)->default_value(50)->notifier(&check_limits_tlwt),
1312
_("Timeout in seconds to wait for a table level lock before returning an "
1397
N_("Timeout in seconds to wait for a table level lock before returning an "
1313
1398
"error. Used only if the connection has active cursors."))
1314
1399
("thread-stack", po::value<size_t>(&my_thread_stack_size)->default_value(DEFAULT_THREAD_STACK)->notifier(&check_limits_thread_stack),
1315
_("The stack size for each thread."))
1400
N_("The stack size for each thread."))
1316
1401
("tmp-table-size",
1317
1402
po::value<uint64_t>(&global_system_variables.tmp_table_size)->default_value(16*1024*1024L)->notifier(&check_limits_tmp_table_size),
1318
_("If an internal in-memory temporary table exceeds this size, Drizzle will"
1403
N_("If an internal in-memory temporary table exceeds this size, Drizzle will"
1319
1404
" automatically convert it to an on-disk MyISAM table."))
1337
1422
po::store(parsed, vm);
1339
catch (std::exception&)
1341
errmsg_printf(error::ERROR, _("Duplicate entry for command line option\n"));
1426
errmsg_printf(ERRMSG_LVL_ERROR, _("Duplicate entry for command line option\n"));
1342
1427
unireg_abort(1);
1345
1430
if (not vm["no-defaults"].as<bool>())
1347
fs::path system_config_file_drizzle(system_config_dir);
1348
system_config_file_drizzle /= "drizzled.cnf";
1349
1432
defaults_file_list.insert(defaults_file_list.begin(),
1350
system_config_file_drizzle.file_string());
1352
fs::path config_conf_d_location(system_config_dir);
1353
config_conf_d_location /= "conf.d";
1356
CachedDirectory config_conf_d(config_conf_d_location.file_string());
1357
if (not config_conf_d.fail())
1433
system_config_file_drizzle);
1436
fs::path config_conf_d_location(system_config_dir);
1437
config_conf_d_location /= "conf.d";
1439
CachedDirectory config_conf_d(config_conf_d_location.file_string());
1440
if (not config_conf_d.fail())
1443
for (CachedDirectory::Entries::const_iterator iter= config_conf_d.getEntries().begin();
1444
iter != config_conf_d.getEntries().end();
1360
for (CachedDirectory::Entries::const_iterator iter= config_conf_d.getEntries().begin();
1361
iter != config_conf_d.getEntries().end();
1447
string file_entry((*iter)->filename);
1449
if (not file_entry.empty()
1450
&& file_entry != "."
1451
&& file_entry != "..")
1364
string file_entry((*iter)->filename);
1366
if (not file_entry.empty()
1367
&& file_entry != "."
1368
&& file_entry != "..")
1370
fs::path the_entry(config_conf_d_location);
1371
the_entry /= file_entry;
1372
defaults_file_list.push_back(the_entry.file_string());
1453
fs::path the_entry(config_conf_d_location);
1454
the_entry /= file_entry;
1455
defaults_file_list.push_back(the_entry.file_string());
1460
process_defaults_files();
1378
1461
/* TODO: here is where we should add a process_env_vars */
1380
1463
/* We need a notify here so that plugin_init will work properly */
1385
catch (po::validation_error &err)
1387
errmsg_printf(error::ERROR,
1389
"Use --help to get a list of available options\n"),
1390
internal::my_progname, err.what());
1394
process_defaults_files();
1396
/* Process with notify a second time because a config file may contain
1397
plugin loader options */
1403
catch (po::validation_error &err)
1405
errmsg_printf(error::ERROR,
1407
"Use --help to get a list of available options\n"),
1408
internal::my_progname, err.what());
1415
int init_remaining_variables(module::Registry &plugins)
1417
int style = po::command_line_style::default_style & ~po::command_line_style::allow_guessing;
1419
current_pid= getpid(); /* Save for later ref */
1421
1465
/* At this point, we've read all the options we need to read from files and
1422
1466
collected most of them into unknown options - now let's load everything
1425
1469
if (plugin_init(plugins, plugin_options))
1427
errmsg_printf(error::ERROR, _("Failed to initialize plugins\n"));
1471
errmsg_printf(ERRMSG_LVL_ERROR, _("Failed to initialize plugins\n"));
1428
1472
unireg_abort(1);