blob: df1459438c5ec7c6b0fff854dd4c0f15fb14ef52 [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.
#include <iostream>
#include <mesos/executor.hpp>
#include <stout/duration.hpp>
#include <stout/os.hpp>
using namespace mesos;
using std::cout;
using std::endl;
using std::string;
class TestExecutor : public Executor
{
public:
~TestExecutor() override {}
void registered(ExecutorDriver* driver,
const ExecutorInfo& executorInfo,
const FrameworkInfo& frameworkInfo,
const SlaveInfo& slaveInfo) override
{
cout << "Registered executor on " << slaveInfo.hostname() << endl;
}
void reregistered(ExecutorDriver* driver,
const SlaveInfo& slaveInfo) override
{
cout << "Re-registered executor on " << slaveInfo.hostname() << endl;
}
void disconnected(ExecutorDriver* driver) override {}
void launchTask(ExecutorDriver* driver, const TaskInfo& task) override
{
cout << "Starting task " << task.task_id().value() << endl;
TaskStatus status;
status.mutable_task_id()->MergeFrom(task.task_id());
status.set_state(TASK_RUNNING);
driver->sendStatusUpdate(status);
// This is where one would perform the requested task.
cout << "Finishing task " << task.task_id().value() << endl;
status.mutable_task_id()->MergeFrom(task.task_id());
status.set_state(TASK_FINISHED);
driver->sendStatusUpdate(status);
}
void killTask(ExecutorDriver* driver, const TaskID& taskId) override {}
void frameworkMessage(ExecutorDriver* driver, const string& data) override {}
void shutdown(ExecutorDriver* driver) override {}
void error(ExecutorDriver* driver, const string& message) override {}
};
int main(int argc, char** argv)
{
TestExecutor executor;
MesosExecutorDriver driver(&executor);
return driver.run() == DRIVER_STOPPED ? 0 : 1;
}