Llzrfix
fbb0ce77创建于 2024年8月28日历史提交
/*
 * Copyright (c) 2021 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 FOUNDATION_ACE_FRAMEWORKS_BRIDGE_COMMON_UTILS_SOURCE_MAP_H
#define FOUNDATION_ACE_FRAMEWORKS_BRIDGE_COMMON_UTILS_SOURCE_MAP_H

#include <cstdint>
#include <string>
#include <unordered_map>
#include <vector>

#include "base/memory/referenced.h"
#include "base/utils/macros.h"

namespace OHOS::Ace::Framework {

struct SourceMapInfo {
    int32_t beforeRow = 0;
    int32_t beforeColumn = 0;
    int32_t afterRow = 0;
    int32_t afterColumn = 0;
    int32_t sourcesVal = 0;
    int32_t namesVal = 0;
};

struct MappingInfo {
    int32_t row = 0;
    int32_t col = 0;
    std::string sources;
};

class ACE_FORCE_EXPORT RevSourceMap final : public Referenced {
public:
    MappingInfo Find(int32_t row, int32_t col, bool isColPrecise = true);
    std::string GetOriginalNames(const std::string& sourceCode, uint32_t& errorPos) const;
    static void ExtractKeyInfo(const std::string& sourceMap, std::vector<std::string>& sourceKeyInfo);
    void Init(const std::string& sourceMap);
    static void MergeInit(const std::string& sourceMap, RefPtr<RevSourceMap>& RevSourceMap);
    static void StageModeSourceMapSplit(
        const std::string& sourceMap, std::unordered_map<std::string, RefPtr<RevSourceMap>>& sourceMaps);

private:
    SourceMapInfo nowPos_;
    std::vector<std::string> files_;
    std::vector<std::string> sources_;
    std::vector<std::string> names_;
    std::vector<std::string> mappings_;
    std::vector<std::string> nameMap_;
    std::vector<SourceMapInfo> afterPos_;
    void HandleKeyInfo(const std::string& keyInfo, std::string& mark);
    static std::vector<std::string> HandleMappings(const std::string& mappings);
    static uint32_t Base64CharToInt(char charCode);
    static bool VlqRevCode(const std::string& vStr, std::vector<int32_t>& ans);
};

}  // namespace OHOS::Ace::Framework

#endif // FOUNDATION_ACE_FRAMEWORKS_BRIDGE_COMMON_UTILS_SOURCE_MAP_H