Check for signer chains containing UTF8-marked strings and offer
[dcpomatic.git] / src / lib / config.h
index d50e585e315ebee2c6e92abaceaac18bc2f99438..2fca9699c786006d5819064ecb0acb4b1e5a49c5 100644 (file)
@@ -330,6 +330,7 @@ public:
                NAG_DKDM_CONFIG,
                NAG_ENCRYPTED_METADATA,
                NAG_REMAKE_DECRYPTION_CHAIN,
+               NAG_BAD_SIGNER_CHAIN,
                NAG_COUNT
        };
 
@@ -696,6 +697,10 @@ public:
        static boost::signals2::signal<void ()> FailedToLoad;
        /** Emitted if read() issued a warning which the user might want to know about */
        static boost::signals2::signal<void (std::string)> Warning;
+       /** Emitted if there is a bad certificate in the signer chain.  Handler can call
+        *  true to ask Config to re-create the chain.
+        */
+       static boost::signals2::signal<bool (void)> BadSignerChain;
 
        void write () const;
        void write_config () const;
@@ -729,6 +734,7 @@ private:
        boost::shared_ptr<dcp::CertificateChain> create_certificate_chain ();
        boost::filesystem::path directory_or (boost::optional<boost::filesystem::path> dir, boost::filesystem::path a) const;
        void add_to_history_internal (std::vector<boost::filesystem::path>& h, boost::filesystem::path p);
+       void backup ();
 
        template <class T>
        void maybe_set (T& member, T new_value, Property prop = OTHER) {
@@ -844,6 +850,8 @@ private:
        int _frames_in_memory_multiplier;
        boost::optional<int> _decode_reduction;
 
+       static int const _current_version;
+
        /** Singleton instance, or 0 */
        static Config* _instance;
 };