blob: 2431e6132231ab963c575d1a7304a08e982c30e7 [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed 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.
*/
#pragma once
#include <atomic>
#include <map>
#include <mutex>
#include <optional>
#include <string>
#include <vector>
#include <fruit/fruit.h>
#include "cvd_server.pb.h"
#include "common/libs/fs/shared_fd.h"
#include "common/libs/utils/result.h"
#include "common/libs/utils/unix_sockets.h"
#include "host/commands/cvd/server_client.h"
namespace cuttlefish {
constexpr char kStatusBin[] = "cvd_internal_status";
constexpr char kStopBin[] = "cvd_internal_stop";
class CvdServerHandler {
public:
virtual ~CvdServerHandler() = default;
virtual Result<bool> CanHandle(const RequestWithStdio&) const = 0;
virtual Result<cvd::Response> Handle(const RequestWithStdio&) = 0;
virtual Result<void> Interrupt() = 0;
};
class CvdServer {
public:
using AssemblyDir = std::string;
struct AssemblyInfo {
std::string host_binaries_dir;
};
INJECT(CvdServer());
Result<void> AddHandler(CvdServerHandler* handler);
bool HasAssemblies() const;
void SetAssembly(const AssemblyDir&, const AssemblyInfo&);
Result<AssemblyInfo> GetAssembly(const AssemblyDir&) const;
void Stop();
Result<void> ServerLoop(SharedFD server);
cvd::Status CvdClear(const SharedFD& out, const SharedFD& err);
cvd::Status CvdFleet(const SharedFD& out, const std::string& envconfig) const;
private:
mutable std::mutex assemblies_mutex_;
std::map<AssemblyDir, AssemblyInfo> assemblies_;
std::vector<CvdServerHandler*> handlers_;
std::atomic_bool running_ = true;
Result<CvdServerHandler*> RequestHandler(const RequestWithStdio& request);
};
fruit::Component<> cvdCommandComponent();
fruit::Component<> cvdShutdownComponent();
fruit::Component<> cvdVersionComponent();
std::optional<std::string> GetCuttlefishConfigPath(
const std::string& assembly_dir);
struct CommandInvocation {
std::string command;
std::vector<std::string> arguments;
};
CommandInvocation ParseInvocation(const cvd::Request& request);
} // namespace cuttlefish