X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fsrc%2Fanbox%2Fsystem_configuration.h;fp=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fsrc%2Fanbox%2Fsystem_configuration.h;h=aaa081acd89b585d2fb5a1689e0c777739bf43ae;hb=e26c1ec581be598521517829adba8c8dd23a768f;hp=0000000000000000000000000000000000000000;hpb=6699c1aea74eeb0eb400e6299079f0c7576f716f;p=iec.git diff --git a/src/type3_AndroidCloud/anbox-master/src/anbox/system_configuration.h b/src/type3_AndroidCloud/anbox-master/src/anbox/system_configuration.h new file mode 100644 index 0000000..aaa081a --- /dev/null +++ b/src/type3_AndroidCloud/anbox-master/src/anbox/system_configuration.h @@ -0,0 +1,57 @@ +/* + * Copyright (C) 2016 Simon Fels + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 3, as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranties of + * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . + * + */ + +#ifndef ANBOX_SYSTEM_CONFIGURATION_H_ +#define ANBOX_SYSTEM_CONFIGURATION_H_ + +#include +#include + +#include + +namespace anbox { +class SystemConfiguration { + public: + static SystemConfiguration& instance(); + + virtual ~SystemConfiguration() = default; + + void set_data_path(const std::string &path); + + boost::filesystem::path data_dir() const; + std::string rootfs_dir() const; + std::string overlay_dir() const; + std::string combined_rootfs_dir() const; + std::string log_dir() const; + std::string socket_dir() const; + std::string container_config_dir() const; + std::string container_socket_path() const; + std::string container_devices_dir() const; + std::string container_state_dir() const; + std::string input_device_dir() const; + std::string application_item_dir() const; + std::string resource_dir() const; + + protected: + SystemConfiguration(); + + boost::filesystem::path data_path; + boost::filesystem::path resource_path; +}; +} // namespace anbox + +#endif // ANBOX_SYSTEM_CONFIGURATION_H_