File: SentryReport.cpp

package info (click to toggle)
audacity 3.7.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 125,252 kB
  • sloc: cpp: 358,238; ansic: 75,458; lisp: 7,761; sh: 3,410; python: 1,503; xml: 1,385; perl: 854; makefile: 122
file content (428 lines) | stat: -rw-r--r-- 11,325 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/*!********************************************************************

 Audacity: A Digital Audio Editor

 @file SentryReport.cpp
 @brief Define a class to report errors to Sentry.

 Dmitry Vedenko
 **********************************************************************/

#include "SentryReport.h"

#include <chrono>
#include <cstring>
#include <mutex>

#include <algorithm>
#include <cctype>
#include <regex>

#include <rapidjson/document.h>
#include <rapidjson/writer.h>
#include <rapidjson/prettywriter.h>

#include <wx/platinfo.h>
#include <wx/log.h>

#include "CodeConversions.h"
#include "Uuid.h"

#include "IResponse.h"
#include "NetworkManager.h"

#include "SentryRequestBuilder.h"

namespace audacity
{
namespace sentry
{
namespace
{

//! Helper class to store additional details about the exception
/*! This small class is a thread safe store for the information 
    we want to add to the exception before the exception occurs.
    For example, we may log SQLite3 return codes here, as otherwise 
    they wont be available when everything fails
*/
class ExceptionContext final
{
public:
    //! Adds a new item to the exception context
   void Add(std::string parameterName, AnonymizedMessage parameterValue)
   {
      std::lock_guard<std::mutex> lock(mDataMutex);
      mData.emplace_back(std::move(parameterName), std::move(parameterValue));
   }

   //! Return the current context and reset it
   std::vector<ExceptionData> MoveParameters()
   {
      std::lock_guard<std::mutex> lock(mDataMutex);

      std::vector<ExceptionData> emptyVector;

      std::swap(mData, emptyVector);

      return emptyVector;
   }

   //! Get an instance of the ExceptionContext
   static ExceptionContext& Get()
   {
      static ExceptionContext instance;
      return instance;
   }

private:
   ExceptionContext() = default;

