1# Development of Application Recovery 2 3## Overview 4 5During application running, some unexpected behaviors are inevitable. For example, unprocessed exceptions and errors are thrown, and the call or running constraints of the recovery framework are violated. 6 7Process exit is treated as the default exception handling method. However, if user data is generated during application use, process exit may interrupt user operations and cause data loss. 8If the [application recovery](#available-apis) function is enabled in [AbilityStage](../reference/apis-ability-kit/js-apis-app-ability-abilityStage.md) and temporary data is saved, the previous application state and data will be restored upon next startup in the case of an abnormal exit, providing more consistent user experience. The application state includes two parts, namely, the page stack and the data saved in **onSaveState**. 9 10In API version 9, application recovery is supported only for a single ability of the application developed using the stage model. Application state saving and automatic restart are performed when a JsError occurs. 11 12In API version 10, application recovery is applicable to multiple abilities of an application developed using the stage model. Application state storage and restore are performed when an AppFreeze occurs. If an application is killed in control mode, the application state will be restored upon next startup. 13 14## Available APIs 15 16The application recovery APIs are provided by the **appRecovery** module, which can be imported via **import**. For details, see [Development Example](#development-example). 17 18### Application Recovery APIs 19 20| API | Description | 21| ------------------------------------------------------------ | ---------------------------------------------------- | 22| enableAppRecovery(restart?: RestartFlag, saveOccasion?: SaveOccasionFlag, saveMode?: SaveModeFlag) : void;<sup>9+</sup> | Enables application recovery. After this API is called, the first ability that is displayed when the application is started from the initiator can be restored.| 23| saveAppState(): boolean;<sup>9+</sup> | Saves the state of the ability that supports recovery in the current application.| 24| restartApp(): void;<sup>9+</sup> | Restarts the current process and starts the ability specified by **setRestartWant**. If no ability is specified, a foreground ability that supports recovery is restarted.| 25| saveAppState(context?: UIAbilityContext): boolean;<sup>10+</sup> | Saves the ability state specified by **Context**.| 26| setRestartWant(want: Want): void;<sup>10+</sup> | Sets the abilities to restart when **restartApp** is actively called and **RestartFlag** is not **NO_RESTART**. The abilities must be under the same bundle name and must be a **UIAbility**.| 27 28No error will be thrown if the preceding APIs are used in the troubleshooting scenario. The following are some notes on API usage: 29 30**enableAppRecovery**: This API should be called during application initialization. For example, you can call this API in **onCreate** of **AbilityStage**. For details, see [Parameter Description](../reference/apis-ability-kit/js-apis-app-ability-appRecovery.md). 31 32**saveAppState**: After this API is called, the recovery framework invokes **onSaveState** for all abilities that support recovery in the current process. If you choose to save data in **onSaveState**, the related data and ability page stack are persistently stored in the local cache of the application. To save data of the specified ability, you need to specify the context corresponding to that ability. 33 34**setRestartWant**: This API specifies the ability to be restarted by **appRecovery**. 35 36**restartApp**: After this API is called, the recovery framework kills the current process and restarts the ability specified by **setRestartWant**, with **APP_RECOVERY** set as the startup cause. In API version 9 and scenarios where an ability is not specified by **setRestartWant**, the last foreground ability that supports recovery is started. If the no foreground ability supports recovery, the application crashes. If a saved state is available for the restarted ability, the saved state is passed as the **wantParam** attribute in the **want** parameter of the ability's **onCreate** callback. The interval between two restarts must be greater than 1 minute. If this API is called repeatedly within 1 minute, the application exits but does not restart. The behavior of automatic restart is the same as that of proactive restart. 37 38### Application State Management 39Since API version 10, application recovery is not limited to automatic restart in the case of an exception. Therefore, you need to understand when the application will load the saved state. 40If the last exit of an application is not initiated by a user and a saved state is available for recovery, the startup reason is set to **APP_RECOVERY** when the application is started by the user next time, and the recovery state of the application is cleared. 41The application recovery status flag is set when **saveAppState** is actively or passively called. The flag is cleared when the application exits normally or the saved state is consumed. (A normal exit is usually triggered by pressing the back key or clearing recent tasks.) 42 43 44 45### Application State Saving and Restore 46API version 10 or later supports saving of the application state when an application is suspended. If a JsError occurs, **onSaveState** is called in the main thread. If an AppFreeze occurs, however, the main thread may be suspended, and therefore **onSaveState** is called in a non-main thread. The following figure shows the main service flow. 47 48 49When the application is suspended, the callback is not executed in the JS thread. Therefore, you are advised not to use the imported dynamic Native library or access the **thread_local** object created by the main thread in the code of the **onSaveState** callback. 50 51### Framework Fault Management 52 53Fault management is an important way for applications to deliver a better user experience. The application framework offers three methods for application fault management: fault listening, fault rectification, and fault query. 54 55- Fault listening refers to the process of registering an [ErrorObserver](../reference/apis-ability-kit/js-apis-inner-application-errorObserver.md) via [errorManager](../reference/apis-ability-kit/js-apis-app-ability-errorManager.md), listening for faults, and notifying the listener of the faults. 56 57- Fault rectification refers to the process of restoring the application state and data through [appRecovery](../reference/apis-ability-kit/js-apis-app-ability-appRecovery.md). 58 59- Fault query is the process of calling APIs of [faultLogger](../reference/apis-performance-analysis-kit/js-apis-faultLogger.md) to obtain the fault information. 60 61The figure below does not illustrate the time when [faultLogger](../reference/apis-performance-analysis-kit/js-apis-faultLogger.md) is called. You can refer to the [LastExitReason](../reference/apis-ability-kit/js-apis-app-ability-abilityConstant.md#abilityconstantlastexitreason) passed during application initialization to determine whether to call [faultLogger](../reference/apis-performance-analysis-kit/js-apis-faultLogger.md) to query information about the previous fault. 62 63It is recommended that you call [errorManager](../reference/apis-ability-kit/js-apis-app-ability-errorManager.md) to handle the exception. After the processing is complete, you can call the **saveAppState** API and restart the application. 64If you do not register an [ErrorObserver](../reference/apis-ability-kit/js-apis-inner-application-errorObserver.md) instance or enable application recovery, the application process will exit according to the default processing logic of the system. Users can restart the application from the home screen. 65If you have enabled application recovery, the recovery framework first checks whether application state saving is supported and whether the application state saving is enabled. If so, the recovery framework invokes [onSaveState](../reference/apis-ability-kit/js-apis-app-ability-uiAbility.md#uiabilityonsavestate) of the [ability](../reference/apis-ability-kit/js-apis-app-ability-uiAbility.md). Finally, the application is restarted. 66 67### Supported Application Recovery Scenarios 68 69Common fault types include JavaScript application crash, application freezing, and C++ application crash. Generally, an application is closed when a crash occurs. Application freezing occurs when the application does not respond. The fault type can be ignored for the upper layer of an application. The recovery framework implements fault management in different scenarios based on the fault type. 70 71| Fault | Fault Listening | State Saving| Automatic Restart| Log Query| 72| ----------|--------- |--------- |--------- |--------- | 73| [JS_CRASH](../reference/apis-performance-analysis-kit/js-apis-faultLogger.md#faulttype) | Supported|Supported|Supported|Supported| 74| [APP_FREEZE](../reference/apis-performance-analysis-kit/js-apis-faultLogger.md#faulttype) | Not supported|Supported|Supported|Supported| 75| [CPP_CRASH](../reference/apis-performance-analysis-kit/js-apis-faultLogger.md#faulttype) | Not supported|Not supported|Not supported|Supported| 76 77**State Saving** in the table header means saving of the application state when a fault occurs. To protect user data as much as possible when an AppFreeze occurs, you can adopt either the periodic or automatic way, and the latter will save user data when an ability is switched to the background. 78 79 80 81## Development Example 82 83### Enabling Application Recovery 84 85 Enable **appRecovery** during application initialization. The following is an example of **AbilityStage**: 86 87```ts 88import { AbilityStage, appRecovery } from '@kit.AbilityKit'; 89 90export default class MyAbilityStage extends AbilityStage { 91 onCreate() { 92 console.info("[Demo] MyAbilityStage onCreate"); 93 appRecovery.enableAppRecovery(appRecovery.RestartFlag.ALWAYS_RESTART, 94 appRecovery.SaveOccasionFlag.SAVE_WHEN_ERROR | appRecovery.SaveOccasionFlag.SAVE_WHEN_BACKGROUND, 95 appRecovery.SaveModeFlag.SAVE_WITH_FILE); 96 } 97} 98``` 99### Enabling Application Recovery for the Specified Abilities 100Generally, the ability configuration list is named **module.json5**. 101```json 102{ 103 "abilities": [ 104 { 105 "name": "EntryAbility", 106 "recoverable": true, 107 }] 108} 109 110``` 111 112### Saving and Restoring Data 113 114After enabling **appRecovery**, you can use this function by either actively or passively saving the application state and restoring data in the ability. 115The following is an example of **EntryAbility**: 116 117#### Importing the Service Package 118 119```ts 120import { AbilityConstant, appRecovery, errorManager } from '@kit.AbilityKit'; 121``` 122 123#### Actively Saving the Application State and Restoring Data 124 125- Define and register the [ErrorObserver](../reference/apis-ability-kit/js-apis-inner-application-errorObserver.md) callback. For details about its usage, see [errorManager](../reference/apis-ability-kit/js-apis-app-ability-errorManager.md). 126 127```ts 128import { appRecovery, errorManager, UIAbility } from '@kit.AbilityKit'; 129import { window } from '@kit.ArkUI'; 130 131let registerId = -1; 132let callback: errorManager.ErrorObserver = { 133 onUnhandledException(errMsg) { 134 console.log(errMsg); 135 appRecovery.saveAppState(); 136 appRecovery.restartApp(); 137 } 138} 139 140export default class EntryAbility extends UIAbility { 141 onWindowStageCreate(windowStage: window.WindowStage) { 142 // Main window is created, set main page for this ability 143 console.log("[Demo] EntryAbility onWindowStageCreate"); 144 registerId = errorManager.on('error', callback); 145 146 windowStage.loadContent("pages/index", (err, data) => { 147 if (err.code) { 148 console.error('Failed to load the content. Cause:' + JSON.stringify(err)); 149 return; 150 } 151 console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data)); 152 }) 153 } 154} 155``` 156 157- Save data. 158 159After the callback triggers **appRecovery.saveAppState()**, **onSaveState(state, wantParams)** of **EntryAbility** is triggered. 160 161```ts 162import { AbilityConstant, UIAbility } from '@kit.AbilityKit'; 163 164export default class EntryAbility extends UIAbility { 165 onSaveState(state:AbilityConstant.StateType, wantParams: Record<string, Object>) { 166 // Ability has called to save app data 167 console.log("[Demo] EntryAbility onSaveState"); 168 wantParams["myData"] = "my1234567"; 169 return AbilityConstant.OnSaveResult.ALL_AGREE; 170 } 171} 172``` 173 174- Restore data. 175 176After the callback triggers **appRecovery.restartApp()**, the application is restarted. After the restart, **onCreate(want, launchParam)** of **EntryAbility** is called, and the saved data is stored in **parameters** of **want**. 177 178```ts 179import { AbilityConstant, UIAbility, Want } from '@kit.AbilityKit'; 180 181let abilityWant: Want; 182 183export default class EntryAbility extends UIAbility { 184 storage: LocalStorage | undefined = undefined; 185 186 onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) { 187 console.log("[Demo] EntryAbility onCreate"); 188 abilityWant = want; 189 if (launchParam.launchReason == AbilityConstant.LaunchReason.APP_RECOVERY) { 190 this.storage = new LocalStorage(); 191 if (want.parameters) { 192 let recoveryData = want.parameters["myData"]; 193 this.storage.setOrCreate("myData", recoveryData); 194 this.context.restoreWindowStage(this.storage); 195 } 196 } 197 } 198} 199``` 200 201- Unregister the **ErrorObserver** callback. 202 203```ts 204import { errorManager, UIAbility } from '@kit.AbilityKit'; 205 206let registerId = -1; 207 208export default class EntryAbility extends UIAbility { 209 onWindowStageDestroy() { 210 // Main window is destroyed, release UI related resources 211 console.log("[Demo] EntryAbility onWindowStageDestroy"); 212 213 errorManager.off('error', registerId, (err) => { 214 console.error("[Demo] err:", err); 215 }); 216 } 217} 218``` 219 220#### Passively Saving the Application State and Restoring Data 221 222This is triggered by the recovery framework. You do not need to register an **ErrorObserver** callback. You only need to implement **onSaveState** for application state saving and **onCreate** for data restore. 223 224```ts 225import { AbilityConstant, UIAbility, Want } from '@kit.AbilityKit'; 226 227let abilityWant: Want; 228 229export default class EntryAbility extends UIAbility { 230 storage: LocalStorage | undefined = undefined 231 onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) { 232 console.log("[Demo] EntryAbility onCreate"); 233 abilityWant = want; 234 if (launchParam.launchReason == AbilityConstant.LaunchReason.APP_RECOVERY) { 235 this.storage = new LocalStorage(); 236 if (want.parameters) { 237 let recoveryData = want.parameters["myData"]; 238 this.storage.setOrCreate("myData", recoveryData); 239 this.context.restoreWindowStage(this.storage); 240 } 241 } 242 } 243 244 onSaveState(state:AbilityConstant.StateType, wantParams: Record<string, Object>) { 245 // Ability has called to save app data 246 console.log("[Demo] EntryAbility onSaveState"); 247 wantParams["myData"] = "my1234567"; 248 return AbilityConstant.OnSaveResult.ALL_AGREE; 249 } 250} 251``` 252 253#### Restart Flag for the Failed Ability 254 255If the failed ability is restarted again, the [ABILITY_RECOVERY_RESTART](../reference/apis-ability-kit/js-apis-app-ability-wantConstant.md#params) flag will be added as a **parameters** member for the **want** parameter in **onCreate** and its value is **true**. 256 257```ts 258import { AbilityConstant, UIAbility, Want, wantConstant } from '@kit.AbilityKit'; 259 260export default class EntryAbility extends UIAbility { 261 onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) { 262 if (want.parameters === undefined) { 263 return; 264 } 265 if (want.parameters[wantConstant.Params.ABILITY_RECOVERY_RESTART] != undefined && 266 want.parameters[wantConstant.Params.ABILITY_RECOVERY_RESTART] == true) { 267 console.log("This ability need to recovery"); 268 } 269 } 270} 271``` 272