2012-10-26 22:42:41 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "cefclient/performance_test.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "include/wrapper/cef_stream_resource_handler.h"
|
|
|
|
#include "cefclient/performance_test_setup.h"
|
|
|
|
#include "cefclient/resource_util.h"
|
|
|
|
|
|
|
|
namespace performance_test {
|
|
|
|
|
2012-10-29 22:46:02 +01:00
|
|
|
// Use more interations for a Release build.
|
|
|
|
#ifdef NDEBUG
|
|
|
|
const size_t kDefaultIterations = 100000;
|
|
|
|
#else
|
2012-10-26 22:42:41 +02:00
|
|
|
const size_t kDefaultIterations = 10000;
|
2012-10-29 22:46:02 +01:00
|
|
|
#endif
|
2012-10-26 22:42:41 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
const char kTestUrl[] = "http://tests/performance";
|
|
|
|
const char kGetPerfTests[] = "GetPerfTests";
|
|
|
|
const char kRunPerfTest[] = "RunPerfTest";
|
|
|
|
|
|
|
|
// Handle resource loading in the browser process.
|
|
|
|
class RequestDelegate: public ClientHandler::RequestDelegate {
|
|
|
|
public:
|
|
|
|
RequestDelegate() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// From ClientHandler::RequestDelegate.
|
|
|
|
virtual CefRefPtr<CefResourceHandler> GetResourceHandler(
|
|
|
|
CefRefPtr<ClientHandler> handler,
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefRequest> request) OVERRIDE {
|
|
|
|
std::string url = request->GetURL();
|
|
|
|
if (url == kTestUrl) {
|
|
|
|
// Show the test contents
|
|
|
|
CefRefPtr<CefStreamReader> stream =
|
|
|
|
GetBinaryResourceReader("performance.html");
|
|
|
|
ASSERT(stream.get());
|
|
|
|
return new CefStreamResourceHandler("text/html", stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPLEMENT_REFCOUNTING(RequestDelegate);
|
|
|
|
};
|
|
|
|
|
|
|
|
class V8Handler : public CefV8Handler {
|
|
|
|
public:
|
|
|
|
V8Handler() {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool Execute(const CefString& name,
|
|
|
|
CefRefPtr<CefV8Value> object,
|
|
|
|
const CefV8ValueList& arguments,
|
|
|
|
CefRefPtr<CefV8Value>& retval,
|
|
|
|
CefString& exception) {
|
|
|
|
if (name == kRunPerfTest) {
|
|
|
|
if (arguments.size() == 1 && arguments[0]->IsString()) {
|
|
|
|
// Run the specified perf test.
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
std::string test = arguments[0]->GetStringValue();
|
|
|
|
for (size_t i = 0; i < kPerfTestsCount; ++i) {
|
|
|
|
if (test == kPerfTests[i].name) {
|
|
|
|
// Execute the test.
|
|
|
|
int64 delta = kPerfTests[i].test(kPerfTests[i].iterations);
|
|
|
|
|
|
|
|
retval = CefV8Value::CreateInt(delta);
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
std::string msg = "Unknown test: ";
|
|
|
|
msg.append(test);
|
|
|
|
exception = msg;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
exception = "Invalid function parameters";
|
|
|
|
}
|
|
|
|
} else if (name == kGetPerfTests) {
|
|
|
|
// Retrieve the list of perf tests.
|
|
|
|
retval = CefV8Value::CreateArray(kPerfTestsCount);
|
|
|
|
for (size_t i = 0; i < kPerfTestsCount; ++i) {
|
|
|
|
CefRefPtr<CefV8Value> val = CefV8Value::CreateArray(2);
|
|
|
|
val->SetValue(0, CefV8Value::CreateString(kPerfTests[i].name));
|
|
|
|
val->SetValue(1, CefV8Value::CreateUInt(kPerfTests[i].iterations));
|
|
|
|
retval->SetValue(i, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
IMPLEMENT_REFCOUNTING(V8Handler);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Handle bindings in the render process.
|
|
|
|
class RenderDelegate : public ClientApp::RenderDelegate {
|
|
|
|
public:
|
|
|
|
RenderDelegate() {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void OnContextCreated(CefRefPtr<ClientApp> app,
|
|
|
|
CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefV8Context> context) OVERRIDE {
|
|
|
|
CefRefPtr<CefV8Value> object = context->GetGlobal();
|
|
|
|
|
|
|
|
CefRefPtr<CefV8Handler> handler = new V8Handler();
|
|
|
|
|
|
|
|
// Bind test functions.
|
|
|
|
object->SetValue(kGetPerfTests,
|
|
|
|
CefV8Value::CreateFunction(kGetPerfTests, handler),
|
|
|
|
V8_PROPERTY_ATTRIBUTE_READONLY);
|
|
|
|
object->SetValue(kRunPerfTest,
|
|
|
|
CefV8Value::CreateFunction(kRunPerfTest, handler),
|
|
|
|
V8_PROPERTY_ATTRIBUTE_READONLY);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
IMPLEMENT_REFCOUNTING(RenderDelegate);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
void CreateRequestDelegates(ClientHandler::RequestDelegateSet& delegates) {
|
|
|
|
delegates.insert(new RequestDelegate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateRenderDelegates(ClientApp::RenderDelegateSet& delegates) {
|
|
|
|
delegates.insert(new RenderDelegate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RunTest(CefRefPtr<CefBrowser> browser) {
|
|
|
|
// Load the test URL.
|
|
|
|
browser->GetMainFrame()->LoadURL(kTestUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace performance_test
|