Add --skip-ro-app option (#396) submit/tizen_6.0/20220329.055003
author조웅석/Common Platform Lab(SR)/삼성전자 <ws77.cho@samsung.com>
Tue, 29 Mar 2022 04:36:50 +0000 (13:36 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 29 Mar 2022 04:36:50 +0000 (13:36 +0900)
The "--ni-regen-all-app" option performs AOTC again for all installed apps.
If the "--ni-regen-all-app" option is performed after FOTA (OTN),
an error may occur or unnecessary AOTC may be performed by running AOTC for an app installed in the RO area.

To avoid this situation, the "--skip-ro-app" option is added.
If this option is set, native image regenration for apps installed in the RO area is skipped.

Note! this option works with "--ni-regen-all-app" option only.

NativeLauncher/inc/ni_common.h
NativeLauncher/tool/dotnettool.cc
NativeLauncher/tool/ni_common.cc

index bdaba44..329f442 100644 (file)
@@ -30,6 +30,7 @@
 #define NI_FLAGS_APPNI                  0x0002
 #define NI_FLAGS_COMPATIBILITY          0x0004
 #define NI_FLAGS_VERBOSE                0x0008
+#define NI_FLAGS_SKIP_RO_APP            0x0010
 #define NI_FLAGS_INSTRUMENT             0x1000
 
 typedef std::function<void (std::string)> afterCreate;
index 4b9e579..225b0e3 100644 (file)
@@ -51,6 +51,8 @@ void DisplayUsage() {
                "                                   (replaces /r with /Trusted_Platform_Assemblies)\n"
                "       --verbose                 - Display verbose information\n"
                "       --instrument              - Generate an instrumented image for profiling (enable: /Tuning)\n"
+               "       --skip-ro-app             - Skip re-generate NI for apps installed RO area\n"
+               "                                   (This option works with --ni-regen-all-app only)\n"
                "\n"
                "Usage: dotnettool [options] [command] [arguments]\n"
                "\n"
@@ -99,6 +101,8 @@ int main(int argc, char* argv[])
                        flags |= NI_FLAGS_INSTRUMENT;
                } else if (!strncmp(*it, "--verbose", 9)) {
                        flags |= NI_FLAGS_VERBOSE;
+               } else if (!strncmp(*it, "--skip-ro-app", 13)) {
+                       flags |= NI_FLAGS_SKIP_RO_APP;
                } else {
                        args.push_back(*it);
                }
index 7e0dde0..e908b5f 100644 (file)
@@ -388,6 +388,18 @@ static int appAotCb(pkgmgrinfo_appinfo_h handle, void *userData)
                return -1;
        }
 
+       if ((*pFlags) & NI_FLAGS_SKIP_RO_APP) {
+               bool isSystem = false;
+               int ret = pkgmgrinfo_appinfo_is_system(handle, &isSystem);
+               if (ret != PMINFO_R_OK) {
+                       fprintf(stderr, "Failed to check that app is System or not\n");
+                       return -1;
+               }
+               if (isSystem) {
+                       return 0;
+               }
+       }
+
        if (removeNIUnderPkgRoot(pkgId) != NI_ERROR_NONE) {
                fprintf(stderr, "Failed to remove previous dlls from [%s]\n", pkgId);
                return -1;