* Copyright (c) 2025 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "ecmascript/ohos/js_pandafile_snapshot_interfaces.h"
#include "ecmascript/jspandafile/js_pandafile_snapshot.h"
#include "ecmascript/ohos/ohos_version_info_tools.h"
#include "ecmascript/platform/filesystem.h"
#include "ecmascript/runtime.h"
#include "ecmascript/snapshot/common/modules_snapshot_helper.h"
namespace panda::ecmascript::ohos {
void JSPandaFileSnapshotInterfaces::Serialize(const EcmaVM *vm, const CString &path)
{
LOG_ECMA(DEBUG) << "PandaFileSnapshotInterfaces::Serialize: " << path;
ECMA_BYTRACE_NAME(HITRACE_LEVEL_COMMERCIAL, HITRACE_TAG_ARK, "PandaFileSnapshotInterfaces::Serialize", "");
if (ModulesSnapshotHelper::IsPandafileSnapshotDisabled(path)) {
LOG_ECMA(DEBUG) << "Serialize: PandaFile Snapshot is not enabled";
ModulesSnapshotHelper::HandleCorruptedFile(path, CString(JSPandaFileSnapshot::JSPANDAFILE_FILE_NAME));
return;
}
CString version = OhosVersionInfoTools::GetRomVersion();
if (version.empty()) {
LOG_ECMA(DEBUG) << "PandaFileSnapshotInterfaces::Serialize rom version is empty";
return;
}
if (!ecmascript::Runtime::GetInstance()->IsMainProcess()) {
LOG_ECMA(DEBUG) << "PandaFileSnapshotInterfaces::Serialize skiped in child process";
return;
}
ModulesSnapshotHelper::MarkJSPandaFileSnapshotLoaded();
JSPandaFileSnapshot::PostWriteDataToFileJob(vm, path, version);
}
}