snapcast/server/json/jsonrpc.h
2015-12-03 21:54:21 +01:00

198 lines
4.4 KiB
C++

/***
This file is part of snapcast
Copyright (C) 2015 Johannes Pohl
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
#ifndef JSON_RPC_H
#define JSON_RPC_H
#include <string>
#include <vector>
#include <boost/lexical_cast.hpp>
#include "json.hpp"
#include "common/snapException.h"
using Json = nlohmann::json;
class JsonRequestException : public SnapException
{
int errorCode_, id_;
public:
JsonRequestException(const char* text, int errorCode = 0, int requestId = -1) : SnapException(text), errorCode_(errorCode), id_(requestId)
{
}
JsonRequestException(const std::string& text, int errorCode = 0, int requestId = -1) : SnapException(text), errorCode_(errorCode), id_(requestId)
{
}
// JsonRequestException(const JsonRequest& request, const std::string& text, int errorCode = 0) : SnapException(text), errorCode_(errorCode), id_(request.id)
// {
// }
JsonRequestException(const JsonRequestException& e) : SnapException(e.what()), errorCode_(e.errorCode()), id_(e.id_)
{
}
virtual int errorCode() const noexcept
{
return errorCode_;
}
Json getResponse() const noexcept
{
int errorCode = errorCode_;
if (errorCode == 0)
errorCode = -32603;
Json response = {
{"jsonrpc", "2.0"},
{"error", {
{"code", errorCode},
{"message", what()}
}},
};
if (id_ == -1)
response["id"] = nullptr;
else
response["id"] = id_;
return response;
}
};
// -32601 Method not found The method does not exist / is not available.
// -32602 Invalid params Invalid method parameter(s).
// -32603 Internal error Internal JSON-RPC error.
class JsonMethodNotFoundException : public JsonRequestException
{
public:
JsonMethodNotFoundException(int requestId = -1) : JsonRequestException("method not found", -32601, requestId)
{
}
JsonMethodNotFoundException(const std::string& message, int requestId = -1) : JsonRequestException(message, -32601, requestId)
{
}
};
class JsonInvalidParamsException : public JsonRequestException
{
public:
JsonInvalidParamsException(int requestId = -1) : JsonRequestException("invalid params", -32602, requestId)
{
}
JsonInvalidParamsException(const std::string& message, int requestId = -1) : JsonRequestException(message, -32602, requestId)
{
}
};
class JsonInternalErrorException : public JsonRequestException
{
public:
JsonInternalErrorException(int requestId = -1) : JsonRequestException("internal error", -32603, requestId)
{
}
JsonInternalErrorException(const std::string& message, int requestId = -1) : JsonRequestException(message, -32603, requestId)
{
}
};
/// JSON-RPC 2.0 request
/**
* Simple jsonrpc 2.0 parser with getters
* Currently no named parameters are supported, but only array parameters
*/
class JsonRequest
{
public:
JsonRequest();
void parse(const std::string& json);
int id;
std::string method;
std::map<std::string, Json> params;
Json getResponse(const Json& result);
Json getError(int code, const std::string& message);
Json getParam(const std::string& key);
bool hasParam(const std::string& key);
template<typename T>
T getParam(const std::string& key, const T& lowerRange, const T& upperRange)
{
T value = getParam(key).get<T>();
if (value < lowerRange)
throw JsonInvalidParamsException(key + " out of range", id);
else if (value > upperRange)
throw JsonInvalidParamsException(key + " out of range", id);
return value;
}
// bool isParam(size_t idx, const std::string& param);
/* template<typename T>
T getParam(size_t idx)
{
if (idx >= params.size())
throw JsonInvalidParamsException(*this);
try
{
return boost::lexical_cast<T>(params[idx]);
}
catch(...)
{
throw JsonInvalidParamsException(*this);
}
}
bool isParam(size_t idx, const std::string& param);
*/
protected:
Json json_;
};
class JsonNotification
{
public:
static Json getJson(const std::string& method, Json data);
};
#endif