mirror of
https://github.com/openharmony/ark_js_runtime.git
synced 2026-07-22 07:35:27 -04:00
7ffcc4b20f
Signed-off-by: zhangyukun <zhangyukun8@huawei.com>
121 lines
2.7 KiB
C++
121 lines
2.7 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_TOOLING_BASE_PT_SCRIPT_H
|
|
#define ECMASCRIPT_TOOLING_BASE_PT_SCRIPT_H
|
|
|
|
#include "libpandabase/macros.h"
|
|
#include "ecmascript/mem/c_string.h"
|
|
|
|
namespace panda::tooling::ecmascript {
|
|
using panda::ecmascript::CString;
|
|
|
|
enum class ScriptMatchType : uint8_t {
|
|
SCRIPT_ID,
|
|
URL,
|
|
FILE_NAME,
|
|
HASH,
|
|
};
|
|
|
|
class PtScript {
|
|
public:
|
|
PtScript(int32_t scriptId, CString fileName, CString url, CString source);
|
|
~PtScript() = default;
|
|
|
|
CString GetScriptId() const
|
|
{
|
|
return scriptId_;
|
|
}
|
|
|
|
void SetScriptId(const CString &scriptId)
|
|
{
|
|
scriptId_ = scriptId;
|
|
}
|
|
|
|
CString GetFileName() const
|
|
{
|
|
return fileName_;
|
|
}
|
|
|
|
void SetFileName(const CString &fileName)
|
|
{
|
|
fileName_ = fileName;
|
|
}
|
|
|
|
CString GetUrl() const
|
|
{
|
|
return url_;
|
|
}
|
|
|
|
void SetUrl(const CString &url)
|
|
{
|
|
url_ = url;
|
|
}
|
|
|
|
CString GetHash() const
|
|
{
|
|
return hash_;
|
|
}
|
|
|
|
void SetHash(const CString &hash)
|
|
{
|
|
hash_ = hash;
|
|
}
|
|
|
|
CString GetScriptSource() const
|
|
{
|
|
return scriptSource_;
|
|
}
|
|
|
|
void SetScriptSource(const CString &scriptSource)
|
|
{
|
|
scriptSource_ = scriptSource;
|
|
}
|
|
|
|
CString GetSourceMapUrl() const
|
|
{
|
|
return sourceMapUrl_;
|
|
}
|
|
|
|
void SetSourceMapUrl(const CString &sourceMapUrl)
|
|
{
|
|
sourceMapUrl_ = sourceMapUrl;
|
|
}
|
|
|
|
int32_t GetEndLine() const
|
|
{
|
|
return endLine_;
|
|
}
|
|
|
|
void SetEndLine(int32_t endLine)
|
|
{
|
|
endLine_ = endLine;
|
|
}
|
|
|
|
private:
|
|
NO_COPY_SEMANTIC(PtScript);
|
|
NO_MOVE_SEMANTIC(PtScript);
|
|
|
|
CString scriptId_ {}; // start from 0, such as "0","1","2"...
|
|
CString fileName_ {}; // binary file name, such as xx.bin
|
|
CString url_ {}; // source file name, such as xx.js
|
|
CString hash_ {}; // js source file hash code
|
|
CString scriptSource_ {}; // js source code
|
|
CString sourceMapUrl_ {}; // source map url
|
|
int32_t endLine_ {0}; // total line number of source file
|
|
};
|
|
} // namespace panda::tooling::ecmascript
|
|
#endif
|