1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
// Copyright 2014 The Chromium 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 "chrome/browser/translate/cld_data_harness_factory.h"
#include "base/lazy_instance.h"
#include "chrome/browser/translate/component_cld_data_harness.h"
#include "chrome/browser/translate/standalone_cld_data_harness.h"
#include "components/translate/content/browser/browser_cld_utils.h"
#include "components/translate/content/common/cld_data_source.h"
namespace {
// This is the global instance managed by Get/Set
test::CldDataHarnessFactory* g_instance = NULL;
// The following three instances are used to "cheat" in Create(). Each of them
// is just an instance of this class, but because they are singletons they can
// be compared using "this" to pick different behaviors in Create() at runtime.
// This avoids the need to explicitly define boilerplate classes with no
// significant value.
//
// Embedders can of course specify a different implementation of this class
// using Set(CldDataHarnessFactory*), in which case Create() will have whatever
// custom behavior is desired.
base::LazyInstance<test::CldDataHarnessFactory>::Leaky g_wrapped_component =
LAZY_INSTANCE_INITIALIZER;
base::LazyInstance<test::CldDataHarnessFactory>::Leaky g_wrapped_standalone =
LAZY_INSTANCE_INITIALIZER;
base::LazyInstance<test::CldDataHarnessFactory>::Leaky g_wrapped_static =
LAZY_INSTANCE_INITIALIZER;
} // namespace
namespace test {
scoped_ptr<CldDataHarness> CldDataHarnessFactory::CreateCldDataHarness() {
// Cheat: Since the three "canned" implementations are all well-known, just
// check to see if "this" points to one of the singletons and then return
// the right answer. Embedder-provided CldDataHarnessFactory implementations
// will of course not have this behavior.
if (this == GetStaticDataHarnessFactory()) {
return CldDataHarness::CreateStaticDataHarness();
}
if (this == GetStandaloneDataHarnessFactory()) {
return CldDataHarness::CreateStandaloneDataHarness();
}
if (this == GetComponentDataHarnessFactory()) {
return CldDataHarness::CreateComponentDataHarness();
}
// Embedder did something wrong, failed to override this method.
NOTREACHED() << "Subclass failed to override CreateCldDataHarness()";
return CldDataHarness::CreateStaticDataHarness();
}
CldDataHarnessFactory* CldDataHarnessFactory::Get() {
// First honor any factory set by the embedder.
if (g_instance != NULL) return g_instance;
// Fall back to defaults: try to find a compatible harness for the currently-
// configured CldDataSource.
translate::BrowserCldUtils::ConfigureDefaultDataProvider();
if (translate::CldDataSource::IsUsingStaticDataSource()) {
return GetStaticDataHarnessFactory();
}
if (translate::CldDataSource::IsUsingComponentDataSource()) {
return GetComponentDataHarnessFactory();
}
if (translate::CldDataSource::IsUsingStandaloneDataSource()) {
return GetStandaloneDataHarnessFactory();
}
// The CldDataSource must have been set by an embedder, but the embedder has
// not configured a corresponding CldDataHarnessFactory. This is an error; the
// embedder must specify a harness that works with the corresponding
// CldDataSource. Crash for debug builds and return a no-op harness for
// everything else.
NOTREACHED() << "No CLD data harness factory was configured!";
return GetStaticDataHarnessFactory();
}
// static
void CldDataHarnessFactory::Set(CldDataHarnessFactory* instance) {
g_instance = instance;
}
// static
CldDataHarnessFactory*
CldDataHarnessFactory::GetStaticDataHarnessFactory() {
return &g_wrapped_static.Get();
}
// static
CldDataHarnessFactory*
CldDataHarnessFactory::GetStandaloneDataHarnessFactory() {
return &g_wrapped_standalone.Get();
}
// static
CldDataHarnessFactory*
CldDataHarnessFactory::GetComponentDataHarnessFactory() {
return &g_wrapped_component.Get();
}
} // namespace test
|