]> git.sesse.net Git - casparcg/blob - core/system_info_provider.h
[README] Updated for 2.1.0 Beta 1
[casparcg] / core / system_info_provider.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Helge Norberg, helge.norberg@svt.se
20 */
21
22 #pragma once
23
24 #include <common/memory.h>
25
26 #include <boost/noncopyable.hpp>
27 #include <boost/property_tree/ptree_fwd.hpp>
28
29 #include <functional>
30 #include <string>
31
32 namespace caspar { namespace core {
33
34 typedef std::function<void (boost::property_tree::wptree& info)> system_info_provider;
35 typedef std::function<std::wstring ()> version_provider;
36
37 class system_info_provider_repository : boost::noncopyable
38 {
39 public:
40         system_info_provider_repository();
41         void register_system_info_provider(system_info_provider provider);
42         void register_version_provider(const std::wstring& version_name, version_provider provider);
43         void fill_information(boost::property_tree::wptree& info) const;
44         std::wstring get_version(const std::wstring& version_name) const;
45 private:
46         struct impl;
47         spl::shared_ptr<impl> impl_;
48 };
49
50 }}