TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / container / lxc_container.h
diff --git a/src/type3_AndroidCloud/anbox-master/src/anbox/container/lxc_container.h b/src/type3_AndroidCloud/anbox-master/src/anbox/container/lxc_container.h
new file mode 100644 (file)
index 0000000..48173db
--- /dev/null
@@ -0,0 +1,68 @@
+/*
+ * Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef ANBOX_CONTAINER_LXC_CONTAINER_H_
+#define ANBOX_CONTAINER_LXC_CONTAINER_H_
+
+#include "anbox/container/container.h"
+#include "anbox/network/credentials.h"
+
+#include <string>
+#include <vector>
+
+#include <lxc/lxccontainer.h>
+
+namespace anbox {
+namespace common {
+class BinderDevice;
+} // namespace common
+namespace container {
+class LxcContainer : public Container {
+ public:
+  LxcContainer(bool privileged,
+               bool rootfs_overlay,
+               const std::string &container_network_address,
+               const std::string &container_network_gateway,
+               const std::vector<std::string> &container_network_dns_servers,
+               const network::Credentials &creds);
+  ~LxcContainer();
+
+  void start(const Configuration &configuration) override;
+  void stop() override;
+  State state() override;
+
+ private:
+  void set_config_item(const std::string &key, const std::string &value);
+  void setup_id_map();
+  void setup_network();
+  void add_device(const std::string& device, const DeviceSpecification& spec);
+  bool create_binder_devices(unsigned int device_count, std::vector<std::unique_ptr<common::BinderDevice>>& devices);
+
+  State state_;
+  lxc_container *container_;
+  bool privileged_;
+  bool rootfs_overlay_;
+  std::string container_network_address_;
+  std::string container_network_gateway_;
+  std::vector<std::string> container_network_dns_servers_;
+  network::Credentials creds_;
+  std::vector<std::unique_ptr<common::BinderDevice>> binder_devices_;
+};
+}  // namespace container
+}  // namespace anbox
+
+#endif