blob: 6f3acacffa788898897a6b1e5aa9799d0c0a0852 [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
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070020#include <binder/Status.h>
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070021#include <string>
22
23namespace android {
24namespace vold {
25
Daniel Rosenberg9b667fb2019-01-22 17:27:25 -080026android::binder::Status cp_supportsCheckpoint(bool& result);
27
Paul Lawrencec5c79c52019-03-18 13:36:40 -070028android::binder::Status cp_supportsBlockCheckpoint(bool& result);
29
30android::binder::Status cp_supportsFileCheckpoint(bool& result);
31
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070032android::binder::Status cp_startCheckpoint(int retry);
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070033
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070034android::binder::Status cp_commitChanges();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070035
Daniel Rosenberga59e4392019-03-20 17:02:47 -070036void cp_abortChanges(const std::string& message, bool retry);
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070037
Daniel Rosenbergd3992492018-10-02 17:40:44 -070038bool cp_needsRollback();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070039
40bool cp_needsCheckpoint();
41
David Anderson23850d32020-06-10 23:51:17 -070042bool cp_isCheckpointing();
43
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070044android::binder::Status cp_prepareCheckpoint();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070045
Daniel Rosenbergdda59812019-03-06 17:45:17 -080046android::binder::Status cp_restoreCheckpoint(const std::string& mountPoint, int count = 0);
Paul Lawrence1abb2fe2018-09-21 10:49:57 -070047
Daniel Rosenberg73680ec2018-10-10 18:52:04 -070048android::binder::Status cp_markBootAttempt();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070049
Nikita Ioffea5798fc2019-10-11 16:38:21 +010050void cp_resetCheckpoint();
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070051} // namespace vold
52} // namespace android
53
54#endif