Add getStateSummary method for diagnostics

Summary:
Adds a more structured representation of state updates than a multiline string.
Also changes the string form to omit [started] records.

Reviewed By: danielbuechele

Differential Revision: D9315503

fbshipit-source-id: 55b8f9572091fd42fe852c8d26a8f2a53f76c82a
This commit is contained in:
John Knox
2018-08-15 05:06:34 -07:00
committed by Facebook Github Bot
parent e51b8c0742
commit 660da3f80e
10 changed files with 144 additions and 13 deletions

View File

@@ -10,11 +10,27 @@
#include <memory>
#include <string>
#include <Sonar/SonarStep.h>
#include <vector>
#include <map>
class SonarStep;
class SonarStateUpdateListener;
namespace facebook {
namespace sonar {
enum State { success, in_progress, failed };
class StateElement {
public:
StateElement(std::string name, State state): name_(name), state_(state) {};
std::string name_;
State state_;
};
}
}
class SonarState {
friend SonarStep;
@@ -22,6 +38,7 @@ class SonarState {
SonarState();
void setUpdateListener(std::shared_ptr<SonarStateUpdateListener>);
std::string getState();
std::vector<facebook::sonar::StateElement> getStateElements();
/* To record a state update, call start() with the name of the step to get a
SonarStep object. Call complete on this to register it successful,
@@ -33,6 +50,9 @@ class SonarState {
void success(std::string);
void failed(std::string, std::string);
void started(std::string);
std::shared_ptr<SonarStateUpdateListener> mListener = nullptr;
std::string stateUpdates;
std::string log;
std::vector<std::string> insertOrder;
std::map<std::string, facebook::sonar::State> stateMap;
};