   std::mutex mDataMutex;
   std::vector<ExceptionData> mData;
};

//! Append the data about the operating system to the JSON document
void AddOSContext(
   rapidjson::Value& root, rapidjson::Document::AllocatorType& allocator)
{
   rapidjson::Value osContext(rapidjson::kObjectType);

   const wxPlatformInfo platformInfo = wxPlatformInfo::Get();

   const std::string osName =
      ToUTF8(platformInfo.GetOperatingSystemFamilyName());

   osContext.AddMember("type", rapidjson::Value("os", allocator), allocator);

   osContext.AddMember(
      "name", rapidjson::Value(osName.c_str(), osName.length(), allocator),
      allocator);

   const std::string osVersion =
      std::to_string(platformInfo.GetOSMajorVersion()) + "." +
      std::to_string(platformInfo.GetOSMinorVersion()) + "." +
      std::to_string(platformInfo.GetOSMicroVersion());

   osContext.AddMember(
      "version",
      rapidjson::Value(osVersion.c_str(), osVersion.length(), allocator),
      allocator);

   root.AddMember("os", std::move(osContext), allocator);
}

//! Create the minimal required Sentry JSON document
rapidjson::Document CreateSentryDocument()
{
   using namespace std::chrono;
   rapidjson::Document document;

   document.SetObject();

   document.AddMember(
      "timestamp",
      rapidjson::Value(
         duration_cast<seconds>(system_clock::now().time_since_epoch())
            .count()),
      document.GetAllocator());

   std::string eventId = Uuid::Generate().ToHexString();

   document.AddMember(
      "event_id",
      rapidjson::Value(
         eventId.c_str(), eventId.length(), document.GetAllocator()),
      document.GetAllocator());

   constexpr char platform[] = "native";

   document.AddMember(
      "platform",
      rapidjson::Value(platform, sizeof(platform) - 1, document.GetAllocator()),
      document.GetAllocator());

   document["platform"].SetString(
      platform, sizeof(platform) - 1, document.GetAllocator());

   const std::string release = std::string("audacity@") +
                               std::to_string(AUDACITY_VERSION) + "." +
                               std::to_string(AUDACITY_RELEASE) + "." +
                               std::to_string(AUDACITY_REVISION);

   document.AddMember(
      "release",
      rapidjson::Value(
         release.c_str(), release.length(), document.GetAllocator()),
      document.GetAllocator());

   rapidjson::Value contexts = rapidjson::Value(rapidjson::kObjectType);

   AddOSContext(contexts, document.GetAllocator());

   document.AddMember("contexts", contexts, document.GetAllocator());

   return document;
}

//! Append the ExceptionData to the Exception JSON object
void AddExceptionDataToJson(
   rapidjson::Value& value, rapidjson::Document::AllocatorType& allocator,
   const ExceptionData& data)
{
   value.AddMember(
      rapidjson::Value(data.first.c_str(), data.first.length(), allocator),
      rapidjson::Value(data.second.c_str(), data.second.length(), allocator),
      allocator);
}

//! Serialize the Exception to JSON
void SerializeException(
   const Exception& exception, rapidjson::Value& root,
   rapidjson::Document::AllocatorType& allocator)
{
   root.AddMember(
      "type",
      rapidjson::Value(
         exception.Type.c_str(), exception.Type.length(), allocator),
      allocator);

   root.AddMember(
      "value",
      rapidjson::Value(
         exception.Value.c_str(), exception.Value.length(), allocator),
      allocator);

   rapidjson::Value mechanismObject(rapidjson::kObjectType);

   mechanismObject.AddMember(
      "type", rapidjson::Value("runtime_error", allocator), allocator);

   mechanismObject.AddMember(
      "handled", false, allocator);

   auto contextData = ExceptionContext::Get().MoveParameters();

   if (!exception.Data.empty() || !contextData.empty())
   {
      rapidjson::Value dataObject(rapidjson::kObjectType);

      for (const auto& data : contextData)
         AddExceptionDataToJson(dataObject, allocator, data);

      for (const auto& data : exception.Data)
         AddExceptionDataToJson(dataObject, allocator, data);

      mechanismObject.AddMember("data", std::move(dataObject), allocator);
   }

   root.AddMember("mechanism", std::move(mechanismObject), allocator);
}

} // namespace

Exception Exception::Create(std::string type, AnonymizedMessage value)
{
   std::replace_if(type.begin(), type.end(), [](char c) {
      return  std::isspace(c) != 0;
   }, '_');

   return { std::move(type), std::move(value) };
}

Exception Exception::Create(AnonymizedMessage value)
{
   return { "runtime_error", std::move(value) };
}

Exception& Exception::AddData(std::string key, AnonymizedMessage value)
{
   Data.emplace_back(std::move(key), std::move(value));
   return *this;
}

Message Message::Create(AnonymizedMessage message)
{
   return { std::move(message) };
}

Message& Message::AddParam(AnonymizedMessage value)
{
   Params.emplace_back(std::move(value));
   return *this;
}

void AddExceptionContext(
   std::string parameterName, AnonymizedMessage parameterValue)
{
    ExceptionContext::Get().Add(std::move (parameterName), std::move (parameterValue));
}

class Report::ReportImpl
{
public:
   explicit ReportImpl(const Exception& exception);
   explicit ReportImpl(const Message& message);

   void AddUserComment(const std::string& message);

   std::string ToString(bool pretty) const;

