platform_system_core/libbinderwrapper/binder_wrapper.cc
Alex Vakulenko 08c9891c9c libbinderwrapper: Add BinderWrapper::GetOrCreateInstance()
In libraries relying on binder it is useful to be able to obtain an
existing copy of BinderWrapper or create one if it doesn't exist.

This allows to abstract the actual RPC (binder) from clients who have
no other dependencies on this RPC.

BUG: 23782171
Change-Id: Ie775d3d8ab83d75e38abc7e1385eb39a363555ef
2016-01-04 12:56:27 -08:00

60 lines
1.6 KiB
C++

/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <binderwrapper/binder_wrapper.h>
#include <base/logging.h>
#include "real_binder_wrapper.h"
namespace android {
// Singleton instance.
BinderWrapper* BinderWrapper::instance_ = nullptr;
// static
void BinderWrapper::Create() {
CHECK(!instance_) << "Already initialized; missing call to Destroy()?";
instance_ = new RealBinderWrapper();
}
// static
void BinderWrapper::InitForTesting(BinderWrapper* wrapper) {
CHECK(!instance_) << "Already initialized; missing call to Destroy()?";
instance_ = wrapper;
}
// static
void BinderWrapper::Destroy() {
CHECK(instance_) << "Not initialized; missing call to Create()?";
delete instance_;
instance_ = nullptr;
}
// static
BinderWrapper* BinderWrapper::Get() {
CHECK(instance_) << "Not initialized; missing call to Create()?";
return instance_;
}
// static
BinderWrapper* BinderWrapper::GetOrCreateInstance() {
if (!instance_)
instance_ = new RealBinderWrapper();
return instance_;
}
} // namespace android