blob: bbbe5b6108af43aeff8c9479ec8310a34e60b276 [file] [log] [blame]
Christopher Wiley9e1eda92015-11-16 15:23:37 -08001//
2// Copyright (C) 2015 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#ifndef UPDATE_ENGINE_BINDER_SERVICE_H_
18#define UPDATE_ENGINE_BINDER_SERVICE_H_
19
20#include <vector>
21
22#include <utils/Errors.h>
23#include <utils/String16.h>
24#include <utils/StrongPointer.h>
25
26#include "android/os/BnUpdateEngine.h"
27#include "android/os/IUpdateEnginePayloadApplicationCallback.h"
28
29namespace chromeos_update_engine {
30
31class BinderService : public android::os::BnUpdateEngine {
32 public:
33 BinderService() = default;
34 virtual ~BinderService() = default;
35
Christopher Wiley09af8812015-11-19 08:12:33 -080036 android::binder::Status applyPayload(
Christopher Wiley9e1eda92015-11-16 15:23:37 -080037 const android::String16& url,
38 const std::vector<android::String16>& header_kv_pairs,
39 const android::sp<android::os::IUpdateEnginePayloadApplicationCallback>&
40 callback,
41 int32_t* return_value) override;
42
Christopher Wiley09af8812015-11-19 08:12:33 -080043 android::binder::Status suspend() override;
Christopher Wiley9e1eda92015-11-16 15:23:37 -080044
Christopher Wiley09af8812015-11-19 08:12:33 -080045 android::binder::Status resume() override;
Christopher Wiley9e1eda92015-11-16 15:23:37 -080046
Christopher Wiley09af8812015-11-19 08:12:33 -080047 android::binder::Status cancel() override;
Christopher Wiley9e1eda92015-11-16 15:23:37 -080048}; // class BinderService
49
50} // namespace chromeos_update_engine
51
52#endif // UPDATE_ENGINE_BINDER_SERVICE_H_