2016-11-18 22:30:22 -08:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2017-08-23 22:06:13 -07:00
|
|
|
/* Copyright (c) 2016-2017 FIRST. All Rights Reserved. */
|
2016-11-18 22:30:22 -08:00
|
|
|
/* 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 "CameraServer.h"
|
|
|
|
|
|
2017-10-27 11:35:57 -07:00
|
|
|
#include <HAL/HAL.h>
|
2017-08-27 00:11:52 -07:00
|
|
|
#include <llvm/SmallString.h>
|
|
|
|
|
#include <llvm/raw_ostream.h>
|
|
|
|
|
|
2016-11-18 22:30:22 -08:00
|
|
|
#include "Utility.h"
|
|
|
|
|
#include "WPIErrors.h"
|
2017-09-02 00:17:43 -07:00
|
|
|
#include "networktables/NetworkTableInstance.h"
|
2017-01-05 02:51:55 -08:00
|
|
|
#include "ntcore_cpp.h"
|
2016-11-18 22:30:22 -08:00
|
|
|
|
|
|
|
|
using namespace frc;
|
|
|
|
|
|
|
|
|
|
CameraServer* CameraServer::GetInstance() {
|
|
|
|
|
static CameraServer instance;
|
|
|
|
|
return &instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static llvm::StringRef MakeSourceValue(CS_Source source,
|
|
|
|
|
llvm::SmallVectorImpl<char>& buf) {
|
|
|
|
|
CS_Status status = 0;
|
|
|
|
|
buf.clear();
|
|
|
|
|
switch (cs::GetSourceKind(source, &status)) {
|
2017-08-18 21:35:53 -07:00
|
|
|
#ifdef __linux__
|
2016-12-04 00:26:08 -08:00
|
|
|
case cs::VideoSource::kUsb: {
|
2016-11-18 22:30:22 -08:00
|
|
|
llvm::StringRef prefix{"usb:"};
|
|
|
|
|
buf.append(prefix.begin(), prefix.end());
|
2016-12-04 00:26:08 -08:00
|
|
|
auto path = cs::GetUsbCameraPath(source, &status);
|
2016-11-18 22:30:22 -08:00
|
|
|
buf.append(path.begin(), path.end());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-08-18 21:35:53 -07:00
|
|
|
#endif
|
2016-12-04 00:26:08 -08:00
|
|
|
case cs::VideoSource::kHttp: {
|
2016-11-18 22:30:22 -08:00
|
|
|
llvm::StringRef prefix{"ip:"};
|
|
|
|
|
buf.append(prefix.begin(), prefix.end());
|
2016-12-24 21:05:08 -06:00
|
|
|
auto urls = cs::GetHttpCameraUrls(source, &status);
|
|
|
|
|
if (!urls.empty()) buf.append(urls[0].begin(), urls[0].end());
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoSource::kCv:
|
2016-12-18 13:36:44 -08:00
|
|
|
// FIXME: Should be "cv:", but LabVIEW dashboard requires "usb:".
|
|
|
|
|
// https://github.com/wpilibsuite/allwpilib/issues/407
|
|
|
|
|
return "usb:";
|
2016-11-18 22:30:22 -08:00
|
|
|
default:
|
|
|
|
|
return "unknown:";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return llvm::StringRef{buf.begin(), buf.size()};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static std::string MakeStreamValue(llvm::StringRef address, int port) {
|
|
|
|
|
std::string rv;
|
|
|
|
|
llvm::raw_string_ostream stream(rv);
|
|
|
|
|
stream << "mjpg:http://" << address << ':' << port << "/?action=stream";
|
|
|
|
|
stream.flush();
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-02 00:17:43 -07:00
|
|
|
std::shared_ptr<nt::NetworkTable> CameraServer::GetSourceTable(
|
|
|
|
|
CS_Source source) {
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
return m_tables.lookup(source);
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-24 21:05:08 -06:00
|
|
|
std::vector<std::string> CameraServer::GetSinkStreamValues(CS_Sink sink) {
|
|
|
|
|
CS_Status status = 0;
|
|
|
|
|
|
|
|
|
|
// Ignore all but MjpegServer
|
|
|
|
|
if (cs::GetSinkKind(sink, &status) != CS_SINK_MJPEG)
|
|
|
|
|
return std::vector<std::string>{};
|
|
|
|
|
|
|
|
|
|
// Get port
|
|
|
|
|
int port = cs::GetMjpegServerPort(sink, &status);
|
|
|
|
|
|
|
|
|
|
// Generate values
|
|
|
|
|
std::vector<std::string> values;
|
|
|
|
|
auto listenAddress = cs::GetMjpegServerListenAddress(sink, &status);
|
|
|
|
|
if (!listenAddress.empty()) {
|
|
|
|
|
// If a listen address is specified, only use that
|
|
|
|
|
values.emplace_back(MakeStreamValue(listenAddress, port));
|
|
|
|
|
} else {
|
|
|
|
|
// Otherwise generate for hostname and all interface addresses
|
|
|
|
|
values.emplace_back(MakeStreamValue(cs::GetHostname() + ".local", port));
|
|
|
|
|
|
|
|
|
|
for (const auto& addr : m_addresses) {
|
|
|
|
|
if (addr == "127.0.0.1") continue; // ignore localhost
|
|
|
|
|
values.emplace_back(MakeStreamValue(addr, port));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return values;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-05 02:51:55 -08:00
|
|
|
std::vector<std::string> CameraServer::GetSourceStreamValues(CS_Source source) {
|
2016-12-24 21:05:08 -06:00
|
|
|
CS_Status status = 0;
|
|
|
|
|
|
|
|
|
|
// Ignore all but HttpCamera
|
|
|
|
|
if (cs::GetSourceKind(source, &status) != CS_SOURCE_HTTP)
|
|
|
|
|
return std::vector<std::string>{};
|
|
|
|
|
|
|
|
|
|
// Generate values
|
|
|
|
|
auto values = cs::GetHttpCameraUrls(source, &status);
|
|
|
|
|
for (auto& value : values) value = "mjpg:" + value;
|
|
|
|
|
|
2017-01-05 02:51:55 -08:00
|
|
|
// Look to see if we have a passthrough server for this source
|
|
|
|
|
for (const auto& i : m_sinks) {
|
|
|
|
|
CS_Sink sink = i.second.GetHandle();
|
|
|
|
|
CS_Source sinkSource = cs::GetSinkSource(sink, &status);
|
|
|
|
|
if (source == sinkSource &&
|
|
|
|
|
cs::GetSinkKind(sink, &status) == CS_SINK_MJPEG) {
|
|
|
|
|
// Add USB-only passthrough
|
|
|
|
|
int port = cs::GetMjpegServerPort(sink, &status);
|
|
|
|
|
values.emplace_back(MakeStreamValue("172.22.11.2", port));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-24 21:05:08 -06:00
|
|
|
// Set table value
|
|
|
|
|
return values;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 22:30:22 -08:00
|
|
|
void CameraServer::UpdateStreamValues() {
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
// Over all the sinks...
|
|
|
|
|
for (const auto& i : m_sinks) {
|
|
|
|
|
CS_Status status = 0;
|
|
|
|
|
CS_Sink sink = i.second.GetHandle();
|
|
|
|
|
|
|
|
|
|
// Get the source's subtable (if none exists, we're done)
|
|
|
|
|
CS_Source source = cs::GetSinkSource(sink, &status);
|
2017-01-05 02:51:55 -08:00
|
|
|
if (source == 0) continue;
|
2016-11-18 22:30:22 -08:00
|
|
|
auto table = m_tables.lookup(source);
|
2016-12-24 21:05:08 -06:00
|
|
|
if (table) {
|
2017-01-05 02:51:55 -08:00
|
|
|
// Don't set stream values if this is a HttpCamera passthrough
|
|
|
|
|
if (cs::GetSourceKind(source, &status) == CS_SOURCE_HTTP) continue;
|
|
|
|
|
|
2016-12-24 21:05:08 -06:00
|
|
|
// Set table value
|
|
|
|
|
auto values = GetSinkStreamValues(sink);
|
2017-09-02 00:17:43 -07:00
|
|
|
if (!values.empty()) table->GetEntry("streams").SetStringArray(values);
|
2016-11-18 22:30:22 -08:00
|
|
|
}
|
2016-12-24 21:05:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Over all the sources...
|
|
|
|
|
for (const auto& i : m_sources) {
|
|
|
|
|
CS_Source source = i.second.GetHandle();
|
2016-11-18 22:30:22 -08:00
|
|
|
|
2016-12-24 21:05:08 -06:00
|
|
|
// Get the source's subtable (if none exists, we're done)
|
|
|
|
|
auto table = m_tables.lookup(source);
|
|
|
|
|
if (table) {
|
|
|
|
|
// Set table value
|
|
|
|
|
auto values = GetSourceStreamValues(source);
|
2017-09-02 00:17:43 -07:00
|
|
|
if (!values.empty()) table->GetEntry("streams").SetStringArray(values);
|
2016-12-24 21:05:08 -06:00
|
|
|
}
|
2016-11-18 22:30:22 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-05 02:51:55 -08:00
|
|
|
static std::string PixelFormatToString(int pixelFormat) {
|
|
|
|
|
switch (pixelFormat) {
|
|
|
|
|
case cs::VideoMode::PixelFormat::kMJPEG:
|
|
|
|
|
return "MJPEG";
|
|
|
|
|
case cs::VideoMode::PixelFormat::kYUYV:
|
|
|
|
|
return "YUYV";
|
|
|
|
|
case cs::VideoMode::PixelFormat::kRGB565:
|
|
|
|
|
return "RGB565";
|
|
|
|
|
case cs::VideoMode::PixelFormat::kBGR:
|
|
|
|
|
return "BGR";
|
|
|
|
|
case cs::VideoMode::PixelFormat::kGray:
|
|
|
|
|
return "Gray";
|
|
|
|
|
default:
|
|
|
|
|
return "Unknown";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static std::string VideoModeToString(const cs::VideoMode& mode) {
|
|
|
|
|
std::string rv;
|
|
|
|
|
llvm::raw_string_ostream oss{rv};
|
|
|
|
|
oss << mode.width << "x" << mode.height;
|
|
|
|
|
oss << " " << PixelFormatToString(mode.pixelFormat) << " ";
|
|
|
|
|
oss << mode.fps << " fps";
|
|
|
|
|
return oss.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static std::vector<std::string> GetSourceModeValues(int source) {
|
|
|
|
|
std::vector<std::string> rv;
|
|
|
|
|
CS_Status status = 0;
|
|
|
|
|
for (const auto& mode : cs::EnumerateSourceVideoModes(source, &status))
|
|
|
|
|
rv.emplace_back(VideoModeToString(mode));
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline llvm::StringRef Concatenate(llvm::StringRef lhs,
|
|
|
|
|
llvm::StringRef rhs,
|
|
|
|
|
llvm::SmallVectorImpl<char>& buf) {
|
|
|
|
|
buf.clear();
|
|
|
|
|
llvm::raw_svector_ostream oss{buf};
|
|
|
|
|
oss << lhs << rhs;
|
|
|
|
|
return oss.str();
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-02 00:17:43 -07:00
|
|
|
static void PutSourcePropertyValue(nt::NetworkTable* table,
|
|
|
|
|
const cs::VideoEvent& event, bool isNew) {
|
2017-01-05 02:51:55 -08:00
|
|
|
llvm::SmallString<64> name;
|
|
|
|
|
llvm::SmallString<64> infoName;
|
|
|
|
|
if (llvm::StringRef{event.name}.startswith("raw_")) {
|
|
|
|
|
name = "RawProperty/";
|
2017-01-19 12:30:07 -07:00
|
|
|
name += event.name;
|
2017-01-05 02:51:55 -08:00
|
|
|
infoName = "RawPropertyInfo/";
|
2017-01-19 12:30:07 -07:00
|
|
|
infoName += event.name;
|
2017-01-05 02:51:55 -08:00
|
|
|
} else {
|
|
|
|
|
name = "Property/";
|
|
|
|
|
name += event.name;
|
|
|
|
|
infoName = "PropertyInfo/";
|
|
|
|
|
infoName += event.name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
llvm::SmallString<64> buf;
|
|
|
|
|
CS_Status status = 0;
|
2017-09-02 00:17:43 -07:00
|
|
|
nt::NetworkTableEntry entry = table->GetEntry(name);
|
2017-01-05 02:51:55 -08:00
|
|
|
switch (event.propertyKind) {
|
|
|
|
|
case cs::VideoProperty::kBoolean:
|
|
|
|
|
if (isNew)
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetDefaultBoolean(event.value != 0);
|
2017-01-05 02:51:55 -08:00
|
|
|
else
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetBoolean(event.value != 0);
|
2017-01-05 02:51:55 -08:00
|
|
|
break;
|
|
|
|
|
case cs::VideoProperty::kInteger:
|
|
|
|
|
case cs::VideoProperty::kEnum:
|
|
|
|
|
if (isNew) {
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetDefaultDouble(event.value);
|
|
|
|
|
table->GetEntry(Concatenate(infoName, "/min", buf))
|
|
|
|
|
.SetDouble(cs::GetPropertyMin(event.propertyHandle, &status));
|
|
|
|
|
table->GetEntry(Concatenate(infoName, "/max", buf))
|
|
|
|
|
.SetDouble(cs::GetPropertyMax(event.propertyHandle, &status));
|
|
|
|
|
table->GetEntry(Concatenate(infoName, "/step", buf))
|
|
|
|
|
.SetDouble(cs::GetPropertyStep(event.propertyHandle, &status));
|
|
|
|
|
table->GetEntry(Concatenate(infoName, "/default", buf))
|
|
|
|
|
.SetDouble(cs::GetPropertyDefault(event.propertyHandle, &status));
|
2017-01-05 02:51:55 -08:00
|
|
|
} else {
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetDouble(event.value);
|
2017-01-05 02:51:55 -08:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case cs::VideoProperty::kString:
|
|
|
|
|
if (isNew)
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetDefaultString(event.valueStr);
|
2017-01-05 02:51:55 -08:00
|
|
|
else
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetString(event.valueStr);
|
2017-01-05 02:51:55 -08:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 22:30:22 -08:00
|
|
|
CameraServer::CameraServer()
|
2017-09-02 00:17:43 -07:00
|
|
|
: m_publishTable{nt::NetworkTableInstance::GetDefault().GetTable(
|
|
|
|
|
kPublishName)},
|
2016-11-18 22:30:22 -08:00
|
|
|
m_nextPort(kBasePort) {
|
|
|
|
|
// We publish sources to NetworkTables using the following structure:
|
|
|
|
|
// "/CameraPublisher/{Source.Name}/" - root
|
|
|
|
|
// - "source" (string): Descriptive, prefixed with type (e.g. "usb:0")
|
|
|
|
|
// - "streams" (string array): URLs that can be used to stream data
|
2017-01-05 02:51:55 -08:00
|
|
|
// - "description" (string): Description of the source
|
|
|
|
|
// - "connected" (boolean): Whether source is connected
|
|
|
|
|
// - "mode" (string): Current video mode
|
|
|
|
|
// - "modes" (string array): Available video modes
|
|
|
|
|
// - "Property/{Property}" - Property values
|
|
|
|
|
// - "PropertyInfo/{Property}" - Property supporting information
|
2016-11-18 22:30:22 -08:00
|
|
|
|
|
|
|
|
// Listener for video events
|
|
|
|
|
m_videoListener = cs::VideoListener{
|
|
|
|
|
[=](const cs::VideoEvent& event) {
|
|
|
|
|
CS_Status status = 0;
|
|
|
|
|
switch (event.kind) {
|
|
|
|
|
case cs::VideoEvent::kSourceCreated: {
|
|
|
|
|
// Create subtable for the camera
|
|
|
|
|
auto table = m_publishTable->GetSubTable(event.name);
|
|
|
|
|
{
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
m_tables.insert(std::make_pair(event.sourceHandle, table));
|
|
|
|
|
}
|
|
|
|
|
llvm::SmallString<64> buf;
|
2017-09-02 00:17:43 -07:00
|
|
|
table->GetEntry("source").SetString(
|
|
|
|
|
MakeSourceValue(event.sourceHandle, buf));
|
2016-11-18 22:30:22 -08:00
|
|
|
llvm::SmallString<64> descBuf;
|
2017-09-02 00:17:43 -07:00
|
|
|
table->GetEntry("description")
|
|
|
|
|
.SetString(cs::GetSourceDescription(event.sourceHandle, descBuf,
|
|
|
|
|
&status));
|
|
|
|
|
table->GetEntry("connected")
|
|
|
|
|
.SetBoolean(cs::IsSourceConnected(event.sourceHandle, &status));
|
|
|
|
|
table->GetEntry("streams").SetStringArray(
|
|
|
|
|
GetSourceStreamValues(event.sourceHandle));
|
2017-01-05 02:51:55 -08:00
|
|
|
auto mode = cs::GetSourceVideoMode(event.sourceHandle, &status);
|
2017-09-02 00:17:43 -07:00
|
|
|
table->GetEntry("mode").SetDefaultString(VideoModeToString(mode));
|
|
|
|
|
table->GetEntry("modes").SetStringArray(
|
|
|
|
|
GetSourceModeValues(event.sourceHandle));
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourceDestroyed: {
|
|
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
|
|
|
|
if (table) {
|
2017-09-02 00:17:43 -07:00
|
|
|
table->GetEntry("source").SetString("");
|
|
|
|
|
table->GetEntry("streams").SetStringArray(
|
|
|
|
|
std::vector<std::string>{});
|
|
|
|
|
table->GetEntry("modes").SetStringArray(
|
|
|
|
|
std::vector<std::string>{});
|
2016-11-18 22:30:22 -08:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourceConnected: {
|
|
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
|
|
|
|
if (table) {
|
|
|
|
|
// update the description too (as it may have changed)
|
|
|
|
|
llvm::SmallString<64> descBuf;
|
2017-09-02 00:17:43 -07:00
|
|
|
table->GetEntry("description")
|
|
|
|
|
.SetString(cs::GetSourceDescription(event.sourceHandle,
|
|
|
|
|
descBuf, &status));
|
|
|
|
|
table->GetEntry("connected").SetBoolean(true);
|
2016-11-18 22:30:22 -08:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourceDisconnected: {
|
|
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
2017-09-02 00:17:43 -07:00
|
|
|
if (table) table->GetEntry("connected").SetBoolean(false);
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourceVideoModesUpdated: {
|
2017-01-05 02:51:55 -08:00
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
|
|
|
|
if (table)
|
2017-09-02 00:17:43 -07:00
|
|
|
table->GetEntry("modes").SetStringArray(
|
|
|
|
|
GetSourceModeValues(event.sourceHandle));
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourceVideoModeChanged: {
|
2017-01-05 02:51:55 -08:00
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
2017-09-02 00:17:43 -07:00
|
|
|
if (table)
|
|
|
|
|
table->GetEntry("mode").SetString(VideoModeToString(event.mode));
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourcePropertyCreated: {
|
2017-01-05 02:51:55 -08:00
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
|
|
|
|
if (table) PutSourcePropertyValue(table.get(), event, true);
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourcePropertyValueUpdated: {
|
2017-01-05 02:51:55 -08:00
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
|
|
|
|
if (table) PutSourcePropertyValue(table.get(), event, false);
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case cs::VideoEvent::kSourcePropertyChoicesUpdated: {
|
2017-01-05 02:51:55 -08:00
|
|
|
auto table = GetSourceTable(event.sourceHandle);
|
|
|
|
|
if (table) {
|
|
|
|
|
llvm::SmallString<64> name{"PropertyInfo/"};
|
|
|
|
|
name += event.name;
|
|
|
|
|
name += "/choices";
|
|
|
|
|
auto choices =
|
|
|
|
|
cs::GetEnumPropertyChoices(event.propertyHandle, &status);
|
2017-09-02 00:17:43 -07:00
|
|
|
table->GetEntry(name).SetStringArray(choices);
|
2017-01-05 02:51:55 -08:00
|
|
|
}
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
2017-01-05 02:51:55 -08:00
|
|
|
case cs::VideoEvent::kSinkSourceChanged:
|
|
|
|
|
case cs::VideoEvent::kSinkCreated:
|
2017-05-06 21:31:45 -07:00
|
|
|
case cs::VideoEvent::kSinkDestroyed:
|
2016-11-18 22:30:22 -08:00
|
|
|
case cs::VideoEvent::kNetworkInterfacesChanged: {
|
|
|
|
|
m_addresses = cs::GetNetworkInterfaces();
|
2017-05-06 21:31:45 -07:00
|
|
|
UpdateStreamValues();
|
2016-11-18 22:30:22 -08:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-01-05 02:51:55 -08:00
|
|
|
0x4fff, true};
|
|
|
|
|
|
|
|
|
|
// Listener for NetworkTable events
|
2017-01-19 12:30:07 -07:00
|
|
|
// We don't currently support changing settings via NT due to
|
|
|
|
|
// synchronization issues, so just update to current setting if someone
|
|
|
|
|
// else tries to change it.
|
2017-01-05 02:51:55 -08:00
|
|
|
llvm::SmallString<64> buf;
|
2017-09-02 00:17:43 -07:00
|
|
|
m_tableListener = nt::NetworkTableInstance::GetDefault().AddEntryListener(
|
2017-01-05 02:51:55 -08:00
|
|
|
Concatenate(kPublishName, "/", buf),
|
2017-09-02 00:17:43 -07:00
|
|
|
[=](const nt::EntryNotification& event) {
|
2017-01-05 02:51:55 -08:00
|
|
|
llvm::StringRef relativeKey =
|
2017-09-02 00:17:43 -07:00
|
|
|
event.name.substr(llvm::StringRef(kPublishName).size() + 1);
|
2017-01-05 02:51:55 -08:00
|
|
|
|
|
|
|
|
// get source (sourceName/...)
|
|
|
|
|
auto subKeyIndex = relativeKey.find('/');
|
|
|
|
|
if (subKeyIndex == llvm::StringRef::npos) return;
|
|
|
|
|
llvm::StringRef sourceName = relativeKey.slice(0, subKeyIndex);
|
|
|
|
|
auto sourceIt = m_sources.find(sourceName);
|
|
|
|
|
if (sourceIt == m_sources.end()) return;
|
|
|
|
|
|
|
|
|
|
// get subkey
|
|
|
|
|
relativeKey = relativeKey.substr(subKeyIndex + 1);
|
|
|
|
|
|
|
|
|
|
// handle standard names
|
|
|
|
|
llvm::StringRef propName;
|
2017-09-02 00:17:43 -07:00
|
|
|
nt::NetworkTableEntry entry{event.entry};
|
2017-01-05 02:51:55 -08:00
|
|
|
if (relativeKey == "mode") {
|
2017-01-19 12:30:07 -07:00
|
|
|
// reset to current mode
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetString(VideoModeToString(sourceIt->second.GetVideoMode()));
|
2017-01-05 02:51:55 -08:00
|
|
|
return;
|
|
|
|
|
} else if (relativeKey.startswith("Property/")) {
|
|
|
|
|
propName = relativeKey.substr(9);
|
|
|
|
|
} else if (relativeKey.startswith("RawProperty/")) {
|
2017-01-19 12:30:07 -07:00
|
|
|
propName = relativeKey.substr(12);
|
2017-01-05 02:51:55 -08:00
|
|
|
} else {
|
|
|
|
|
return; // ignore
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// everything else is a property
|
|
|
|
|
auto property = sourceIt->second.GetProperty(propName);
|
|
|
|
|
switch (property.GetKind()) {
|
|
|
|
|
case cs::VideoProperty::kNone:
|
|
|
|
|
return;
|
|
|
|
|
case cs::VideoProperty::kBoolean:
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetBoolean(property.Get() != 0);
|
2017-01-05 02:51:55 -08:00
|
|
|
return;
|
|
|
|
|
case cs::VideoProperty::kInteger:
|
|
|
|
|
case cs::VideoProperty::kEnum:
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetDouble(property.Get());
|
2017-01-05 02:51:55 -08:00
|
|
|
return;
|
|
|
|
|
case cs::VideoProperty::kString:
|
2017-09-02 00:17:43 -07:00
|
|
|
entry.SetString(property.GetString());
|
2017-01-05 02:51:55 -08:00
|
|
|
return;
|
|
|
|
|
default:
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
NT_NOTIFY_IMMEDIATE | NT_NOTIFY_UPDATE);
|
2016-11-18 22:30:22 -08:00
|
|
|
}
|
2017-08-18 21:35:53 -07:00
|
|
|
#ifdef __linux__
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::UsbCamera CameraServer::StartAutomaticCapture() {
|
2017-10-27 00:45:54 -07:00
|
|
|
cs::UsbCamera camera = StartAutomaticCapture(m_defaultUsbDevice++);
|
2017-10-27 11:35:57 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_PCVideoServer,
|
|
|
|
|
camera.GetHandle());
|
2017-10-27 00:45:54 -07:00
|
|
|
return camera;
|
2016-11-18 22:30:22 -08:00
|
|
|
}
|
|
|
|
|
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::UsbCamera CameraServer::StartAutomaticCapture(int dev) {
|
2016-11-18 22:30:22 -08:00
|
|
|
llvm::SmallString<64> buf;
|
|
|
|
|
llvm::raw_svector_ostream name{buf};
|
|
|
|
|
name << "USB Camera " << dev;
|
|
|
|
|
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::UsbCamera camera{name.str(), dev};
|
2016-11-18 22:30:22 -08:00
|
|
|
StartAutomaticCapture(camera);
|
2017-10-27 11:35:57 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_PCVideoServer,
|
|
|
|
|
camera.GetHandle());
|
2016-11-18 22:30:22 -08:00
|
|
|
return camera;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::UsbCamera CameraServer::StartAutomaticCapture(llvm::StringRef name,
|
2016-11-18 22:30:22 -08:00
|
|
|
int dev) {
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::UsbCamera camera{name, dev};
|
2016-11-18 22:30:22 -08:00
|
|
|
StartAutomaticCapture(camera);
|
2017-10-27 11:35:57 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_PCVideoServer,
|
|
|
|
|
camera.GetHandle());
|
2016-11-18 22:30:22 -08:00
|
|
|
return camera;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::UsbCamera CameraServer::StartAutomaticCapture(llvm::StringRef name,
|
2016-11-18 22:30:22 -08:00
|
|
|
llvm::StringRef path) {
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::UsbCamera camera{name, path};
|
2016-11-18 22:30:22 -08:00
|
|
|
StartAutomaticCapture(camera);
|
2017-10-27 11:35:57 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_PCVideoServer,
|
|
|
|
|
camera.GetHandle());
|
2016-11-18 22:30:22 -08:00
|
|
|
return camera;
|
|
|
|
|
}
|
2017-08-18 21:35:53 -07:00
|
|
|
#endif
|
2016-11-18 22:30:22 -08:00
|
|
|
|
2016-12-24 21:05:08 -06:00
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(llvm::StringRef host) {
|
|
|
|
|
return AddAxisCamera("Axis Camera", host);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(const char* host) {
|
|
|
|
|
return AddAxisCamera("Axis Camera", host);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(const std::string& host) {
|
|
|
|
|
return AddAxisCamera("Axis Camera", host);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(llvm::ArrayRef<std::string> hosts) {
|
|
|
|
|
return AddAxisCamera("Axis Camera", hosts);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(llvm::StringRef name,
|
|
|
|
|
llvm::StringRef host) {
|
|
|
|
|
cs::AxisCamera camera{name, host};
|
2017-01-05 02:51:55 -08:00
|
|
|
StartAutomaticCapture(camera);
|
2017-10-27 00:45:54 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_AxisCamera, camera.GetHandle());
|
2016-12-24 21:05:08 -06:00
|
|
|
return camera;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(llvm::StringRef name,
|
|
|
|
|
const char* host) {
|
|
|
|
|
cs::AxisCamera camera{name, host};
|
2017-01-05 02:51:55 -08:00
|
|
|
StartAutomaticCapture(camera);
|
2017-10-27 00:45:54 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_AxisCamera, camera.GetHandle());
|
2016-12-24 21:05:08 -06:00
|
|
|
return camera;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(llvm::StringRef name,
|
|
|
|
|
const std::string& host) {
|
|
|
|
|
cs::AxisCamera camera{name, host};
|
2017-01-05 02:51:55 -08:00
|
|
|
StartAutomaticCapture(camera);
|
2017-10-27 00:45:54 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_AxisCamera, camera.GetHandle());
|
2016-12-24 21:05:08 -06:00
|
|
|
return camera;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::AxisCamera CameraServer::AddAxisCamera(llvm::StringRef name,
|
|
|
|
|
llvm::ArrayRef<std::string> hosts) {
|
|
|
|
|
cs::AxisCamera camera{name, hosts};
|
2017-01-05 02:51:55 -08:00
|
|
|
StartAutomaticCapture(camera);
|
2017-10-27 00:45:54 -07:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_AxisCamera, camera.GetHandle());
|
2016-12-24 21:05:08 -06:00
|
|
|
return camera;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 22:30:22 -08:00
|
|
|
void CameraServer::StartAutomaticCapture(const cs::VideoSource& camera) {
|
|
|
|
|
llvm::SmallString<64> name{"serve_"};
|
|
|
|
|
name += camera.GetName();
|
|
|
|
|
|
|
|
|
|
AddCamera(camera);
|
|
|
|
|
auto server = AddServer(name);
|
|
|
|
|
server.SetSource(camera);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::CvSink CameraServer::GetVideo() {
|
|
|
|
|
cs::VideoSource source;
|
|
|
|
|
{
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
if (m_primarySourceName.empty()) {
|
|
|
|
|
wpi_setWPIErrorWithContext(CameraServerError, "no camera available");
|
|
|
|
|
return cs::CvSink{};
|
|
|
|
|
}
|
|
|
|
|
auto it = m_sources.find(m_primarySourceName);
|
|
|
|
|
if (it == m_sources.end()) {
|
|
|
|
|
wpi_setWPIErrorWithContext(CameraServerError, "no camera available");
|
|
|
|
|
return cs::CvSink{};
|
|
|
|
|
}
|
|
|
|
|
source = it->second;
|
|
|
|
|
}
|
|
|
|
|
return GetVideo(std::move(source));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::CvSink CameraServer::GetVideo(const cs::VideoSource& camera) {
|
|
|
|
|
llvm::SmallString<64> name{"opencv_"};
|
|
|
|
|
name += camera.GetName();
|
|
|
|
|
|
|
|
|
|
{
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
auto it = m_sinks.find(name);
|
|
|
|
|
if (it != m_sinks.end()) {
|
|
|
|
|
auto kind = it->second.GetKind();
|
|
|
|
|
if (kind != cs::VideoSink::kCv) {
|
|
|
|
|
llvm::SmallString<64> buf;
|
|
|
|
|
llvm::raw_svector_ostream err{buf};
|
|
|
|
|
err << "expected OpenCV sink, but got " << kind;
|
|
|
|
|
wpi_setWPIErrorWithContext(CameraServerError, err.str());
|
|
|
|
|
return cs::CvSink{};
|
|
|
|
|
}
|
|
|
|
|
return *static_cast<cs::CvSink*>(&it->second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::CvSink newsink{name};
|
|
|
|
|
newsink.SetSource(camera);
|
|
|
|
|
AddServer(newsink);
|
|
|
|
|
return newsink;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::CvSink CameraServer::GetVideo(llvm::StringRef name) {
|
|
|
|
|
cs::VideoSource source;
|
|
|
|
|
{
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-12-04 00:26:08 -08:00
|
|
|
auto it = m_sources.find(name);
|
|
|
|
|
if (it == m_sources.end()) {
|
|
|
|
|
llvm::SmallString<64> buf;
|
|
|
|
|
llvm::raw_svector_ostream err{buf};
|
|
|
|
|
err << "could not find camera " << name;
|
|
|
|
|
wpi_setWPIErrorWithContext(CameraServerError, err.str());
|
|
|
|
|
return cs::CvSink{};
|
|
|
|
|
}
|
|
|
|
|
source = it->second;
|
|
|
|
|
}
|
|
|
|
|
return GetVideo(source);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 22:30:22 -08:00
|
|
|
cs::CvSource CameraServer::PutVideo(llvm::StringRef name, int width,
|
|
|
|
|
int height) {
|
|
|
|
|
cs::CvSource source{name, cs::VideoMode::kMJPEG, width, height, 30};
|
|
|
|
|
StartAutomaticCapture(source);
|
|
|
|
|
return source;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::MjpegServer CameraServer::AddServer(llvm::StringRef name) {
|
2016-11-18 22:30:22 -08:00
|
|
|
int port;
|
|
|
|
|
{
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
port = m_nextPort++;
|
|
|
|
|
}
|
|
|
|
|
return AddServer(name, port);
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-04 00:26:08 -08:00
|
|
|
cs::MjpegServer CameraServer::AddServer(llvm::StringRef name, int port) {
|
|
|
|
|
cs::MjpegServer server{name, port};
|
2016-11-18 22:30:22 -08:00
|
|
|
AddServer(server);
|
|
|
|
|
return server;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CameraServer::AddServer(const cs::VideoSink& server) {
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
m_sinks.emplace_second(server.GetName(), server);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CameraServer::RemoveServer(llvm::StringRef name) {
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
m_sinks.erase(name);
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-20 01:07:37 -07:00
|
|
|
cs::VideoSink CameraServer::GetServer() {
|
|
|
|
|
llvm::SmallString<64> name;
|
|
|
|
|
{
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2017-01-20 01:07:37 -07:00
|
|
|
if (m_primarySourceName.empty()) {
|
|
|
|
|
wpi_setWPIErrorWithContext(CameraServerError, "no camera available");
|
|
|
|
|
return cs::VideoSink{};
|
|
|
|
|
}
|
|
|
|
|
name = "serve_";
|
|
|
|
|
name += m_primarySourceName;
|
|
|
|
|
}
|
|
|
|
|
return GetServer(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cs::VideoSink CameraServer::GetServer(llvm::StringRef name) {
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2017-01-20 01:07:37 -07:00
|
|
|
auto it = m_sinks.find(name);
|
|
|
|
|
if (it == m_sinks.end()) {
|
|
|
|
|
llvm::SmallString<64> buf;
|
|
|
|
|
llvm::raw_svector_ostream err{buf};
|
|
|
|
|
err << "could not find server " << name;
|
|
|
|
|
wpi_setWPIErrorWithContext(CameraServerError, err.str());
|
|
|
|
|
return cs::VideoSink{};
|
|
|
|
|
}
|
|
|
|
|
return it->second;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 22:30:22 -08:00
|
|
|
void CameraServer::AddCamera(const cs::VideoSource& camera) {
|
|
|
|
|
std::string name = camera.GetName();
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
if (m_primarySourceName.empty()) m_primarySourceName = name;
|
|
|
|
|
m_sources.emplace_second(name, camera);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CameraServer::RemoveCamera(llvm::StringRef name) {
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
m_sources.erase(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CameraServer::SetSize(int size) {
|
2017-11-13 09:51:48 -08:00
|
|
|
std::lock_guard<wpi::mutex> lock(m_mutex);
|
2016-11-18 22:30:22 -08:00
|
|
|
if (m_primarySourceName.empty()) return;
|
|
|
|
|
auto it = m_sources.find(m_primarySourceName);
|
|
|
|
|
if (it == m_sources.end()) return;
|
|
|
|
|
if (size == kSize160x120)
|
|
|
|
|
it->second.SetResolution(160, 120);
|
|
|
|
|
else if (size == kSize320x240)
|
|
|
|
|
it->second.SetResolution(320, 240);
|
|
|
|
|
else if (size == kSize640x480)
|
|
|
|
|
it->second.SetResolution(640, 480);
|
2017-08-19 22:14:34 -07:00
|
|
|
}
|