* Copyright (c) 2022-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.
*/
#ifndef ECMASCRIPT_MODULE_ACCESSOR_MODULE_DATA_ACCESSOR_H
#define ECMASCRIPT_MODULE_ACCESSOR_MODULE_DATA_ACCESSOR_H
#include <cstddef>
#include <cstdint>
#include <variant>
#include <vector>
#include "ecmascript/module/js_module_source_text.h"
#include "libpandabase/macros.h"
#include "libpandabase/utils/span.h"
namespace panda::ecmascript {
class ModuleDataAccessor {
public:
ModuleDataAccessor(const JSPandaFile *pandaFile, panda_file::File::EntityId module_data_id);
~ModuleDataAccessor() = default;
DEFAULT_MOVE_CTOR(ModuleDataAccessor);
DEFAULT_COPY_CTOR(ModuleDataAccessor);
NO_MOVE_OPERATOR(ModuleDataAccessor);
NO_COPY_OPERATOR(ModuleDataAccessor);
void EnumerateImportEntry(JSThread *thread, JSHandle<SourceTextModule> &moduleRecord);
void EnumerateLocalExportEntry(JSThread *thread, JSHandle<SourceTextModule> &moduleRecord);
void EnumerateIndirectExportEntry(JSThread *thread, JSHandle<SourceTextModule> &moduleRecord);
void EnumerateStarExportEntry(JSThread *thread, JSHandle<SourceTextModule> &moduleRecord);
JSHandle<TaggedArray> CreatEntries(JSThread *thread, uint32_t regularImportNum, SharedTypes sharedType);
panda_file::File::EntityId GetModuleDataId() const
{
return moduleDataId_;
}
const std::vector<uint32_t>& getModuleRequests() const
{
return moduleRequests_;
}
private:
void ReadRegularImportEntry(Span<const uint8_t> *sp, ObjectFactory *factory,
JSMutableHandle<JSTaggedValue> &importName,
JSMutableHandle<JSTaggedValue> &localName,
uint32_t &moduleRequestIdx);
void ReadNamespaceImportEntry(Span<const uint8_t> *sp, ObjectFactory *factory,
JSMutableHandle<JSTaggedValue> &localName,
uint32_t &moduleRequestIdx);
const JSPandaFile *pandaFile_;
panda_file::File::EntityId moduleDataId_;
uint32_t numModuleRequests_;
std::vector<uint32_t> moduleRequests_;
Span<const uint8_t> entryDataSp_ {nullptr, nullptr};
};
}
#endif