[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 1 | // Copyright 2013 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 "content/renderer/stats_collection_controller.h" |
| 6 | |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 7 | #include "base/json/json_writer.h" |
| 8 | #include "base/metrics/histogram.h" |
| 9 | #include "base/metrics/statistics_recorder.h" |
[email protected] | 21aa9968 | 2013-06-11 07:17:01 | [diff] [blame] | 10 | #include "base/strings/string_util.h" |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 11 | #include "content/common/child_process_messages.h" |
| 12 | #include "content/renderer/render_view_impl.h" |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 13 | #include "gin/handle.h" |
| 14 | #include "gin/object_template_builder.h" |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 15 | #include "third_party/WebKit/public/web/WebKit.h" |
[email protected] | d357694 | 2014-04-10 18:45:37 | [diff] [blame] | 16 | #include "third_party/WebKit/public/web/WebLocalFrame.h" |
[email protected] | 2255a933 | 2013-06-17 05:12:31 | [diff] [blame] | 17 | #include "third_party/WebKit/public/web/WebView.h" |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 18 | |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 19 | namespace content { |
| 20 | |
| 21 | namespace { |
| 22 | |
| 23 | bool CurrentRenderViewImpl(RenderViewImpl** out) { |
[email protected] | d357694 | 2014-04-10 18:45:37 | [diff] [blame] | 24 | blink::WebLocalFrame* web_frame = |
| 25 | blink::WebLocalFrame::frameForCurrentContext(); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 26 | if (!web_frame) |
| 27 | return false; |
| 28 | |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 29 | blink::WebView* web_view = web_frame->view(); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 30 | if (!web_view) |
| 31 | return false; |
| 32 | |
| 33 | RenderViewImpl* render_view_impl = |
| 34 | RenderViewImpl::FromWebView(web_view); |
| 35 | if (!render_view_impl) |
| 36 | return false; |
| 37 | |
| 38 | *out = render_view_impl; |
| 39 | return true; |
| 40 | } |
| 41 | |
| 42 | // Encodes a WebContentsLoadTime as JSON. |
| 43 | // Input: |
| 44 | // - |load_start_time| - time at which page load started. |
| 45 | // - |load_stop_time| - time at which page load stopped. |
| 46 | // - |result| - returned JSON. |
| 47 | // Example return value: |
| 48 | // {'load_start_ms': 1, 'load_duration_ms': 2.5} |
| 49 | // either value may be null if a web contents hasn't fully loaded. |
| 50 | // load_start_ms is represented as milliseconds since system boot. |
| 51 | void ConvertLoadTimeToJSON( |
[email protected] | 538dde87 | 2013-11-19 16:44:17 | [diff] [blame] | 52 | const base::Time& load_start_time, |
| 53 | const base::Time& load_stop_time, |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 54 | std::string *result) { |
[email protected] | 71677525 | 2013-06-14 17:58:00 | [diff] [blame] | 55 | base::DictionaryValue item; |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 56 | |
| 57 | if (load_start_time.is_null()) { |
[email protected] | 538dde87 | 2013-11-19 16:44:17 | [diff] [blame] | 58 | item.Set("load_start_ms", base::Value::CreateNullValue()); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 59 | } else { |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 60 | item.SetDouble("load_start_ms", load_start_time.ToInternalValue() / 1000); |
| 61 | } |
[email protected] | c81e3fd | 2013-08-05 16:30:22 | [diff] [blame] | 62 | if (load_start_time.is_null() || load_stop_time.is_null()) { |
[email protected] | 71677525 | 2013-06-14 17:58:00 | [diff] [blame] | 63 | item.Set("load_duration_ms", base::Value::CreateNullValue()); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 64 | } else { |
| 65 | item.SetDouble("load_duration_ms", |
[email protected] | 538dde87 | 2013-11-19 16:44:17 | [diff] [blame] | 66 | (load_stop_time - load_start_time).InMillisecondsF()); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 67 | } |
| 68 | base::JSONWriter::Write(&item, result); |
| 69 | } |
| 70 | |
| 71 | } // namespace |
| 72 | |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 73 | // static |
| 74 | gin::WrapperInfo StatsCollectionController::kWrapperInfo = { |
| 75 | gin::kEmbedderNativeGin |
| 76 | }; |
| 77 | |
| 78 | // static |
| 79 | void StatsCollectionController::Install(blink::WebFrame* frame) { |
| 80 | v8::Isolate* isolate = blink::mainThreadIsolate(); |
| 81 | v8::HandleScope handle_scope(isolate); |
| 82 | v8::Handle<v8::Context> context = frame->mainWorldScriptContext(); |
| 83 | if (context.IsEmpty()) |
| 84 | return; |
| 85 | |
| 86 | v8::Context::Scope context_scope(context); |
| 87 | |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 88 | gin::Handle<StatsCollectionController> controller = |
| 89 | gin::CreateHandle(isolate, new StatsCollectionController()); |
[email protected] | ad4d203 | 2014-04-28 13:50:59 | [diff] [blame^] | 90 | if (controller.IsEmpty()) |
| 91 | return; |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 92 | v8::Handle<v8::Object> global = context->Global(); |
| 93 | global->Set(gin::StringToV8(isolate, "statsCollectionController"), |
| 94 | controller.ToV8()); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 95 | } |
| 96 | |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 97 | StatsCollectionController::StatsCollectionController() {} |
| 98 | |
| 99 | StatsCollectionController::~StatsCollectionController() {} |
| 100 | |
[email protected] | 13c977e6 | 2013-12-19 00:52:44 | [diff] [blame] | 101 | gin::ObjectTemplateBuilder StatsCollectionController::GetObjectTemplateBuilder( |
| 102 | v8::Isolate* isolate) { |
| 103 | return gin::Wrappable<StatsCollectionController>::GetObjectTemplateBuilder( |
| 104 | isolate) |
| 105 | .SetMethod("getHistogram", &StatsCollectionController::GetHistogram) |
| 106 | .SetMethod("getBrowserHistogram", |
| 107 | &StatsCollectionController::GetBrowserHistogram) |
| 108 | .SetMethod("tabLoadTiming", &StatsCollectionController::GetTabLoadTiming); |
| 109 | } |
| 110 | |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 111 | std::string StatsCollectionController::GetHistogram( |
| 112 | const std::string& histogram_name) { |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 113 | base::HistogramBase* histogram = |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 114 | base::StatisticsRecorder::FindHistogram(histogram_name); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 115 | std::string output; |
| 116 | if (!histogram) { |
| 117 | output = "{}"; |
| 118 | } else { |
| 119 | histogram->WriteJSON(&output); |
| 120 | } |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 121 | return output; |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 122 | } |
| 123 | |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 124 | std::string StatsCollectionController::GetBrowserHistogram( |
| 125 | const std::string& histogram_name) { |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 126 | RenderViewImpl *render_view_impl = NULL; |
| 127 | if (!CurrentRenderViewImpl(&render_view_impl)) { |
| 128 | NOTREACHED(); |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 129 | return std::string(); |
| 130 | } |
| 131 | |
| 132 | std::string histogram_json; |
| 133 | render_view_impl->Send(new ChildProcessHostMsg_GetBrowserHistogram( |
| 134 | histogram_name, &histogram_json)); |
| 135 | return histogram_json; |
| 136 | } |
| 137 | |
| 138 | std::string StatsCollectionController::GetTabLoadTiming() { |
| 139 | RenderViewImpl *render_view_impl = NULL; |
| 140 | if (!CurrentRenderViewImpl(&render_view_impl)) { |
| 141 | NOTREACHED(); |
| 142 | return std::string(); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | StatsCollectionObserver* observer = |
| 146 | render_view_impl->GetStatsCollectionObserver(); |
| 147 | if (!observer) { |
| 148 | NOTREACHED(); |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 149 | return std::string(); |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | std::string tab_timing_json; |
| 153 | ConvertLoadTimeToJSON( |
| 154 | observer->load_start_time(), observer->load_stop_time(), |
| 155 | &tab_timing_json); |
[email protected] | a79712f | 2013-12-13 21:33:25 | [diff] [blame] | 156 | return tab_timing_json; |
[email protected] | 27c521a | 2013-05-29 20:44:32 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | } // namespace content |