118 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
| // AUTOGENERATED COPYRIGHT HEADER START
 | |
| // Copyright (C) 2020-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
 | |
| // AUTOGENERATED COPYRIGHT HEADER END
 | |
| 
 | |
| #pragma once
 | |
| #include "util/util-curl.hpp"
 | |
| #include "util/util-event.hpp"
 | |
| #include "util/util-threadpool.hpp"
 | |
| 
 | |
| #include "warning-disable.hpp"
 | |
| #include <atomic>
 | |
| #include <chrono>
 | |
| #include <map>
 | |
| #include <nlohmann/json.hpp>
 | |
| #include "warning-enable.hpp"
 | |
| 
 | |
| namespace streamfx {
 | |
| 	enum class version_stage : uint8_t {
 | |
| 		STABLE, // A.B.C
 | |
| 		CANDIDATE, // A.B.CcD
 | |
| 		BETA, // A.B.CbD
 | |
| 		ALPHA, // A.B.CaD
 | |
| 	};
 | |
| 	version_stage    stage_from_string(std::string_view str);
 | |
| 	std::string_view stage_to_string(version_stage t);
 | |
| 
 | |
| 	void to_json(nlohmann::json&, const version_stage&);
 | |
| 	void from_json(const nlohmann::json&, version_stage&);
 | |
| 
 | |
| 	struct version_info {
 | |
| 		public:
 | |
| 		uint16_t      major;
 | |
| 		uint16_t      minor;
 | |
| 		uint16_t      patch;
 | |
| 		uint16_t      tweak;
 | |
| 		version_stage stage;
 | |
| 		std::string   url;
 | |
| 		std::string   name;
 | |
| 
 | |
| 		public:
 | |
| 		version_info();
 | |
| 		version_info(const std::string text);
 | |
| 
 | |
| 		bool is_older_than(const version_info other);
 | |
| 
 | |
| 		operator std::string();
 | |
| 	};
 | |
| 
 | |
| 	void to_json(nlohmann::json&, const version_info&);
 | |
| 	void from_json(const nlohmann::json&, version_info&);
 | |
| 
 | |
| 	class updater {
 | |
| 		// Internal
 | |
| 		std::recursive_mutex                              _lock;
 | |
| 		std::weak_ptr<::streamfx::util::threadpool::task> _task;
 | |
| 
 | |
| 		// Options
 | |
| 		std::atomic_bool     _data_sharing_allowed;
 | |
| 		std::atomic_bool     _automation;
 | |
| 		version_stage        _channel;
 | |
| 		std::chrono::seconds _lastcheckedat;
 | |
| 
 | |
| 		// Update Information
 | |
| 		version_info                          _current_info;
 | |
| 		std::map<version_stage, version_info> _updates;
 | |
| 		bool                                  _dirty;
 | |
| 
 | |
| 		private:
 | |
| 		void task(streamfx::util::threadpool::task_data_t);
 | |
| 
 | |
| 		bool can_check();
 | |
| 
 | |
| 		void load();
 | |
| 		void save();
 | |
| 
 | |
| 		public:
 | |
| 		updater();
 | |
| 		~updater();
 | |
| 
 | |
| 		// GDPR compliance (must require user interaction!)
 | |
| 		bool is_data_sharing_allowed();
 | |
| 		void set_data_sharing_allowed(bool);
 | |
| 
 | |
| 		// Automatic Update checks
 | |
| 		bool is_automated();
 | |
| 		void set_automation(bool);
 | |
| 
 | |
| 		// Update Channel
 | |
| 		version_stage get_channel();
 | |
| 		void          set_channel(version_stage channel);
 | |
| 
 | |
| 		// Refresh information.
 | |
| 		void refresh();
 | |
| 
 | |
| 		// Check current data.
 | |
| 		version_info get_current_info();
 | |
| 
 | |
| 		// Check update data.
 | |
| 		bool         is_update_available();
 | |
| 		bool         is_update_available(version_stage channel);
 | |
| 		version_info get_update_info();
 | |
| 		version_info get_update_info(version_stage channel);
 | |
| 
 | |
| 		public:
 | |
| 		struct _ {
 | |
| 			streamfx::util::event<updater&, bool>          gdpr_changed;
 | |
| 			streamfx::util::event<updater&, bool>          automation_changed;
 | |
| 			streamfx::util::event<updater&, version_stage> channel_changed;
 | |
| 
 | |
| 			streamfx::util::event<updater&, std::string&> error;
 | |
| 			streamfx::util::event<updater&>               refreshed;
 | |
| 		} events;
 | |
| 
 | |
| 		public:
 | |
| 		static std::shared_ptr<streamfx::updater> instance();
 | |
| 	};
 | |
| } // namespace streamfx
 |