blob: 38e5299ad38b9e20501387f2193b0fa448e49e3e [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 __DOCKER_HPP__
#define __DOCKER_HPP__
#include <list>
#include <string>
#include <process/future.hpp>
#include <process/subprocess.hpp>
#include <stout/duration.hpp>
#include <stout/json.hpp>
#include <stout/none.hpp>
#include <stout/nothing.hpp>
#include <stout/option.hpp>
#include <stout/version.hpp>
#include "mesos/resources.hpp"
// Abstraction for working with Docker (modeled on CLI).
//
// TODO(benh): Make futures returned by functions be discardable.
class Docker
{
public:
// Create Docker abstraction and optionally validate docker.
static Try<Docker*> create(const std::string& path, bool validate = true);
virtual ~Docker() {}
class Container
{
public:
static Try<Container> create(
const std::string& output);
// Returns the docker inspect output.
const std::string output;
// Returns the ID of the container.
const std::string id;
// Returns the name of the container.
const std::string name;
// Returns the pid of the container, or None if the container is
// not running.
const Option<pid_t> pid;
// Returns if the container has already started. This field is
// needed since pid is empty when the container terminates.
const bool started;
// Returns the IPAddress of the container, or None if no IP has
// been not been assigned.
const Option<std::string> ipAddress;
private:
Container(
const std::string& output,
const std::string& id,
const std::string& name,
const Option<pid_t>& pid,
bool started,
const Option<std::string>& ipAddress)
: output(output),
id(id),
name(name),
pid(pid),
started(started),
ipAddress(ipAddress) {}
};
class Image
{
public:
static Try<Image> create(const JSON::Object& json);
Option<std::vector<std::string>> entrypoint;
private:
Image(const Option<std::vector<std::string>>& _entrypoint)
: entrypoint(_entrypoint) {}
};
// Performs 'docker run IMAGE'.
virtual process::Future<Nothing> run(
const mesos::ContainerInfo& containerInfo,
const mesos::CommandInfo& commandInfo,
const std::string& containerName,
const std::string& sandboxDirectory,
const std::string& mappedDirectory,
const Option<mesos::Resources>& resources = None(),
const Option<std::map<std::string, std::string>>& env = None(),
const Option<std::string>& stdoutPath = None(),
const Option<std::string>& stderrPath = None()) const;
// Returns the current docker version.
virtual process::Future<Version> version() const;
// Performs 'docker stop -t TIMEOUT CONTAINER'. If remove is true then a rm -f
// will be called when stop failed, otherwise a failure is returned. The
// timeout parameter will be passed through to docker and is the amount of
// time for docker to wait after stopping a container before killing it.
// A value of zero (the default value) is the same as issuing a
// 'docker kill CONTAINER'.
virtual process::Future<Nothing> stop(
const std::string& containerName,
const Duration& timeout = Seconds(0),
bool remove = false) const;
// Performs 'docker rm (-f) CONTAINER'.
virtual process::Future<Nothing> rm(
const std::string& containerName,
bool force = false) const;
// Performs 'docker inspect CONTAINER'. If retryInterval is set,
// we will keep retrying inspect until the container is started or
// the future is discarded.
virtual process::Future<Container> inspect(
const std::string& containerName,
const Option<Duration>& retryInterval = None()) const;
// Performs 'docker ps (-a)'.
virtual process::Future<std::list<Container>> ps(
bool all = false,
const Option<std::string>& prefix = None()) const;
virtual process::Future<Image> pull(
const std::string& directory,
const std::string& image,
bool force = false) const;
protected:
// Uses the specified path to the Docker CLI tool.
Docker(const std::string& _path) : path(_path) {};
private:
static process::Future<Nothing> _run(
const Option<int>& status);
static process::Future<Version> _version(
const std::string& cmd,
const process::Subprocess& s);
static process::Future<Version> __version(
const process::Future<std::string>& output);
static process::Future<Nothing> _stop(
const Docker& docker,
const std::string& containerName,
const std::string& cmd,
const process::Subprocess& s,
bool remove);
static void _inspect(
const std::string& cmd,
const process::Owned<process::Promise<Container>>& promise,
const Option<Duration>& retryInterval);
static void __inspect(
const std::string& cmd,
const process::Owned<process::Promise<Container>>& promise,
const Option<Duration>& retryInterval,
process::Future<std::string> output,
const process::Subprocess& s);
static void ___inspect(
const std::string& cmd,
const process::Owned<process::Promise<Container>>& promise,
const Option<Duration>& retryInterval,
const process::Future<std::string>& output);
static process::Future<std::list<Container>> _ps(
const Docker& docker,
const std::string& cmd,
const process::Subprocess& s,
const Option<std::string>& prefix,
process::Future<std::string> output);
static process::Future<std::list<Container>> __ps(
const Docker& docker,
const Option<std::string>& prefix,
const std::string& output);
static process::Future<Image> _pull(
const Docker& docker,
const process::Subprocess& s,
const std::string& directory,
const std::string& image,
const std::string& path,
process::Future<std::string> output);
static process::Future<Image> __pull(
const Docker& docker,
const std::string& directory,
const std::string& image,
const std::string& path);
static process::Future<Image> ___pull(
const Docker& docker,
const process::Subprocess& s,
const std::string& cmd,
const std::string& directory,
const std::string& image);
static process::Future<Image> ____pull(
const std::string& output);
static void pullDiscarded(
const process::Subprocess& s,
const std::string& cmd);
const std::string path;
};
#endif // __DOCKER_HPP__