mirror of
https://github.com/openharmony/ark_js_runtime.git
synced 2026-07-25 14:05:38 -04:00
7ffcc4b20f
Signed-off-by: zhangyukun <zhangyukun8@huawei.com>
84 lines
2.5 KiB
C++
84 lines
2.5 KiB
C++
/*
|
|
* 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 ECMASCRIPT_HPROF_STRING_HASHMAP_H
|
|
#define ECMASCRIPT_HPROF_STRING_HASHMAP_H
|
|
|
|
#include "ecmascript/js_thread.h"
|
|
#include "ecmascript/mem/c_containers.h"
|
|
#include "ecmascript/mem/c_string.h"
|
|
#include "ecmascript/mem/heap.h"
|
|
#include "os/mem.h"
|
|
|
|
namespace panda::ecmascript {
|
|
using StringKey = uint64_t;
|
|
using StringId = uint64_t;
|
|
|
|
// An Implementation for Native StringTable without Auto Mem-Management
|
|
// To make sure when using String, it still stays where it was.
|
|
class StringHashMap {
|
|
public:
|
|
explicit StringHashMap(const Heap *heap) : heap_(heap)
|
|
{
|
|
ASSERT(heap_ != nullptr);
|
|
}
|
|
~StringHashMap()
|
|
{
|
|
Clear();
|
|
}
|
|
NO_MOVE_SEMANTIC(StringHashMap);
|
|
NO_COPY_SEMANTIC(StringHashMap);
|
|
/*
|
|
* The ID is the seat number in JSON file Range from 0~string_table_.size()
|
|
*/
|
|
StringId GetStringId(const CString *string) const;
|
|
/*
|
|
* Get all keys sorted by insert order
|
|
*/
|
|
const CVector<StringKey> &GetOrderedKeyStorage() const
|
|
{
|
|
return orderedKey_;
|
|
}
|
|
/*
|
|
* Get string by its hash key
|
|
*/
|
|
CString *GetStringByKey(StringKey key) const;
|
|
size_t GetCapcity() const
|
|
{
|
|
ASSERT(orderedKey_.size() == hashmap_.size());
|
|
return orderedKey_.size();
|
|
}
|
|
/*
|
|
* For external call to use this StringTable
|
|
*/
|
|
CString *GetString(CString as);
|
|
|
|
private:
|
|
StringKey GenerateStringKey(const CString *string) const;
|
|
CString *FindOrInsertString(CString *string);
|
|
CString *FormatString(CString *string) const;
|
|
/*
|
|
* Free all memory
|
|
*/
|
|
void Clear();
|
|
const Heap *heap_;
|
|
CVector<StringKey> orderedKey_; // Used for Serialize Order
|
|
size_t index_{2}; // 2: Offset the String-Table Header
|
|
CUnorderedMap<StringKey, StringId> indexMap_;
|
|
CUnorderedMap<StringKey, CString *> hashmap_;
|
|
};
|
|
} // namespace panda::ecmascript
|
|
#endif // ECMASCRIPT_HPROF_STRING_HASHMAP_H
|