   void Send(CompletionHandler completionHandler) const;

private:
   rapidjson::Document mDocument;
};


Report::ReportImpl::ReportImpl(const Exception& exception)
    : mDocument(CreateSentryDocument())
{
   rapidjson::Value exceptionObject(rapidjson::kObjectType);
   rapidjson::Value valuesArray(rapidjson::kArrayType);
   rapidjson::Value valueObject(rapidjson::kObjectType);

   SerializeException(exception, valueObject, mDocument.GetAllocator());

   valuesArray.PushBack(std::move(valueObject), mDocument.GetAllocator());

   exceptionObject.AddMember(
      "values", std::move(valuesArray), mDocument.GetAllocator());

   mDocument.AddMember(
      "exception", std::move(exceptionObject), mDocument.GetAllocator());
}

Report::ReportImpl::ReportImpl(const Message& message)
    : mDocument(CreateSentryDocument())
{
   rapidjson::Value messageObject(rapidjson::kObjectType);

   messageObject.AddMember(
      "message",
      rapidjson::Value(
         message.Value.c_str(), message.Value.length(),
         mDocument.GetAllocator()),
      mDocument.GetAllocator());

   if (!message.Params.empty())
   {
      rapidjson::Value paramsArray(rapidjson::kArrayType);

      for (const AnonymizedMessage& param : message.Params)
      {
         paramsArray.PushBack(
            rapidjson::Value(
               param.c_str(), param.length(), mDocument.GetAllocator()),
            mDocument.GetAllocator());
      }

      messageObject.AddMember(
         "params", std::move(paramsArray), mDocument.GetAllocator());
   }

   mDocument.AddMember(
      "message", std::move(messageObject), mDocument.GetAllocator());
}

void Report::ReportImpl::AddUserComment(const std::string& message)
{
   // We only allow adding comment to exceptions now
   if (!mDocument.HasMember("exception") || message.empty())
      return;

   rapidjson::Value& topException = mDocument["exception"]["values"][0];

   if (!topException.IsObject())
      return;

   rapidjson::Value& mechanism = topException["mechanism"];

   // Create a data object if it still does not exist
   if (!mechanism.HasMember("data"))
   {
      mechanism.AddMember(
         "data", rapidjson::Value(rapidjson::kObjectType),
         mDocument.GetAllocator());
   }

   // Add a comment itself
   mechanism["data"].AddMember(
      "user_comment",
      rapidjson::Value(
         message.data(), message.length(), mDocument.GetAllocator()),
      mDocument.GetAllocator());
}


void Report::ReportImpl::Send(CompletionHandler completionHandler) const
{
   const std::string serializedDocument = ToString(false);

   network_manager::Request request =
      SentryRequestBuilder::Get().CreateRequest();

   auto response = network_manager::NetworkManager::GetInstance().doPost(
      request, serializedDocument.data(), serializedDocument.size());

   response->setRequestFinishedCallback(
      [response, handler = std::move(completionHandler)](network_manager::IResponse*) {
         const std::string responseData = response->readAll<std::string>();

         wxLogDebug(responseData.c_str());

         if (handler)
            handler(response->getHTTPCode(), responseData);
      });
}

std::string Report::ReportImpl::ToString(bool pretty) const
{
   rapidjson::StringBuffer buffer;

   if (pretty)
   {
      rapidjson::PrettyWriter<rapidjson::StringBuffer> writer(buffer);
      mDocument.Accept(writer);
   }
   else
   {
      rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
      mDocument.Accept(writer);
   }

   return std::string(buffer.GetString());
}

Report::~Report()
{
}

Report::Report(const Exception& exception)
    : mImpl(std::make_unique<ReportImpl>(exception))
{
}

Report::Report(const Message& message)
    : mImpl(std::make_unique<ReportImpl>(message))
{
}

void Report::AddUserComment(const std::string& comment)
{
   mImpl->AddUserComment(comment);
}

std::string Report::GetReportPreview() const
{
   return mImpl->ToString(true);
}

void Report::Send(CompletionHandler completionHandler) const
{
   mImpl->Send(std::move (completionHandler));
}


} // namespace sentry
} // namespace audacity