-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
137 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
#include "runtimev2.h" | ||
#include "Log.h" | ||
#include "compiler.h" | ||
#include "package.h" | ||
#include "logger.h" | ||
|
||
JSBytecodeRuntimeV2::JSBytecodeRuntimeV2() | ||
{ | ||
v8::V8::SetFlagsFromString("--harmony-import-assertions --short-builtin-calls --no-lazy --no-flush-bytecode --no-enable-lazy-source-positions"); | ||
platform = v8::platform::NewDefaultPlatform(); | ||
v8::V8::InitializePlatform(platform.get()); | ||
v8::V8::Initialize(); | ||
|
||
create_params.array_buffer_allocator = v8::ArrayBuffer::Allocator::NewDefaultAllocator(); | ||
|
||
isolate = v8::Isolate::New(create_params); | ||
} | ||
|
||
void JSBytecodeRuntimeV2::ProcessClientFile(alt::IResource* resource, alt::IPackage* package) | ||
{ | ||
v8::Isolate::Scope isolateScope(isolate); | ||
v8::HandleScope handleScope(isolate); | ||
|
||
// Set up compiler | ||
alt::IPackage* resourcePackage = resource->GetPackage(); | ||
Package compilerPackage(package, resourcePackage, resource); | ||
Logger compilerLogger; | ||
BytecodeCompiler::Compiler compiler(isolate, &compilerPackage, &compilerLogger); | ||
|
||
Config::Value::ValuePtr config = resource->GetConfig(); | ||
// Get ignored files | ||
std::vector<std::string> ignoredModules = { "alt", "alt-client", "natives", "alt-worker", "alt-shared", "@altv/client", "@altv/server", "@altv/shared", "@altv/natives" }; | ||
Config::Value::ValuePtr ignoredFiles = config->Get("ignored-files"); | ||
if(ignoredFiles->IsList()) | ||
{ | ||
Config::Value::List list = ignoredFiles->As<Config::Value::List>(); | ||
ignoredModules.reserve(ignoredModules.size() + list.size()); | ||
for(auto& item : list) | ||
{ | ||
if(item->IsString()) ignoredModules.push_back(item->As<std::string>()); | ||
} | ||
} | ||
compiler.SetIgnoredModules(ignoredModules); | ||
|
||
// Compile client main file | ||
bool result = compiler.CompileModule(resource->GetClientMain()); | ||
if(!result) return; | ||
|
||
// Compile the extra files | ||
Config::Value::ValuePtr extraCompileFiles = config->Get("extra-compile-files"); | ||
if(extraCompileFiles->IsList()) | ||
{ | ||
Config::Value::List list = extraCompileFiles->As<Config::Value::List>(); | ||
std::vector<std::string> extraFilePatterns; | ||
extraFilePatterns.reserve(list.size()); | ||
for(auto& item : list) | ||
{ | ||
if(item->IsString()) extraFilePatterns.push_back(item->As<std::string>()); | ||
} | ||
|
||
std::set<std::string> files = resource->GetMatchedFiles(extraFilePatterns); | ||
for(const std::string& file : files) | ||
{ | ||
bool result = compiler.CompileModule(file, false); | ||
if(!result) return; | ||
} | ||
} | ||
|
||
// Write all other files normally | ||
const std::vector<std::string>& clientFiles = resource->GetClientFiles(); | ||
const std::vector<std::string>& compiledFiles = compiler.GetCompiledFiles(); | ||
for(const std::string& clientFile : clientFiles) | ||
{ | ||
// Check if the file is compiled, then we don't want to overwrite it | ||
if(std::find(compiledFiles.begin(), compiledFiles.end(), clientFile) != compiledFiles.end()) continue; | ||
|
||
// Open the file from the resource package and read the content | ||
alt::IPackage::File* file = resourcePackage->OpenFile(clientFile); | ||
size_t fileSize = resourcePackage->GetFileSize(file); | ||
std::string buffer; | ||
buffer.resize(fileSize); | ||
resourcePackage->ReadFile(file, buffer.data(), buffer.size()); | ||
resourcePackage->CloseFile(file); | ||
|
||
// Write the file content into the client package | ||
alt::IPackage::File* clientPkgFile = package->OpenFile(clientFile); | ||
package->WriteFile(clientPkgFile, buffer.data(), buffer.size()); | ||
package->CloseFile(clientPkgFile); | ||
} | ||
} | ||
|
||
bool JSBytecodeRuntimeV2::GetProcessClientType(std::string& clientType) | ||
{ | ||
clientType = "jsv2b"; | ||
return true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#pragma once | ||
|
||
#include "SDK.h" | ||
#include "v8.h" | ||
#include "libplatform/libplatform.h" | ||
|
||
class JSBytecodeRuntimeV2 : public alt::IScriptRuntime | ||
{ | ||
v8::Isolate* isolate; | ||
v8::Isolate::CreateParams create_params; | ||
std::unique_ptr<v8::Platform> platform; | ||
|
||
public: | ||
JSBytecodeRuntimeV2(); | ||
|
||
bool GetProcessClientType(std::string& clientType) override; | ||
void ProcessClientFile(alt::IResource* resource, alt::IPackage* clientPackage) override; | ||
|
||
v8::Isolate* GetIsolate() | ||
{ | ||
return isolate; | ||
} | ||
|
||
alt::IResource::Impl* CreateImpl(alt::IResource* resource) override | ||
{ | ||
return nullptr; | ||
} | ||
|
||
void DestroyImpl(alt::IResource::Impl* impl) override {} | ||
|
||
static JSBytecodeRuntimeV2& Instance() | ||
{ | ||
static JSBytecodeRuntimeV2 runtime; | ||
return runtime; | ||
} | ||
}; |