55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
//
|
|
// Copyright (C) 2016 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 "shill/binder/binder_adaptor.h"
|
|
|
|
#include <string>
|
|
|
|
#include <utils/String16.h>
|
|
|
|
#include "android/system/connectivity/shill/IPropertyChangedCallback.h"
|
|
#include "shill/logging.h"
|
|
|
|
using android::sp;
|
|
using android::String16;
|
|
using android::system::connectivity::shill::IPropertyChangedCallback;
|
|
using std::string;
|
|
|
|
namespace shill {
|
|
|
|
namespace Logging {
|
|
static auto kModuleLogScope = ScopeLogger::kBinder;
|
|
static string ObjectID(BinderAdaptor* b) {
|
|
return "(binder_adaptor)";
|
|
}
|
|
} // namespace Logging
|
|
|
|
BinderAdaptor::BinderAdaptor(const string& id) : id_(id) {
|
|
SLOG(this, 2) << "BinderAdaptor: " << id;
|
|
}
|
|
|
|
void BinderAdaptor::AddPropertyChangedSignalHandler(
|
|
const sp<IPropertyChangedCallback>& property_changed_callback) {
|
|
property_changed_callbacks_.push_back(property_changed_callback);
|
|
}
|
|
|
|
void BinderAdaptor::SendPropertyChangedSignal(const string& name) {
|
|
for (const auto& callback : property_changed_callbacks_) {
|
|
callback->OnPropertyChanged(String16(name.c_str()));
|
|
}
|
|
}
|
|
|
|
} // namespace shill
|