# @ohos.hichecker The **hichecker** module is provided for you to check issues that may be easily ignored during development of OpenHarmony applications (including system-built and third-party applications). Such issues include calling of time-consuming functions by key application threads, event distribution and execution timeout in application processes, and ability resource leakage in application processes. The issues are recorded in logs or lead to process crashes explicitly so that you can find and rectify them. > **NOTE**
> The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version. ## Modules to Import ```js import hichecker from '@ohos.hichecker'; ``` ## Constant Provides the constants of all rule types. **System capability**: SystemCapability.HiviewDFX.HiChecker | Name | Type| Description | | ---------------------------------- | -------- | ------------------------------------------------------ | | RULE_CAUTION_PRINT_LOG | bigint | Alarm rule, which is programmed to print a log when an alarm is generated. | | RULE_CAUTION_TRIGGER_CRASH | bigint | Alarm rule, which is programmed to force the application to exit when an alarm is generated. | | RULE_THREAD_CHECK_SLOW_PROCESS | bigint | Caution rule, which is programmed to detect whether any time-consuming function is invoked. | | RULE_CHECK_ABILITY_CONNECTION_LEAK | bigint | Caution rule, which is programmed to detect whether ability leakage has occurred. | ## hichecker.addCheckRule9+ ## hichecker.addRule addCheckRule(rule: bigint): void Adds one or more rules. HiChecker detects unexpected operations or gives feedback based on the added rules. **System capability**: SystemCapability.HiviewDFX.HiChecker **Parameters** | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ---------------- | | rule | bigint | Yes | Rule to be added.| **Example** ```js try { // Add a rule. hichecker.addCheckRule(hichecker.RULE_CAUTION_PRINT_LOG);} // Add multiple rules. hichecker.addCheckRule( hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH); catch (err) { console.error(`code: ${err.code}, message: ${err.message}`); } ``` ## hichecker.removeCheckRule9+ removeCheckRule(rule: bigint): void Removes one or more rules. The removed rules will become ineffective. **System capability**: SystemCapability.HiviewDFX.HiChecker **Parameters** | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ---------------- | | rule | bigint | Yes | Rule to be removed.| **Example** ```js try { // Remove a rule. hichecker.removeCheckRule(hichecker.RULE_CAUTION_PRINT_LOG); // Remove multiple rules. hichecker.removeCheckRule( hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH); catch (err) { console.error(`code: ${err.code}, message: ${err.message}`); } ``` ## hichecker.containsCheckRule9+ containsCheckRule(rule: bigint): boolean Checks whether the specified rule exists in the collection of added rules. If the rule is of the thread level, this operation is performed only on the current thread. **System capability**: SystemCapability.HiviewDFX.HiChecker **Parameters** | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ---------------- | | rule | bigint | Yes | Rule to be checked.| **Return value** | Type | Description | | ------- | ---------------------------------------------------------- | | boolean | Returns **true** if the rule exists in the collection of added rules; returns **false** otherwise.| **Example** ```js try { // Add a rule. hichecker.addCheckRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS); // Check whether the added rule exists in the collection of added rules. hichecker.containsCheckRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS); // return true; hichecker.containsCheckRule(hichecker.RULE_CAUTION_PRINT_LOG); // return false; catch (err) { console.error(`code: ${err.code}, message: ${err.message}`); } ``` ## hichecker.addRule(deprecated) ## hichecker.addRule > **NOTE**
This API is deprecated since API version 9. You are advised to use [hichecker.addCheckRule](#hicheckeraddcheckrule9) instead. addRule(rule: bigint): void Adds one or more rules. HiChecker detects unexpected operations or gives feedback based on the added rules. **System capability**: SystemCapability.HiviewDFX.HiChecker **Parameters** | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ---------------- | | rule | bigint | Yes | Rule to be added.| **Example** ```js // Add a rule. hichecker.addRule(hichecker.RULE_CAUTION_PRINT_LOG); // Add multiple rules. hichecker.addRule( hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH); ``` ## hichecker.removeRule(deprecated) removeRule(rule: bigint): void > **NOTE**
This API is deprecated since API version 9. You are advised to use [hichecker.removeCheckRule](#hicheckerremovecheckrule9) instead. Removes one or more rules. The removed rules will become ineffective. **System capability**: SystemCapability.HiviewDFX.HiChecker **Parameters** | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ---------------- | | rule | bigint | Yes | Rule to be removed.| **Example** ```js // Remove a rule. hichecker.removeRule(hichecker.RULE_CAUTION_PRINT_LOG); // Remove multiple rules. hichecker.removeRule( hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH); ``` ## hichecker.getRule getRule(): bigint Obtains a collection of thread, process, and alarm rules that have been added. **System capability**: SystemCapability.HiviewDFX.HiChecker **Return value** | Type | Description | | ------ | ---------------------- | | bigint | Collection of added rules.| **Example** ```js // Add a rule. hichecker.addRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS); // Obtain the collection of added rules. hichecker.getRule(); // return 1n; ``` ## hichecker.contains(deprecated) contains(rule: bigint): boolean > **NOTE**
This API is deprecated since API version 9. You are advised to use [hichecker.containsCheckRule](#hicheckercontainscheckrule9) instead. Checks whether the specified rule exists in the collection of added rules. If the rule is of the thread level, this operation is performed only on the current thread. **System capability**: SystemCapability.HiviewDFX.HiChecker **Parameters** | Name| Type | Mandatory| Description | | ------ | ------ | ---- | ---------------- | | rule | bigint | Yes | Rule to be checked.| **Return value** | Type | Description | | ------- | ---------------------------------------------------------- | | boolean | Returns **true** if the rule exists in the collection of added rules; returns **false** otherwise.| **Example** ```js // Add a rule. hichecker.addRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS); // Check whether the added rule exists in the collection of added rules. hichecker.contains(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS); // return true; hichecker.contains(hichecker.RULE_CAUTION_PRINT_LOG); // return false; ```