74 lines
2.4 KiB
C++
74 lines
2.4 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "atom/common/crash_reporter/crash_reporter.h"
|
|
#include "base/bind.h"
|
|
#include "native_mate/dictionary.h"
|
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
namespace mate {
|
|
|
|
template<>
|
|
struct Converter<std::map<std::string, std::string> > {
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
std::map<std::string, std::string>* out) {
|
|
if (!val->IsObject())
|
|
return false;
|
|
|
|
v8::Local<v8::Object> dict = val->ToObject();
|
|
v8::Local<v8::Array> keys = dict->GetOwnPropertyNames();
|
|
for (uint32_t i = 0; i < keys->Length(); ++i) {
|
|
v8::Local<v8::Value> key = keys->Get(i);
|
|
(*out)[V8ToString(key)] = V8ToString(dict->Get(key));
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
|
|
template<>
|
|
struct Converter<std::vector<crash_reporter::CrashReporter::UploadReportResult> > {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
const std::vector<
|
|
crash_reporter::CrashReporter::UploadReportResult>& reports) {
|
|
v8::Local<v8::Array> result(v8::Array::New(isolate, reports.size()));
|
|
for (size_t i = 0; i < reports.size(); ++i) {
|
|
mate::Dictionary dict(isolate, v8::Object::New(isolate));
|
|
dict.Set("date", reports[i].first);
|
|
dict.Set("id", reports[i].second);
|
|
v8::TryCatch try_catch;
|
|
result->Set(static_cast<uint32>(i), dict.GetHandle());
|
|
if (try_catch.HasCaught())
|
|
LOG(ERROR) << "Setter for index " << i << " threw an exception.";
|
|
}
|
|
return result;
|
|
}
|
|
};
|
|
|
|
} // namespace mate
|
|
|
|
namespace {
|
|
|
|
std::vector<crash_reporter::CrashReporter::UploadReportResult>
|
|
GetUploadedReports() {
|
|
return (crash_reporter::CrashReporter::GetInstance())->GetUploadedReports();
|
|
}
|
|
|
|
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
|
v8::Local<v8::Context> context, void* priv) {
|
|
using crash_reporter::CrashReporter;
|
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
|
dict.SetMethod("start",
|
|
base::Bind(&CrashReporter::Start,
|
|
base::Unretained(CrashReporter::GetInstance())));
|
|
dict.SetMethod("_getUploadedReports", &GetUploadedReports);
|
|
}
|
|
|
|
} // namespace
|
|
|
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_common_crash_reporter, Initialize)
|