Apache Mesos
launch.hpp
Go to the documentation of this file.
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements. See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership. The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with the License. You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 
17 #ifndef __MESOS_CONTAINERIZER_LAUNCH_HPP__
18 #define __MESOS_CONTAINERIZER_LAUNCH_HPP__
19 
20 #include <string>
21 
22 #include <stout/json.hpp>
23 #include <stout/option.hpp>
24 #include <stout/subcommand.hpp>
25 
26 #include <mesos/mesos.hpp>
27 
28 
29 namespace mesos {
30 namespace internal {
31 namespace slave {
32 
34 {
35 public:
36  static const std::string NAME;
37 
38  struct Flags : public virtual flags::FlagsBase
39  {
40  Flags();
41 
46 #ifdef __linux__
47  Option<pid_t> namespace_mnt_target;
48  bool unshare_namespace_mnt;
49 #endif // __linux__
50  };
51 
53 
55 
56 protected:
57  int execute() override;
58  flags::FlagsBase* getFlags() override { return &flags; }
59 };
60 
61 } // namespace slave {
62 } // namespace internal {
63 } // namespace mesos {
64 
65 #endif // __MESOS_CONTAINERIZER_LAUNCH_HPP__
Option< int_fd > pipe_write
Definition: launch.hpp:44
MesosContainerizerLaunch()
Definition: launch.hpp:52
Definition: subcommand.hpp:41
Option< JSON::Object > launch_info
Definition: launch.hpp:42
Definition: flags.hpp:44
Definition: agent.hpp:25
Option< int_fd > pipe_read
Definition: launch.hpp:43
flags::FlagsBase * getFlags() override
Definition: launch.hpp:58
Definition: attributes.hpp:24
Option< std::string > runtime_directory
Definition: launch.hpp:45
static const std::string NAME
Definition: launch.hpp:36