blob: 762531067bc5e36a4c3d40698c576a94d0e13c66 [file] [log] [blame]
Daniel Rosenberg65f99c92018-08-28 01:58:49 -07001/*
2 * Copyright (C) 2018 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 _CHECKPOINT_H
18#define _CHECKPOINT_H
19
Weston Carvalho6ab20652024-12-03 15:21:45 -060020#include <android/system/vold/IVold.h>
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070021#include <binder/Status.h>
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070022#include <string>
23
24namespace android {
25namespace vold {
26
Daniel Rosenberg9b667fb2019-01-22 17:27:25 -080027android::binder::Status cp_supportsCheckpoint(bool& result);
28
Paul Lawrencec5c79c52019-03-18 13:36:40 -070029android::binder::Status cp_supportsBlockCheckpoint(bool& result);
30
31android::binder::Status cp_supportsFileCheckpoint(bool& result);
32
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070033android::binder::Status cp_startCheckpoint(int retry);
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070034
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070035android::binder::Status cp_commitChanges();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070036
Daniel Rosenberga59e4392019-03-20 17:02:47 -070037void cp_abortChanges(const std::string& message, bool retry);
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070038
Daniel Rosenbergd3992492018-10-02 17:40:44 -070039bool cp_needsRollback();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070040
41bool cp_needsCheckpoint();
42
David Anderson23850d32020-06-10 23:51:17 -070043bool cp_isCheckpointing();
44
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070045android::binder::Status cp_prepareCheckpoint();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070046
Daniel Rosenbergdda59812019-03-06 17:45:17 -080047android::binder::Status cp_restoreCheckpoint(const std::string& mountPoint, int count = 0);
Paul Lawrence1abb2fe2018-09-21 10:49:57 -070048
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070049android::binder::Status cp_markBootAttempt();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070050
Nikita Ioffea5798fc2019-10-11 16:38:21 +010051void cp_resetCheckpoint();
Weston Carvalho6ab20652024-12-03 15:21:45 -060052
53bool cp_registerCheckpointListener(
54 android::sp<android::system::vold::IVoldCheckpointListener> listener);
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070055} // namespace vold
56} // namespace android
57
58#endif