Apache Mesos
posix.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 __POSIX_FILESYSTEM_ISOLATOR_HPP__
18 #define __POSIX_FILESYSTEM_ISOLATOR_HPP__
19 
20 #include <mesos/resources.hpp>
21 
22 #include "slave/flags.hpp"
23 
25 
27 
28 namespace mesos {
29 namespace internal {
30 namespace slave {
31 
33 {
34 public:
36  const Flags& flags,
38 
40 
42  const std::vector<mesos::slave::ContainerState>& states,
43  const hashset<ContainerID>& orphans) override;
44 
46  const ContainerID& containerId,
47  const mesos::slave::ContainerConfig& containerConfig) override;
48 
50  const ContainerID& containerId,
51  const Resources& resourceRequests,
52  const google::protobuf::Map<
53  std::string, Value::Scalar>& resourceLimits = {}) override;
54 
56  const ContainerID& containerId) override;
57 
58 protected:
60  const Flags& flags,
61  VolumeGidManager* volumeGidManager);
62 
63  const Flags flags;
65 
66  struct Info
67  {
68  explicit Info(const std::string& _directory)
69  : directory(_directory) {}
70 
71  const std::string directory;
72 
73  // Track resources so we can unlink unneeded persistent volumes.
75 
76  std::vector<gid_t> gids;
77  };
78 
80 };
81 
82 } // namespace slave {
83 } // namespace internal {
84 } // namespace mesos {
85 
86 #endif // __POSIX_FILESYSTEM_ISOLATOR_HPP__
const Flags flags
Definition: posix.hpp:63
Definition: check.hpp:33
Definition: resources.hpp:83
Definition: volume_gid_manager.hpp:42
std::vector< gid_t > gids
Definition: posix.hpp:76
Definition: flags.hpp:39
process::Future< Nothing > cleanup(const ContainerID &containerId) override
Definition: hashmap.hpp:38
process::Future< Nothing > update(const ContainerID &containerId, const Resources &resourceRequests, const google::protobuf::Map< std::string, Value::Scalar > &resourceLimits={}) override
const std::string directory
Definition: posix.hpp:71
Info(const std::string &_directory)
Definition: posix.hpp:68
process::Future< Nothing > recover(const std::vector< mesos::slave::ContainerState > &states, const hashset< ContainerID > &orphans) override
Definition: agent.hpp:25
hashmap< ContainerID, process::Owned< Info > > infos
Definition: posix.hpp:79
Definition: attributes.hpp:24
process::Future< Option< mesos::slave::ContainerLaunchInfo > > prepare(const ContainerID &containerId, const mesos::slave::ContainerConfig &containerConfig) override
VolumeGidManager * volumeGidManager
Definition: posix.hpp:64
Definition: parse.hpp:33
static Try< mesos::slave::Isolator * > create(const Flags &flags, VolumeGidManager *volumeGidManager)
PosixFilesystemIsolatorProcess(const Flags &flags, VolumeGidManager *volumeGidManager)