summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/config.cc5
-rw-r--r--src/lib/config.h17
2 files changed, 22 insertions, 0 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index 373b71df6..b28f8b957 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -165,6 +165,7 @@ Config::set_defaults ()
_interface_complexity = INTERFACE_SIMPLE;
_player_mode = PLAYER_MODE_WINDOW;
_respect_kdm_validity_periods = false;
+ _player_log_file = boost::none;
_allowed_dcp_frame_rates.clear ();
_allowed_dcp_frame_rates.push_back (24);
@@ -493,6 +494,7 @@ try
}
_respect_kdm_validity_periods = f.optional_bool_child("RespectKDMValidityPeriods").get_value_or(false);
+ _player_log_file = f.optional_string_child("PlayerLogFile");
/* Replace any cinemas from config.xml with those from the configured file */
if (boost::filesystem::exists (_cinemas_file)) {
@@ -880,6 +882,9 @@ Config::write_config () const
}
root->add_child("RespectKDMValidityPeriods")->add_child_text(_respect_kdm_validity_periods ? "1" : "0");
+ if (_player_log_file) {
+ root->add_child("PlayerLogFile")->add_child_text(_player_log_file->string());
+ }
try {
doc.write_to_file_formatted(config_file().string());
diff --git a/src/lib/config.h b/src/lib/config.h
index c8ae32efd..37c036587 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -473,6 +473,10 @@ public:
return _respect_kdm_validity_periods;
}
+ boost::optional<boost::filesystem::path> player_log_file () const {
+ return _player_log_file;
+ }
+
/* SET (mostly) */
void set_master_encoding_threads (int n) {
@@ -879,6 +883,18 @@ public:
maybe_set (_respect_kdm_validity_periods, r);
}
+ void set_player_log_file (boost::filesystem::path p) {
+ maybe_set (_player_log_file, p);
+ }
+
+ void unset_player_log_file () {
+ if (!_player_log_file) {
+ return;
+ }
+ _player_log_file = boost::none;
+ changed ();
+ }
+
void changed (Property p = OTHER);
boost::signals2::signal<void (Property)> Changed;
/** Emitted if read() failed on an existing Config file. There is nothing
@@ -1063,6 +1079,7 @@ private:
Interface _interface_complexity;
PlayerMode _player_mode;
bool _respect_kdm_validity_periods;
+ boost::optional<boost::filesystem::path> _player_log_file;
static int const _current_version;