server-mode: Add debug support
Enable the server to support development with some helper tools: You can now request debug information with statistics on how long execution of a command took, how long it took to serialize the JSON files, and how big the serialized JSON string is. Also allow to dump results into a file.
This commit is contained in:
parent
537efe0561
commit
4fb2b41a58
|
@ -68,6 +68,40 @@ Messages sent to and from the process are wrapped in magic strings::
|
||||||
The server is now ready to accept further requests via stdin.
|
The server is now ready to accept further requests via stdin.
|
||||||
|
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
=========
|
||||||
|
|
||||||
|
CMake server mode can be asked to provide statistics on execution times, etc.
|
||||||
|
or to dump a copy of the response into a file. This is done passing a "debug"
|
||||||
|
JSON object as a child of the request.
|
||||||
|
|
||||||
|
The debug object supports the "showStats" key, which takes a boolean and makes
|
||||||
|
the server mode return a "zzzDebug" object with stats as part of its response.
|
||||||
|
"dumpToFile" takes a string value and will cause the cmake server to copy
|
||||||
|
the response into the given filename.
|
||||||
|
|
||||||
|
This is a response from the cmake server with "showStats" set to true::
|
||||||
|
|
||||||
|
[== CMake Server ==[
|
||||||
|
{
|
||||||
|
"cookie":"",
|
||||||
|
"errorMessage":"Waiting for type \"handshake\".",
|
||||||
|
"inReplyTo":"unknown",
|
||||||
|
"type":"error",
|
||||||
|
"zzzDebug": {
|
||||||
|
"dumpFile":"/tmp/error.txt",
|
||||||
|
"jsonSerialization":0.011016,
|
||||||
|
"size":111,
|
||||||
|
"totalTime":0.025995
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]== CMake Server ==]
|
||||||
|
|
||||||
|
The server has made a copy of this response into the file /tmp/error.txt and
|
||||||
|
took 0.011 seconds to turn the JSON response into a string, and it took 0.025
|
||||||
|
seconds to process the request in total. The reply has a size of 111 bytes.
|
||||||
|
|
||||||
|
|
||||||
Protocol API
|
Protocol API
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,10 @@
|
||||||
#include "cm_jsoncpp_value.h"
|
#include "cm_jsoncpp_value.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <fstream>
|
||||||
|
#include <iostream>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
static const std::string kTYPE_KEY = "type";
|
static const std::string kTYPE_KEY = "type";
|
||||||
static const std::string kCOOKIE_KEY = "cookie";
|
static const std::string kCOOKIE_KEY = "cookie";
|
||||||
static const std::string kREPLY_TO_KEY = "inReplyTo";
|
static const std::string kREPLY_TO_KEY = "inReplyTo";
|
||||||
|
@ -87,6 +91,20 @@ void read_stdin(uv_stream_t* stream, ssize_t nread, const uv_buf_t* buf)
|
||||||
free(buf->base);
|
free(buf->base);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class cmServer::DebugInfo
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
DebugInfo()
|
||||||
|
: StartTime(uv_hrtime())
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
bool PrintStatistics = false;
|
||||||
|
|
||||||
|
std::string OutputFile;
|
||||||
|
uint64_t StartTime;
|
||||||
|
};
|
||||||
|
|
||||||
cmServer::cmServer(bool supportExperimental)
|
cmServer::cmServer(bool supportExperimental)
|
||||||
: SupportExperimental(supportExperimental)
|
: SupportExperimental(supportExperimental)
|
||||||
{
|
{
|
||||||
|
@ -126,13 +144,21 @@ void cmServer::PopOne()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::unique_ptr<DebugInfo> debug;
|
||||||
|
Json::Value debugValue = value["debug"];
|
||||||
|
if (!debugValue.isNull()) {
|
||||||
|
debug = std::make_unique<DebugInfo>();
|
||||||
|
debug->OutputFile = debugValue["dumpToFile"].asString();
|
||||||
|
debug->PrintStatistics = debugValue["showStats"].asBool();
|
||||||
|
}
|
||||||
|
|
||||||
const cmServerRequest request(this, value[kTYPE_KEY].asString(),
|
const cmServerRequest request(this, value[kTYPE_KEY].asString(),
|
||||||
value[kCOOKIE_KEY].asString(), value);
|
value[kCOOKIE_KEY].asString(), value);
|
||||||
|
|
||||||
if (request.Type == "") {
|
if (request.Type == "") {
|
||||||
cmServerResponse response(request);
|
cmServerResponse response(request);
|
||||||
response.SetError("No type given in request.");
|
response.SetError("No type given in request.");
|
||||||
this->WriteResponse(response);
|
this->WriteResponse(response, nullptr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,9 +167,9 @@ void cmServer::PopOne()
|
||||||
if (this->Protocol) {
|
if (this->Protocol) {
|
||||||
this->Protocol->CMakeInstance()->SetProgressCallback(
|
this->Protocol->CMakeInstance()->SetProgressCallback(
|
||||||
reportProgress, const_cast<cmServerRequest*>(&request));
|
reportProgress, const_cast<cmServerRequest*>(&request));
|
||||||
this->WriteResponse(this->Protocol->Process(request));
|
this->WriteResponse(this->Protocol->Process(request), debug.get());
|
||||||
} else {
|
} else {
|
||||||
this->WriteResponse(this->SetProtocolVersion(request));
|
this->WriteResponse(this->SetProtocolVersion(request), debug.get());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -216,7 +242,7 @@ void cmServer::PrintHello() const
|
||||||
protocolVersions.append(tmp);
|
protocolVersions.append(tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
this->WriteJsonObject(hello);
|
this->WriteJsonObject(hello, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmServer::reportProgress(const char* msg, float progress, void* data)
|
void cmServer::reportProgress(const char* msg, float progress, void* data)
|
||||||
|
@ -325,15 +351,44 @@ bool cmServer::Serve()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmServer::WriteJsonObject(const Json::Value& jsonValue) const
|
void cmServer::WriteJsonObject(const Json::Value& jsonValue,
|
||||||
|
const DebugInfo* debug) const
|
||||||
{
|
{
|
||||||
Json::FastWriter writer;
|
Json::FastWriter writer;
|
||||||
|
|
||||||
std::string result = std::string("\n") + kSTART_MAGIC + std::string("\n") +
|
auto beforeJson = uv_hrtime();
|
||||||
writer.write(jsonValue) + kEND_MAGIC + std::string("\n");
|
std::string result = writer.write(jsonValue);
|
||||||
|
|
||||||
|
if (debug) {
|
||||||
|
Json::Value copy = jsonValue;
|
||||||
|
if (debug->PrintStatistics) {
|
||||||
|
Json::Value stats = Json::objectValue;
|
||||||
|
auto endTime = uv_hrtime();
|
||||||
|
|
||||||
|
stats["jsonSerialization"] = double(endTime - beforeJson) / 1000000.0;
|
||||||
|
stats["totalTime"] = double(endTime - debug->StartTime) / 1000000.0;
|
||||||
|
stats["size"] = static_cast<int>(result.size());
|
||||||
|
if (!debug->OutputFile.empty()) {
|
||||||
|
stats["dumpFile"] = debug->OutputFile;
|
||||||
|
}
|
||||||
|
|
||||||
|
copy["zzzDebug"] = stats;
|
||||||
|
|
||||||
|
result = writer.write(copy); // Update result to include debug info
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!debug->OutputFile.empty()) {
|
||||||
|
std::ofstream myfile;
|
||||||
|
myfile.open(debug->OutputFile);
|
||||||
|
myfile << result;
|
||||||
|
myfile.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this->Writing = true;
|
this->Writing = true;
|
||||||
write_data(this->OutputStream, result, on_stdout_write);
|
write_data(this->OutputStream, std::string("\n") + kSTART_MAGIC +
|
||||||
|
std::string("\n") + result + kEND_MAGIC + std::string("\n"),
|
||||||
|
on_stdout_write);
|
||||||
}
|
}
|
||||||
|
|
||||||
cmServerProtocol* cmServer::FindMatchingProtocol(
|
cmServerProtocol* cmServer::FindMatchingProtocol(
|
||||||
|
@ -368,7 +423,7 @@ void cmServer::WriteProgress(const cmServerRequest& request, int min,
|
||||||
obj["progressMaximum"] = max;
|
obj["progressMaximum"] = max;
|
||||||
obj["progressCurrent"] = current;
|
obj["progressCurrent"] = current;
|
||||||
|
|
||||||
this->WriteJsonObject(obj);
|
this->WriteJsonObject(obj, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmServer::WriteMessage(const cmServerRequest& request,
|
void cmServer::WriteMessage(const cmServerRequest& request,
|
||||||
|
@ -387,7 +442,7 @@ void cmServer::WriteMessage(const cmServerRequest& request,
|
||||||
obj["title"] = title;
|
obj["title"] = title;
|
||||||
}
|
}
|
||||||
|
|
||||||
WriteJsonObject(obj);
|
WriteJsonObject(obj, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmServer::WriteParseError(const std::string& message) const
|
void cmServer::WriteParseError(const std::string& message) const
|
||||||
|
@ -398,10 +453,11 @@ void cmServer::WriteParseError(const std::string& message) const
|
||||||
obj[kREPLY_TO_KEY] = "";
|
obj[kREPLY_TO_KEY] = "";
|
||||||
obj[kCOOKIE_KEY] = "";
|
obj[kCOOKIE_KEY] = "";
|
||||||
|
|
||||||
this->WriteJsonObject(obj);
|
this->WriteJsonObject(obj, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmServer::WriteResponse(const cmServerResponse& response) const
|
void cmServer::WriteResponse(const cmServerResponse& response,
|
||||||
|
const DebugInfo* debug) const
|
||||||
{
|
{
|
||||||
assert(response.IsComplete());
|
assert(response.IsComplete());
|
||||||
|
|
||||||
|
@ -413,5 +469,5 @@ void cmServer::WriteResponse(const cmServerResponse& response) const
|
||||||
obj[kERROR_MESSAGE_KEY] = response.ErrorMessage();
|
obj[kERROR_MESSAGE_KEY] = response.ErrorMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
this->WriteJsonObject(obj);
|
this->WriteJsonObject(obj, debug);
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,8 @@ class cmServerResponse;
|
||||||
class cmServer
|
class cmServer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
class DebugInfo;
|
||||||
|
|
||||||
cmServer(bool supportExperimental);
|
cmServer(bool supportExperimental);
|
||||||
~cmServer();
|
~cmServer();
|
||||||
|
|
||||||
|
@ -57,10 +59,12 @@ private:
|
||||||
int max, const std::string& message) const;
|
int max, const std::string& message) const;
|
||||||
void WriteMessage(const cmServerRequest& request, const std::string& message,
|
void WriteMessage(const cmServerRequest& request, const std::string& message,
|
||||||
const std::string& title) const;
|
const std::string& title) const;
|
||||||
void WriteResponse(const cmServerResponse& response) const;
|
void WriteResponse(const cmServerResponse& response,
|
||||||
|
const DebugInfo* debug) const;
|
||||||
void WriteParseError(const std::string& message) const;
|
void WriteParseError(const std::string& message) const;
|
||||||
|
|
||||||
void WriteJsonObject(Json::Value const& jsonValue) const;
|
void WriteJsonObject(Json::Value const& jsonValue,
|
||||||
|
const DebugInfo* debug) const;
|
||||||
|
|
||||||
static cmServerProtocol* FindMatchingProtocol(
|
static cmServerProtocol* FindMatchingProtocol(
|
||||||
const std::vector<cmServerProtocol*>& protocols, int major, int minor);
|
const std::vector<cmServerProtocol*>& protocols, int major, int minor);
|
||||||
|
|
Loading…
Reference in New Issue