Open Lighting Architecture
Latest Git
|
Classes | |
struct | OladHTTPServerOptions |
Public Member Functions | |
OladHTTPServer (ExportMap *export_map, const OladHTTPServerOptions &options, ola::io::ConnectedDescriptor *client_socket, class OlaServer *ola_server, const ola::network::Interface &iface) | |
Create a new OLA HTTP server. More... | |
bool | Init () |
Setup the OLA HTTP server. More... | |
void | SetPidStore (const ola::rdm::RootPidStore *pid_store) |
Can be called while the HTTP server is running. | |
int | JsonServerStats (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Print the server stats JSON. More... | |
int | JsonUniversePluginList (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Print the list of universes / plugins as a json string. More... | |
int | JsonPluginInfo (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Print the plugin info as a JSON string. More... | |
int | SetPluginState (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Set plugin state. More... | |
int | JsonUniverseInfo (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Return information about a universe. More... | |
int | JsonAvailablePorts (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Return a list of unbound ports. More... | |
int | CreateNewUniverse (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Create a new universe by binding one or more ports. More... | |
int | ModifyUniverse (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Modify an existing universe. More... | |
int | GetDmx (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Handle the get DMX command. More... | |
int | HandleSetDmx (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Handle the set DMX command. More... | |
int | DisplayQuit (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Cause the server to shutdown. More... | |
int | ReloadPlugins (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Reload all plugins. More... | |
int | ReloadPidStore (const ola::http::HTTPRequest *request, ola::http::HTTPResponse *response) |
Reload the PID Store. More... | |
void | HandlePluginList (ola::http::HTTPResponse *response, const client::Result &result, const std::vector< client::OlaPlugin > &plugins) |
Handle the plugin list callback. More... | |
void | HandleUniverseList (ola::http::HTTPResponse *response, ola::web::JsonObject *json, const client::Result &result, const std::vector< client::OlaUniverse > &universes) |
Handle the universe list callback. More... | |
void | HandlePartialPluginInfo (ola::http::HTTPResponse *response, int plugin_id, const client::Result &result, const std::string &description) |
Handle the plugin description response. More... | |
void | HandlePluginInfo (ola::http::HTTPResponse *response, std::string description, const client::Result &result, const ola::client::PluginState &state) |
Handle the plugin description response. More... | |
void | HandleUniverseInfo (ola::http::HTTPResponse *response, const client::Result &result, const client::OlaUniverse &universe) |
Handle the universe info. More... | |
void | HandlePortsForUniverse (ola::http::HTTPResponse *response, ola::web::JsonObject *json, unsigned int universe_id, const client::Result &result, const std::vector< client::OlaDevice > &devices) |
void | HandleCandidatePorts (ola::http::HTTPResponse *response, const client::Result &result, const std::vector< client::OlaDevice > &devices) |
Handle the list of candidate ports. More... | |
void | CreateUniverseComplete (ola::http::HTTPResponse *response, unsigned int universe_id, bool included_name, class ActionQueue *action_queue) |
void | SendCreateUniverseResponse (ola::http::HTTPResponse *response, unsigned int universe_id, bool included_name, class ActionQueue *action_queue) |
void | ModifyUniverseComplete (ola::http::HTTPResponse *response, class ActionQueue *action_queue) |
void | SendModifyUniverseResponse (ola::http::HTTPResponse *response, class ActionQueue *action_queue) |
Public Member Functions inherited from ola::http::OlaHTTPServer | |
OlaHTTPServer (const HTTPServer::HTTPServerOptions &options, ola::ExportMap *export_map) | |
bool | Start () |
void | Stop () |
Static Public Member Functions | |
static int | ServeHelpRedirect (ola::http::HTTPResponse *response) |
static int | ServeUsage (ola::http::HTTPResponse *response, const std::string &details) |
Serve usage information. More... | |
Static Public Attributes | |
static const char | HELP_PARAMETER [] = "help" |
Additional Inherited Members | |
Protected Member Functions inherited from ola::http::OlaHTTPServer | |
void | RegisterFile (const std::string &file, const std::string &content_type) |
Protected Attributes inherited from ola::http::OlaHTTPServer | |
Clock | m_clock |
ola::ExportMap * | m_export_map |
HTTPServer | m_server |
TimeStamp | m_start_time |
ola::OladHTTPServer::OladHTTPServer | ( | ExportMap * | export_map, |
const OladHTTPServerOptions & | options, | ||
ola::io::ConnectedDescriptor * | client_socket, | ||
class OlaServer * | ola_server, | ||
const ola::network::Interface & | iface | ||
) |
Create a new OLA HTTP server.
export_map | the ExportMap to display when /debug is called |
options | the OladHTTPServerOptions for the OLA HTTP server |
client_socket | A ConnectedDescriptor which is used to communicate with the server. |
ola_server | the OlaServer to use |
iface | the network interface to bind to |
int ola::OladHTTPServer::CreateNewUniverse | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Create a new universe by binding one or more ports.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::DisplayQuit | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Cause the server to shutdown.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::GetDmx | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Handle the get DMX command.
request | the HTTPRequest |
response | the HTTPResponse |
void ola::OladHTTPServer::HandleCandidatePorts | ( | ola::http::HTTPResponse * | response, |
const client::Result & | result, | ||
const std::vector< client::OlaDevice > & | devices | ||
) |
Handle the list of candidate ports.
response | the HTTPResponse that is associated with the request. |
result | the result of the API call |
devices | the possible devices & ports |
void ola::OladHTTPServer::HandlePartialPluginInfo | ( | ola::http::HTTPResponse * | response, |
int | plugin_id, | ||
const client::Result & | result, | ||
const std::string & | description | ||
) |
Handle the plugin description response.
response | the HTTPResponse that is associated with the request. |
plugin_id | the plugin id. |
result | the result of the API call. |
description | the plugin description. |
void ola::OladHTTPServer::HandlePluginInfo | ( | ola::http::HTTPResponse * | response, |
std::string | description, | ||
const client::Result & | result, | ||
const ola::client::PluginState & | state | ||
) |
Handle the plugin description response.
response | the HTTPResponse that is associated with the request. |
description | the plugin description |
result | the result of the API call. |
state | the state of the plugin. |
void ola::OladHTTPServer::HandlePluginList | ( | ola::http::HTTPResponse * | response, |
const client::Result & | result, | ||
const std::vector< client::OlaPlugin > & | plugins | ||
) |
Handle the plugin list callback.
response | the HTTPResponse that is associated with the request. |
result | the result of the API call |
plugins | a list of plugins |
int ola::OladHTTPServer::HandleSetDmx | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Handle the set DMX command.
request | the HTTPRequest |
response | the HTTPResponse |
void ola::OladHTTPServer::HandleUniverseInfo | ( | ola::http::HTTPResponse * | response, |
const client::Result & | result, | ||
const client::OlaUniverse & | universe | ||
) |
Handle the universe info.
response | the HTTPResponse that is associated with the request. |
result | the result of the API call |
universe | the OlaUniverse object |
void ola::OladHTTPServer::HandleUniverseList | ( | ola::http::HTTPResponse * | response, |
ola::web::JsonObject * | json, | ||
const client::Result & | result, | ||
const std::vector< client::OlaUniverse > & | universes | ||
) |
Handle the universe list callback.
response | the HTTPResponse that is associated with the request. |
json | the JsonObject to add the data to |
result | the result of the API call |
universes | the vector of OlaUniverse |
|
virtual |
Setup the OLA HTTP server.
Reimplemented from ola::http::OlaHTTPServer.
int ola::OladHTTPServer::JsonAvailablePorts | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Return a list of unbound ports.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::JsonPluginInfo | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Print the plugin info as a JSON string.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::JsonServerStats | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Print the server stats JSON.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::JsonUniverseInfo | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Return information about a universe.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::JsonUniversePluginList | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Print the list of universes / plugins as a json string.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::ModifyUniverse | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Modify an existing universe.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::ReloadPidStore | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Reload the PID Store.
request | the HTTPRequest |
response | the HTTPResponse |
int ola::OladHTTPServer::ReloadPlugins | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Reload all plugins.
request | the HTTPRequest |
response | the HTTPResponse |
|
inlinestatic |
Serve a help redirect
response | the response to use |
|
static |
Serve usage information.
response | the response to use. |
details | the usage information |
int ola::OladHTTPServer::SetPluginState | ( | const ola::http::HTTPRequest * | request, |
ola::http::HTTPResponse * | response | ||
) |
Set plugin state.
request | the HTTPRequest |
response | the HTTPResponse |