18
18
#include " ApiHandler.h"
19
19
20
20
#include < fgviewer/DebugServer.h>
21
+ #include < fgviewer/JsonWriter.h>
21
22
22
23
#include < utils/FixedCapacityVector.h>
23
24
#include < utils/Log.h>
@@ -40,29 +41,96 @@ auto const error = [](int line, std::string const& uri) {
40
41
41
42
} // anonymous
42
43
43
- bool ApiHandler::handleGetApiFgInfo (struct mg_connection * conn,
44
- struct mg_request_info const * request) {
45
- auto const softError = [conn, request](char const * msg) {
46
- utils::slog.e << " [fgviewer] DebugServer: " << msg << " : " << request->query_string << utils::io::endl;
47
- mg_printf (conn, kErrorHeader .data (), " application/txt" );
48
- mg_write (conn, msg, strlen (msg));
44
+ bool ApiHandler::handleGet (CivetServer* server, struct mg_connection * conn) {
45
+ struct mg_request_info const * request = mg_get_request_info (conn);
46
+ std::string const & uri = request->local_uri ;
47
+
48
+ if (uri.find (" /api/status" ) == 0 ) {
49
+ return handleGetStatus (conn, request);
50
+ }
51
+
52
+ if (uri == " /api/framegraphs" ) {
53
+ std::unique_lock const lock (mServer ->mViewsMutex );
54
+ mg_printf (conn, kSuccessHeader .data (), " application/json" );
55
+ mg_printf (conn, " [" );
56
+ int index = 0 ;
57
+ for (auto const & view: mServer ->mViews ) {
58
+ bool const last = (++index ) == mServer ->mViews .size ();
59
+
60
+ JsonWriter writer;
61
+ if (!writer.writeFrameGraphInfo (view.second )) {
62
+ return error (__LINE__, uri);
63
+ }
64
+
65
+ mg_printf (conn, " { \" fgid\" : \" %8.8x\" , %s } %s" , view.first , writer.getJsonString (),
66
+ last ? " " : " ," );
67
+ }
68
+ mg_printf (conn, " ]" );
69
+ return true ;
70
+ }
71
+
72
+ if (uri == " /api/framegraph" ) {
73
+ const FrameGraphInfo* result = getFrameGraphInfo (request);
74
+ if (!result) {
75
+ return error (__LINE__, uri);
76
+ }
77
+
78
+ JsonWriter writer;
79
+ if (!writer.writeFrameGraphInfo (*result)) {
80
+ return error (__LINE__, uri);
81
+ }
82
+ mg_printf (conn, kSuccessHeader .data (), " application/json" );
83
+ mg_printf (conn, " { %s }" , writer.getJsonString ());
49
84
return true ;
50
- };
85
+ }
51
86
52
- // TODO: Implement the method
53
- return true ;
87
+ return error (__LINE__, uri);
54
88
}
55
89
56
- void ApiHandler::addFrameGraph (FrameGraphInfo const * framegraph) {
57
- // TODO: Implement the method
90
+ void ApiHandler::updateFrameGraph (ViewHandle view_handle) {
91
+ std::unique_lock const lock (mStatusMutex );
92
+ snprintf (statusFrameGraphId, sizeof (statusFrameGraphId), " %8.8x" , view_handle);
93
+ mCurrentStatus ++;
94
+ mStatusCondition .notify_all ();
58
95
}
59
96
97
+ const FrameGraphInfo* ApiHandler::getFrameGraphInfo (struct mg_request_info const * request) {
98
+ size_t const qlength = strlen (request->query_string );
99
+ char fgid[9 ] = {};
100
+ if (mg_get_var (request->query_string , qlength, " fgid" , fgid, sizeof (fgid)) < 0 ) {
101
+ return nullptr ;
102
+ }
103
+ uint32_t const id = strtoul (fgid, nullptr , 16 );
104
+ std::unique_lock const lock (mServer ->mViewsMutex );
105
+ const auto it = mServer ->mViews .find (id);
106
+ return it == mServer ->mViews .end ()
107
+ ? nullptr
108
+ : &(it->second );
109
+ }
60
110
61
- bool ApiHandler::handleGet (CivetServer* server, struct mg_connection * conn) {
62
- struct mg_request_info const * request = mg_get_request_info (conn);
63
- std::string const & uri = request->local_uri ;
64
-
65
- // TODO: Implement the method
111
+ bool ApiHandler::handleGetStatus (struct mg_connection * conn,
112
+ struct mg_request_info const * request) {
113
+ char const * qstr = request->query_string ;
114
+ if (qstr && strcmp (qstr, " firstTime" ) == 0 ) {
115
+ mg_printf (conn, kSuccessHeader .data (), " application/txt" );
116
+ mg_write (conn, " 0" , 1 );
117
+ return true ;
118
+ }
119
+
120
+ std::unique_lock<std::mutex> lock (mStatusMutex );
121
+ uint64_t const currentStatusCount = mCurrentStatus ;
122
+ if (mStatusCondition .wait_for (lock, 10s,
123
+ [this , currentStatusCount] {
124
+ return currentStatusCount < mCurrentStatus ;
125
+ })) {
126
+ mg_printf (conn, kSuccessHeader .data (), " application/txt" );
127
+ mg_write (conn, statusFrameGraphId, 8 );
128
+ } else {
129
+ mg_printf (conn, kSuccessHeader .data (), " application/txt" );
130
+ // Use '1' to indicate a no-op. This ensures that we don't block forever if the client is
131
+ // gone.
132
+ mg_write (conn, " 1" , 1 );
133
+ }
66
134
return true ;
67
135
}
68
136
0 commit comments