Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 1 | /* |
| 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 Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 20 | #include <binder/Status.h> |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 21 | #include <string> |
| 22 | |
| 23 | namespace android { |
| 24 | namespace vold { |
| 25 | |
Daniel Rosenberg | 9b667fb | 2019-01-22 17:27:25 -0800 | [diff] [blame] | 26 | android::binder::Status cp_supportsCheckpoint(bool& result); |
| 27 | |
Paul Lawrence | c5c79c5 | 2019-03-18 13:36:40 -0700 | [diff] [blame] | 28 | android::binder::Status cp_supportsBlockCheckpoint(bool& result); |
| 29 | |
| 30 | android::binder::Status cp_supportsFileCheckpoint(bool& result); |
| 31 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 32 | android::binder::Status cp_startCheckpoint(int retry); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 33 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 34 | android::binder::Status cp_commitChanges(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 35 | |
Daniel Rosenberg | a59e439 | 2019-03-20 17:02:47 -0700 | [diff] [blame] | 36 | void cp_abortChanges(const std::string& message, bool retry); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 37 | |
Daniel Rosenberg | d399249 | 2018-10-02 17:40:44 -0700 | [diff] [blame] | 38 | bool cp_needsRollback(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 39 | |
| 40 | bool cp_needsCheckpoint(); |
| 41 | |
David Anderson | 23850d3 | 2020-06-10 23:51:17 -0700 | [diff] [blame] | 42 | bool cp_isCheckpointing(); |
| 43 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 44 | android::binder::Status cp_prepareCheckpoint(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 45 | |
Daniel Rosenberg | dda5981 | 2019-03-06 17:45:17 -0800 | [diff] [blame] | 46 | android::binder::Status cp_restoreCheckpoint(const std::string& mountPoint, int count = 0); |
Paul Lawrence | 1abb2fe | 2018-09-21 10:49:57 -0700 | [diff] [blame] | 47 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame] | 48 | android::binder::Status cp_markBootAttempt(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 49 | |
Nikita Ioffe | a5798fc | 2019-10-11 16:38:21 +0100 | [diff] [blame] | 50 | void cp_resetCheckpoint(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 51 | } // namespace vold |
| 52 | } // namespace android |
| 53 | |
| 54 | #endif |