blob: 765935e97b6c1686ab464a5cf1cf2dfd816f51f1 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef __MESOS_V1_SCHEDULER_HPP__
#define __MESOS_V1_SCHEDULER_HPP__
#include <functional>
#include <memory>
#include <queue>
#include <string>
#include <mesos/http.hpp>
#include <mesos/v1/mesos.hpp>
#include <mesos/v1/scheduler/scheduler.hpp>
namespace mesos {
// Forward declaration.
namespace internal {
class MasterDetector;
} // namespace internal {
namespace v1 {
namespace scheduler {
class MesosProcess; // Forward declaration.
// Interface to Mesos for a scheduler. Abstracts master detection
// (connection and disconnection).
//
// Expects three callbacks, 'connected', 'disconnected', and
// 'received' which will get invoked _serially_ when it's determined
// that we've connected (i.e., detected master), disconnected
// (i.e, detected no master), or received events from the master.
// Note that we drop events while disconnected.
class Mesos
{
public:
Mesos(const std::string& master,
ContentType contentType,
const std::function<void()>& connected,
const std::function<void()>& disconnected,
const std::function<void(const std::queue<Event>&)>& received);
// Delete copy constructor.
Mesos(const Mesos& other) = delete;
// Delete assignment operator.
Mesos& operator=(const Mesos& other) = delete;
virtual ~Mesos();
// Attempts to send a call to the master.
//
// Some local validation of calls is performed which may generate
// events without ever being sent to the master. This includes when
// calls are sent but no master is currently detected (i.e., we're
// disconnected).
virtual void send(const Call& call);
protected:
// NOTE: This constructor is used for testing.
Mesos(
const std::string& master,
ContentType contentType,
const std::function<void()>& connected,
const std::function<void()>& disconnected,
const std::function<void(const std::queue<Event>&)>& received,
const Option<std::shared_ptr<mesos::internal::MasterDetector>>& detector);
// Stops the library so that:
// - No more calls can be sent to the master.
// - No more callbacks can be made to the scheduler. In some cases, there
// may be one additional callback if the library was in the middle of
// processing an event.
//
// NOTE: This is used for testing.
virtual void stop();
private:
MesosProcess* process;
};
} // namespace scheduler {
} // namespace v1 {
} // namespace mesos {
#endif // __MESOS_V1_SCHEDULER_HPP__