189 lines
5.6 KiB
C++
189 lines
5.6 KiB
C++
|
/*----------------------------------------------------------------------------*/
|
||
|
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
|
||
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
||
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
||
|
/* the project. */
|
||
|
/*----------------------------------------------------------------------------*/
|
||
|
|
||
|
#include "VisionStatus.h"
|
||
|
|
||
|
#ifndef _WIN32
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <errno.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <unistd.h>
|
||
|
#endif
|
||
|
|
||
|
#include <cstring>
|
||
|
|
||
|
#include "wpi/SmallString.h"
|
||
|
#include "wpi/StringRef.h"
|
||
|
#include "wpi/json.h"
|
||
|
#include "wpi/raw_ostream.h"
|
||
|
#include "wpi/uv/Buffer.h"
|
||
|
#include "wpi/uv/Pipe.h"
|
||
|
#include "wpi/uv/Process.h"
|
||
|
#include "wpi/uv/Work.h"
|
||
|
|
||
|
namespace uv = wpi::uv;
|
||
|
|
||
|
#define SERVICE "/service/camera"
|
||
|
|
||
|
std::shared_ptr<VisionStatus> VisionStatus::GetInstance() {
|
||
|
static auto visStatus = std::make_shared<VisionStatus>(private_init{});
|
||
|
return visStatus;
|
||
|
}
|
||
|
|
||
|
void VisionStatus::RunSvc(const char* cmd,
|
||
|
std::function<void(wpi::StringRef)> onFail) {
|
||
|
#ifndef _WIN32
|
||
|
struct SvcWorkReq : public uv::WorkReq {
|
||
|
SvcWorkReq(const char* cmd_, std::function<void(wpi::StringRef)> onFail_)
|
||
|
: cmd(cmd_), onFail(onFail_) {}
|
||
|
const char* cmd;
|
||
|
std::function<void(wpi::StringRef)> onFail;
|
||
|
wpi::SmallString<128> err;
|
||
|
};
|
||
|
|
||
|
auto workReq = std::make_shared<SvcWorkReq>(cmd, onFail);
|
||
|
workReq->work.connect([r = workReq.get()] {
|
||
|
int fd = open(SERVICE "/supervise/control", O_WRONLY | O_NDELAY);
|
||
|
if (fd == -1) {
|
||
|
wpi::raw_svector_ostream os(r->err);
|
||
|
if (errno == ENXIO)
|
||
|
os << "unable to control service: supervise not running";
|
||
|
else
|
||
|
os << "unable to control service: " << std::strerror(errno);
|
||
|
} else {
|
||
|
fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) & ~O_NONBLOCK);
|
||
|
if (write(fd, r->cmd, std::strlen(r->cmd)) == -1) {
|
||
|
wpi::raw_svector_ostream os(r->err);
|
||
|
os << "error writing command: " << std::strerror(errno);
|
||
|
}
|
||
|
close(fd);
|
||
|
}
|
||
|
});
|
||
|
workReq->afterWork.connect([r = workReq.get()] {
|
||
|
if (r->onFail && !r->err.empty()) r->onFail(r->err.str());
|
||
|
});
|
||
|
|
||
|
uv::QueueWork(m_loop, workReq);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void VisionStatus::Up(std::function<void(wpi::StringRef)> onFail) {
|
||
|
RunSvc("u", onFail);
|
||
|
UpdateStatus();
|
||
|
}
|
||
|
|
||
|
void VisionStatus::Down(std::function<void(wpi::StringRef)> onFail) {
|
||
|
RunSvc("d", onFail);
|
||
|
UpdateStatus();
|
||
|
}
|
||
|
|
||
|
void VisionStatus::Terminate(std::function<void(wpi::StringRef)> onFail) {
|
||
|
RunSvc("t", onFail);
|
||
|
UpdateStatus();
|
||
|
}
|
||
|
|
||
|
void VisionStatus::Kill(std::function<void(wpi::StringRef)> onFail) {
|
||
|
RunSvc("k", onFail);
|
||
|
UpdateStatus();
|
||
|
}
|
||
|
|
||
|
void VisionStatus::UpdateStatus() {
|
||
|
#ifndef _WIN32
|
||
|
struct StatusWorkReq : public uv::WorkReq {
|
||
|
bool enabled = false;
|
||
|
wpi::SmallString<128> status;
|
||
|
};
|
||
|
|
||
|
auto workReq = std::make_shared<StatusWorkReq>();
|
||
|
|
||
|
workReq->work.connect([r = workReq.get()] {
|
||
|
wpi::raw_svector_ostream os(r->status);
|
||
|
|
||
|
// check to make sure supervise is running
|
||
|
int fd = open(SERVICE "/supervise/ok", O_WRONLY | O_NDELAY);
|
||
|
if (fd == -1) {
|
||
|
if (errno == ENXIO)
|
||
|
os << "supervise not running";
|
||
|
else
|
||
|
os << "unable to open supervise/ok: " << std::strerror(errno);
|
||
|
return;
|
||
|
}
|
||
|
close(fd);
|
||
|
|
||
|
// read the status data
|
||
|
fd = open(SERVICE "/supervise/status", O_RDONLY | O_NDELAY);
|
||
|
if (fd == -1) {
|
||
|
os << "unable to open supervise/status: " << std::strerror(errno);
|
||
|
return;
|
||
|
}
|
||
|
uint8_t status[18];
|
||
|
int nr = read(fd, status, sizeof status);
|
||
|
close(fd);
|
||
|
if (nr < static_cast<int>(sizeof status)) {
|
||
|
os << "unable to read supervise/status: ";
|
||
|
if (nr == -1)
|
||
|
os << std::strerror(errno);
|
||
|
else
|
||
|
os << "bad format";
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// decode the status data (based on daemontools svstat.c)
|
||
|
uint32_t pid = (static_cast<uint32_t>(status[15]) << 24) |
|
||
|
(static_cast<uint32_t>(status[14]) << 16) |
|
||
|
(static_cast<uint32_t>(status[13]) << 8) |
|
||
|
(static_cast<uint32_t>(status[12]));
|
||
|
bool paused = status[16];
|
||
|
auto want = status[17];
|
||
|
uint64_t when = (static_cast<uint64_t>(status[0]) << 56) |
|
||
|
(static_cast<uint64_t>(status[1]) << 48) |
|
||
|
(static_cast<uint64_t>(status[2]) << 40) |
|
||
|
(static_cast<uint64_t>(status[3]) << 32) |
|
||
|
(static_cast<uint64_t>(status[4]) << 24) |
|
||
|
(static_cast<uint64_t>(status[5]) << 16) |
|
||
|
(static_cast<uint64_t>(status[6]) << 8) |
|
||
|
(static_cast<uint64_t>(status[7]));
|
||
|
|
||
|
// constant is from daemontools tai.h
|
||
|
uint64_t now =
|
||
|
4611686018427387914ULL + static_cast<uint64_t>(std::time(nullptr));
|
||
|
if (now >= when)
|
||
|
when = now - when;
|
||
|
else
|
||
|
when = 0;
|
||
|
|
||
|
// convert to status string
|
||
|
if (pid)
|
||
|
os << "up (pid " << pid << ") ";
|
||
|
else
|
||
|
os << "down ";
|
||
|
os << when << " seconds";
|
||
|
if (pid && paused) os << ", paused";
|
||
|
if (!pid && want == 'u') os << ", want up";
|
||
|
if (pid && want == 'd') os << ", want down";
|
||
|
|
||
|
if (pid) r->enabled = true;
|
||
|
});
|
||
|
|
||
|
workReq->afterWork.connect([this, r = workReq.get()] {
|
||
|
wpi::json j = {{"type", "visionStatus"},
|
||
|
{"visionServiceEnabled", r->enabled},
|
||
|
{"visionServiceStatus", r->status.str()}};
|
||
|
update(j);
|
||
|
});
|
||
|
|
||
|
uv::QueueWork(m_loop, workReq);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void VisionStatus::ConsoleLog(uv::Buffer& buf, size_t len) {
|
||
|
wpi::json j = {{"type", "visionLog"},
|
||
|
{"data", wpi::StringRef(buf.base, len)}};
|
||
|
log(j);
|
||
|
}
|