mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
Wrap JSAutoRequest and replace usage of JSContext* with the wrapper.
JSAutoRequest is required before calling into most JSAPI methods, for GC reasons. Calling it is required and fragile as one must not forget. Further, SM52 and later make manipulating JSContext* dangerous as that can cross Compartment(Realm in SM68) barriers (and ScriptInterface now matches a Compartment). The solution to both problems is to avoid using JSContext* in 0 A.D. itself. To achieve this, a Request class is introduced, and must be used to access a JSContext* from a scriptInterface. Further, Request is passed to other ScriptInterface functions isntead of JSContext*, making it obvious that the caller has already called it, reducing errors and redundant JSAutoRequest calls. Only JSNative functions now get a naked JSContext* without protection, but the likelihood of forgetting a request is lower since many ScriptInterface functions now expect it. JSContext* is directly passed to JSAPI functions only. Part of the SM52 migration, stage: SM45 compatible Based on a patch by: Itms Tested By: Freagarach Refs #4893 Differential Revision: https://code.wildfiregames.com/D3088 This was SVN commit r24176.
This commit is contained in:
@@ -48,15 +48,17 @@
|
||||
// state held across multiple BuildDirEntListCB calls; init by BuildDirEntList.
|
||||
struct BuildDirEntListState
|
||||
{
|
||||
JSContext* cx;
|
||||
ScriptInterface* pScriptInterface;
|
||||
JS::PersistentRootedObject filename_array;
|
||||
int cur_idx;
|
||||
|
||||
BuildDirEntListState(JSContext* cx_)
|
||||
: cx(cx_),
|
||||
filename_array(cx, JS_NewArrayObject(cx, JS::HandleValueArray::empty())),
|
||||
BuildDirEntListState(ScriptInterface* scriptInterface)
|
||||
: pScriptInterface(scriptInterface),
|
||||
filename_array(scriptInterface->GetJSRuntime()),
|
||||
cur_idx(0)
|
||||
{
|
||||
ScriptInterface::Request rq(pScriptInterface);
|
||||
filename_array = JS_NewArrayObject(rq.cx, JS::HandleValueArray::empty());
|
||||
}
|
||||
};
|
||||
|
||||
@@ -64,12 +66,12 @@ struct BuildDirEntListState
|
||||
static Status BuildDirEntListCB(const VfsPath& pathname, const CFileInfo& UNUSED(fileINfo), uintptr_t cbData)
|
||||
{
|
||||
BuildDirEntListState* s = (BuildDirEntListState*)cbData;
|
||||
JSAutoRequest rq(s->cx);
|
||||
ScriptInterface::Request rq(s->pScriptInterface);
|
||||
|
||||
JS::RootedObject filenameArrayObj(s->cx, s->filename_array);
|
||||
JS::RootedValue val(s->cx);
|
||||
ScriptInterface::ToJSVal( s->cx, &val, CStrW(pathname.string()) );
|
||||
JS_SetElement(s->cx, filenameArrayObj, s->cur_idx++, val);
|
||||
JS::RootedObject filenameArrayObj(rq.cx, s->filename_array);
|
||||
JS::RootedValue val(rq.cx);
|
||||
ScriptInterface::ToJSVal(rq, &val, CStrW(pathname.string()) );
|
||||
JS_SetElement(rq.cx, filenameArrayObj, s->cur_idx++, val);
|
||||
return INFO::OK;
|
||||
}
|
||||
|
||||
@@ -91,11 +93,8 @@ JS::Value JSI_VFS::BuildDirEntList(ScriptInterface::CxPrivate* pCxPrivate, const
|
||||
|
||||
int flags = recurse ? vfs::DIR_RECURSIVE : 0;
|
||||
|
||||
JSContext* cx = pCxPrivate->pScriptInterface->GetContext();
|
||||
JSAutoRequest rq(cx);
|
||||
|
||||
// build array in the callback function
|
||||
BuildDirEntListState state(cx);
|
||||
BuildDirEntListState state(pCxPrivate->pScriptInterface);
|
||||
vfs::ForEachFile(g_VFS, path, BuildDirEntListCB, (uintptr_t)&state, filter, flags);
|
||||
|
||||
return JS::ObjectValue(*state.filename_array);
|
||||
@@ -130,9 +129,6 @@ unsigned int JSI_VFS::GetFileSize(ScriptInterface::CxPrivate* UNUSED(pCxPrivate)
|
||||
// Return file contents in a string. Assume file is UTF-8 encoded text.
|
||||
JS::Value JSI_VFS::ReadFile(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& filename)
|
||||
{
|
||||
JSContext* cx = pCxPrivate->pScriptInterface->GetContext();
|
||||
JSAutoRequest rq(cx);
|
||||
|
||||
CVFSFile file;
|
||||
if (file.Load(g_VFS, filename) != PSRETURN_OK)
|
||||
return JS::NullValue();
|
||||
@@ -143,18 +139,15 @@ JS::Value JSI_VFS::ReadFile(ScriptInterface::CxPrivate* pCxPrivate, const std::w
|
||||
contents.Replace("\r\n", "\n");
|
||||
|
||||
// Decode as UTF-8
|
||||
JS::RootedValue ret(cx);
|
||||
ScriptInterface::ToJSVal(cx, &ret, contents.FromUTF8());
|
||||
ScriptInterface::Request rq(pCxPrivate);
|
||||
JS::RootedValue ret(rq.cx);
|
||||
ScriptInterface::ToJSVal(rq, &ret, contents.FromUTF8());
|
||||
return ret;
|
||||
}
|
||||
|
||||
// Return file contents as an array of lines. Assume file is UTF-8 encoded text.
|
||||
JS::Value JSI_VFS::ReadFileLines(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& filename)
|
||||
{
|
||||
const ScriptInterface& scriptInterface = *pCxPrivate->pScriptInterface;
|
||||
JSContext* cx = scriptInterface.GetContext();
|
||||
JSAutoRequest rq(cx);
|
||||
|
||||
CVFSFile file;
|
||||
if (file.Load(g_VFS, filename) != PSRETURN_OK)
|
||||
return JS::NullValue();
|
||||
@@ -167,8 +160,11 @@ JS::Value JSI_VFS::ReadFileLines(ScriptInterface::CxPrivate* pCxPrivate, const s
|
||||
// split into array of strings (one per line)
|
||||
std::stringstream ss(contents);
|
||||
|
||||
JS::RootedValue line_array(cx);
|
||||
ScriptInterface::CreateArray(cx, &line_array);
|
||||
const ScriptInterface& scriptInterface = *pCxPrivate->pScriptInterface;
|
||||
ScriptInterface::Request rq(scriptInterface);
|
||||
|
||||
JS::RootedValue line_array(rq.cx);
|
||||
ScriptInterface::CreateArray(rq, &line_array);
|
||||
|
||||
std::string line;
|
||||
int cur_line = 0;
|
||||
@@ -176,8 +172,8 @@ JS::Value JSI_VFS::ReadFileLines(ScriptInterface::CxPrivate* pCxPrivate, const s
|
||||
while (std::getline(ss, line))
|
||||
{
|
||||
// Decode each line as UTF-8
|
||||
JS::RootedValue val(cx);
|
||||
ScriptInterface::ToJSVal(cx, &val, CStr(line).FromUTF8());
|
||||
JS::RootedValue val(rq.cx);
|
||||
ScriptInterface::ToJSVal(rq, &val, CStr(line).FromUTF8());
|
||||
scriptInterface.SetPropertyInt(line_array, cur_line++, val);
|
||||
}
|
||||
|
||||
@@ -189,22 +185,22 @@ JS::Value JSI_VFS::ReadJSONFile(ScriptInterface::CxPrivate* pCxPrivate, const st
|
||||
if (!PathRestrictionMet(pCxPrivate, validPaths, filePath))
|
||||
return JS::NullValue();
|
||||
|
||||
JSContext* cx = pCxPrivate->pScriptInterface->GetContext();
|
||||
JSAutoRequest rq(cx);
|
||||
JS::RootedValue out(cx);
|
||||
pCxPrivate->pScriptInterface->ReadJSONFile(filePath, &out);
|
||||
const ScriptInterface& scriptInterface = *pCxPrivate->pScriptInterface;
|
||||
ScriptInterface::Request rq(scriptInterface);
|
||||
JS::RootedValue out(rq.cx);
|
||||
scriptInterface.ReadJSONFile(filePath, &out);
|
||||
return out;
|
||||
}
|
||||
|
||||
void JSI_VFS::WriteJSONFile(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& filePath, JS::HandleValue val1)
|
||||
{
|
||||
JSContext* cx = pCxPrivate->pScriptInterface->GetContext();
|
||||
JSAutoRequest rq(cx);
|
||||
const ScriptInterface& scriptInterface = *pCxPrivate->pScriptInterface;
|
||||
ScriptInterface::Request rq(scriptInterface);
|
||||
|
||||
// TODO: This is a workaround because we need to pass a MutableHandle to StringifyJSON.
|
||||
JS::RootedValue val(cx, val1);
|
||||
JS::RootedValue val(rq.cx, val1);
|
||||
|
||||
std::string str(pCxPrivate->pScriptInterface->StringifyJSON(&val, false));
|
||||
std::string str(scriptInterface.StringifyJSON(&val, false));
|
||||
|
||||
VfsPath path(filePath);
|
||||
WriteBuffer buf;
|
||||
@@ -227,9 +223,8 @@ bool JSI_VFS::PathRestrictionMet(ScriptInterface::CxPrivate* pCxPrivate, const s
|
||||
allowedPaths += L"\"" + validPaths[i] + L"\"";
|
||||
}
|
||||
|
||||
JSContext* cx = pCxPrivate->pScriptInterface->GetContext();
|
||||
JSAutoRequest rq(cx);
|
||||
JS_ReportError(cx, "This part of the engine may only read from %s!", utf8_from_wstring(allowedPaths).c_str());
|
||||
ScriptInterface::Request rq(pCxPrivate);
|
||||
JS_ReportError(rq.cx, "This part of the engine may only read from %s!", utf8_from_wstring(allowedPaths).c_str());
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user