1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/logging.h"
6 #include "base/strings/stringprintf.h"
7 #include "extensions/renderer/logging_native_handler.h"
8 #include "extensions/renderer/script_context.h"
10 namespace extensions
{
12 LoggingNativeHandler::LoggingNativeHandler(ScriptContext
* context
)
13 : ObjectBackedNativeHandler(context
) {
16 base::Bind(&LoggingNativeHandler::Dcheck
, base::Unretained(this)));
19 base::Bind(&LoggingNativeHandler::Check
, base::Unretained(this)));
22 base::Bind(&LoggingNativeHandler::DcheckIsOn
, base::Unretained(this)));
24 base::Bind(&LoggingNativeHandler::Log
, base::Unretained(this)));
27 base::Bind(&LoggingNativeHandler::Warning
, base::Unretained(this)));
30 LoggingNativeHandler::~LoggingNativeHandler() {}
32 void LoggingNativeHandler::Check(
33 const v8::FunctionCallbackInfo
<v8::Value
>& args
) {
35 std::string error_message
;
36 ParseArgs(args
, &check_value
, &error_message
);
37 CHECK(check_value
) << error_message
;
40 void LoggingNativeHandler::Dcheck(
41 const v8::FunctionCallbackInfo
<v8::Value
>& args
) {
43 std::string error_message
;
44 ParseArgs(args
, &check_value
, &error_message
);
45 DCHECK(check_value
) << error_message
;
48 void LoggingNativeHandler::DcheckIsOn(
49 const v8::FunctionCallbackInfo
<v8::Value
>& args
) {
50 args
.GetReturnValue().Set(DCHECK_IS_ON());
53 void LoggingNativeHandler::Log(
54 const v8::FunctionCallbackInfo
<v8::Value
>& args
) {
55 CHECK_EQ(1, args
.Length());
56 LOG(INFO
) << *v8::String::Utf8Value(args
[0]);
59 void LoggingNativeHandler::Warning(
60 const v8::FunctionCallbackInfo
<v8::Value
>& args
) {
61 CHECK_EQ(1, args
.Length());
62 LOG(WARNING
) << *v8::String::Utf8Value(args
[0]);
65 void LoggingNativeHandler::ParseArgs(
66 const v8::FunctionCallbackInfo
<v8::Value
>& args
,
68 std::string
* error_message
) {
69 CHECK_LE(args
.Length(), 2);
70 *check_value
= args
[0]->BooleanValue();
71 if (args
.Length() == 2) {
72 *error_message
= "Error: " + std::string(*v8::String::Utf8Value(args
[1]));
75 *error_message
+= "\n" + context()->GetStackTraceAsString();
78 } // namespace extensions