Files
ark_js_runtime/ecmascript/js_vm/main.cpp
T
zhangyukun 7ffcc4b20f Sync js_runtime to openharmony
Signed-off-by: zhangyukun <zhangyukun8@huawei.com>
2021-09-08 09:20:53 +08:00

146 lines
4.8 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.
*/
#include <chrono>
#include <ctime>
#include <iostream>
#include <limits>
#include <signal.h> // NOLINTNEXTLINE(modernize-deprecated-headers)
#include <vector>
#include "ecmascript/ecma_language_context.h"
#include "ecmascript/ecma_string.h"
#include "ecmascript/ecma_vm.h"
#include "ecmascript/napi/include/jsnapi.h"
#include "include/runtime.h"
#include "libpandabase/os/native_stack.h"
#include "libpandabase/utils/pandargs.h"
#include "libpandabase/utils/span.h"
namespace panda::ecmascript {
void BlockSignals()
{
#if defined(PANDA_TARGET_UNIX)
sigset_t set;
if (sigemptyset(&set) == -1) {
LOG(ERROR, RUNTIME) << "sigemptyset failed";
return;
}
int rc = 0;
if (rc < 0) {
LOG(ERROR, RUNTIME) << "sigaddset failed";
return;
}
if (panda::os::native_stack::g_PandaThreadSigmask(SIG_BLOCK, &set, nullptr) != 0) {
LOG(ERROR, RUNTIME) << "g_PandaThreadSigmask failed";
}
#endif // PANDA_TARGET_UNIX
}
int Main(const int argc, const char **argv)
{
auto startTime =
std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::system_clock::now().time_since_epoch())
.count();
BlockSignals();
Span<const char *> sp(argv, argc);
RuntimeOptions runtimeOptions(sp[0]);
panda::PandArg<bool> help("help", false, "Print this message and exit");
panda::PandArg<bool> options("options", false, "Print compiler and runtime options");
// tail arguments
panda::PandArg<std::string> file("file", "", "path to pandafile");
panda::PandArg<std::string> entrypoint("entrypoint", "_GLOBAL::func_main_0",
"full name of entrypoint function or method");
panda::PandArgParser paParser;
runtimeOptions.AddOptions(&paParser);
paParser.Add(&help);
paParser.Add(&options);
paParser.PushBackTail(&file);
paParser.PushBackTail(&entrypoint);
paParser.EnableTail();
paParser.EnableRemainder();
if (!paParser.Parse(argc, argv) || file.GetValue().empty() || entrypoint.GetValue().empty() || help.GetValue()) {
std::cerr << paParser.GetErrorString() << std::endl;
std::cerr << "Usage: "
<< "panda"
<< " [OPTIONS] [file] [entrypoint] -- [arguments]" << std::endl;
std::cerr << std::endl;
std::cerr << "optional arguments:" << std::endl;
std::cerr << paParser.GetHelpString() << std::endl;
return 1;
}
arg_list_t arguments = paParser.GetRemainder();
if (runtimeOptions.IsStartupTime()) {
std::cout << "\n"
<< "Startup start time: " << startTime << std::endl;
}
auto runtimeOptionsErr = runtimeOptions.Validate();
if (runtimeOptionsErr) {
std::cerr << "Error: " << runtimeOptionsErr.value().GetMessage() << std::endl;
return 1;
}
runtimeOptions.SetShouldLoadBootPandaFiles(false);
runtimeOptions.SetShouldInitializeIntrinsics(false);
runtimeOptions.SetBootClassSpaces({"ecmascript"});
runtimeOptions.SetRuntimeType("ecmascript");
static EcmaLanguageContext lcEcma;
bool ret = Runtime::Create(runtimeOptions, {&lcEcma});
if (!ret) {
std::cerr << "Error: cannot Create Runtime" << std::endl;
return -1;
}
auto runtime = Runtime::GetCurrent();
if (options.GetValue()) {
std::cout << paParser.GetRegularArgs() << std::endl;
}
std::string fileName = file.GetValue();
std::string entry = entrypoint.GetValue();
EcmaVM *vm = EcmaVM::Cast(runtime->GetPandaVM());
auto fileNameRef = StringRef::NewFromUtf8(vm, fileName.c_str(), fileName.size());
auto entryRef = StringRef::NewFromUtf8(vm, entry.c_str(), entry.size());
auto res = JSNApi::Execute(vm, fileNameRef, entryRef);
if (!res) {
std::cerr << "Cannot execute panda file '" << fileName << "' with entry '" << entry << "'" << std::endl;
ret = false;
}
if (!Runtime::Destroy()) {
std::cerr << "Error: cannot destroy Runtime" << std::endl;
return -1;
}
paParser.DisableTail();
return ret ? 0 : -1;
}
} // namespace panda::ecmascript
int main(int argc, const char **argv)
{
return panda::ecmascript::Main(argc, argv);
}