Apache Mesos
log.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_STATE_LOG_HPP__
18 #define __MESOS_STATE_LOG_HPP__
19 
20 #include <set>
21 #include <string>
22 
23 #include <mesos/log/log.hpp>
24 
25 #include <mesos/state/storage.hpp>
26 
27 #include <process/future.hpp>
28 
29 #include <stout/option.hpp>
30 #include <stout/uuid.hpp>
31 
32 namespace mesos {
33 namespace state {
34 
35 // Forward declarations.
36 class LogStorageProcess;
37 
38 
40 {
41 public:
42  LogStorage(mesos::log::Log* log, size_t diffsBetweenSnapshots = 0);
43 
44  ~LogStorage() override;
45 
46  // Storage implementation.
48  const std::string& name) override;
50  const internal::state::Entry& entry,
51  const id::UUID& uuid) override;
52  process::Future<bool> expunge(const internal::state::Entry& entry) override;
54 
55 private:
56  LogStorageProcess* process;
57 };
58 
59 } // namespace state {
60 } // namespace mesos {
61 
62 #endif // __MESOS_STATE_LOG_HPP__
LogStorage(mesos::log::Log *log, size_t diffsBetweenSnapshots=0)
process::Future< bool > expunge(const internal::state::Entry &entry) override
Definition: log.hpp:39
Definition: log.hpp:52
Definition: uuid.hpp:35
Definition: agent.hpp:25
process::Future< std::set< std::string > > names() override
Definition: storage.hpp:33
Definition: executor.hpp:48
constexpr const char * name
Definition: shell.hpp:41
Definition: future.hpp:58