837402bea19937013fae60b73f8da0d825aefec4
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / extension_error_reporter.cc
1 // Copyright (c) 2012 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.
4
5 #include "chrome/browser/extensions/extension_error_reporter.h"
6
7 #include "build/build_config.h"
8
9 #include "base/bind.h"
10 #include "base/bind_helpers.h"
11 #include "base/files/file_path.h"
12 #include "base/logging.h"
13 #include "base/message_loop/message_loop.h"
14 #include "base/strings/stringprintf.h"
15 #include "base/strings/utf_string_conversions.h"
16 #include "chrome/browser/chrome_notification_types.h"
17 #include "chrome/browser/ui/simple_message_box.h"
18 #include "content/public/browser/notification_service.h"
19
20 ExtensionErrorReporter* ExtensionErrorReporter::instance_ = NULL;
21
22 // static
23 void ExtensionErrorReporter::Init(bool enable_noisy_errors) {
24   if (!instance_) {
25     instance_ = new ExtensionErrorReporter(enable_noisy_errors);
26   }
27 }
28
29 // static
30 ExtensionErrorReporter* ExtensionErrorReporter::GetInstance() {
31   CHECK(instance_) << "Init() was never called";
32   return instance_;
33 }
34
35 ExtensionErrorReporter::ExtensionErrorReporter(bool enable_noisy_errors)
36     : ui_loop_(base::MessageLoop::current()),
37       enable_noisy_errors_(enable_noisy_errors) {
38 }
39
40 ExtensionErrorReporter::~ExtensionErrorReporter() {}
41
42 void ExtensionErrorReporter::ReportLoadError(
43     const base::FilePath& extension_path,
44     const std::string& error,
45     Profile* profile,
46     bool be_noisy) {
47   content::NotificationService::current()->Notify(
48       chrome::NOTIFICATION_EXTENSION_LOAD_ERROR,
49       content::Source<Profile>(profile),
50       content::Details<const std::string>(&error));
51
52   std::string path_str = base::UTF16ToUTF8(extension_path.LossyDisplayName());
53   base::string16 message = base::UTF8ToUTF16(
54       base::StringPrintf("Could not load extension from '%s'. %s",
55                          path_str.c_str(),
56                          error.c_str()));
57   ReportError(message, be_noisy);
58 }
59
60 void ExtensionErrorReporter::ReportError(const base::string16& message,
61                                          bool be_noisy) {
62   // NOTE: There won't be a ui_loop_ in the unit test environment.
63   if (ui_loop_) {
64     CHECK(base::MessageLoop::current() == ui_loop_)
65         << "ReportError can only be called from the UI thread.";
66   }
67
68   errors_.push_back(message);
69
70   // TODO(aa): Print the error message out somewhere better. I think we are
71   // going to need some sort of 'extension inspector'.
72   LOG(WARNING) << "Extension error: " << message;
73
74   if (enable_noisy_errors_ && be_noisy) {
75     chrome::ShowMessageBox(NULL,
76                            base::ASCIIToUTF16("Extension error"),
77                            message,
78                            chrome::MESSAGE_BOX_TYPE_WARNING);
79   }
80 }
81
82 const std::vector<base::string16>* ExtensionErrorReporter::GetErrors() {
83   return &errors_;
84 }
85
86 void ExtensionErrorReporter::ClearErrors() {
87   errors_.clear();
88 }