mirror of https://gitlab.com/nakst/essence
files api: change parameter order for EsDirectoryEnumerateChildren
This commit is contained in:
parent
b9f2ea02c8
commit
a30cb8cd83
|
@ -270,16 +270,14 @@ EsError CommandPasteFile(String source, String destinationBase, void **copyBuffe
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error == ES_ERROR_INCORRECT_NODE_TYPE) {
|
if (error == ES_ERROR_INCORRECT_NODE_TYPE) {
|
||||||
EsDirectoryChild *buffer;
|
uintptr_t childCount;
|
||||||
ptrdiff_t childCount = EsDirectoryEnumerateChildren(STRING(source), &buffer);
|
EsDirectoryChild *buffer = EsDirectoryEnumerateChildren(STRING(source), &childCount, &error);
|
||||||
|
|
||||||
if (ES_CHECK_ERROR(childCount)) {
|
if (error == ES_SUCCESS) {
|
||||||
error = (EsError) childCount;
|
|
||||||
} else {
|
|
||||||
error = EsPathCreate(STRING(destination), ES_NODE_DIRECTORY, false);
|
error = EsPathCreate(STRING(destination), ES_NODE_DIRECTORY, false);
|
||||||
|
|
||||||
if (error == ES_SUCCESS) {
|
if (error == ES_SUCCESS) {
|
||||||
for (intptr_t i = 0; i < childCount && error == ES_SUCCESS; i++) {
|
for (uintptr_t i = 0; i < childCount && error == ES_SUCCESS; i++) {
|
||||||
String childSourcePath = StringAllocateAndFormat("%s%z%s", STRFMT(source),
|
String childSourcePath = StringAllocateAndFormat("%s%z%s", STRFMT(source),
|
||||||
PathHasTrailingSlash(source) ? "" : "/", buffer[i].nameBytes, buffer[i].name);
|
PathHasTrailingSlash(source) ? "" : "/", buffer[i].nameBytes, buffer[i].name);
|
||||||
error = CommandPasteFile(childSourcePath, destination, copyBuffer, task, nullptr);
|
error = CommandPasteFile(childSourcePath, destination, copyBuffer, task, nullptr);
|
||||||
|
|
|
@ -74,19 +74,18 @@ EsError FSDirEnumerate(Folder *folder) {
|
||||||
folder->readOnly = volume.flags & ES_VOLUME_READ_ONLY;
|
folder->readOnly = volume.flags & ES_VOLUME_READ_ONLY;
|
||||||
}
|
}
|
||||||
|
|
||||||
EsDirectoryChild *buffer = nullptr;
|
uintptr_t _entryCount;
|
||||||
ptrdiff_t _entryCount = EsDirectoryEnumerateChildren(STRING(folder->path), &buffer);
|
EsError error;
|
||||||
|
EsDirectoryChild *buffer = EsDirectoryEnumerateChildren(STRING(folder->path), &_entryCount, &error);
|
||||||
|
|
||||||
if (!ES_CHECK_ERROR(_entryCount)) {
|
if (error == ES_SUCCESS) {
|
||||||
for (intptr_t i = 0; i < _entryCount; i++) {
|
for (uintptr_t i = 0; i < _entryCount; i++) {
|
||||||
FolderAddEntry(folder, buffer[i].name, buffer[i].nameBytes, &buffer[i]);
|
FolderAddEntry(folder, buffer[i].name, buffer[i].nameBytes, &buffer[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
_entryCount = ES_SUCCESS;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
EsHeapFree(buffer);
|
EsHeapFree(buffer);
|
||||||
return (EsError) _entryCount;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FSDirGetTotalSize(Folder *folder) {
|
void FSDirGetTotalSize(Folder *folder) {
|
||||||
|
|
|
@ -56,6 +56,7 @@ bool InstanceLoadFolder(Instance *instance, String path /* takes ownership */, i
|
||||||
EsMutexAcquire(&folder->modifyEntriesMutex);
|
EsMutexAcquire(&folder->modifyEntriesMutex);
|
||||||
|
|
||||||
if (!folder->doneInitialEnumeration) {
|
if (!folder->doneInitialEnumeration) {
|
||||||
|
// TODO Reporting errors.
|
||||||
folder->itemHandler->enumerate(folder);
|
folder->itemHandler->enumerate(folder);
|
||||||
|
|
||||||
if (folder->containerHandler->getTotalSize) {
|
if (folder->containerHandler->getTotalSize) {
|
||||||
|
|
|
@ -297,11 +297,10 @@ int ExternalFileCopy(ExecutionContext *context, Value *returnValue) {
|
||||||
int External_DirectoryInternalStartIteration(ExecutionContext *context, Value *returnValue) {
|
int External_DirectoryInternalStartIteration(ExecutionContext *context, Value *returnValue) {
|
||||||
STACK_POP_STRING(entryText, entryBytes);
|
STACK_POP_STRING(entryText, entryBytes);
|
||||||
EsHeapFree(directoryIterationBuffer);
|
EsHeapFree(directoryIterationBuffer);
|
||||||
directoryIterationBuffer = nullptr;
|
EsError error;
|
||||||
ptrdiff_t count = EsDirectoryEnumerateChildren(entryText, entryBytes, &directoryIterationBuffer);
|
directoryIterationBuffer = EsDirectoryEnumerateChildren(entryText, entryBytes, &directoryIterationBufferCount, &error);
|
||||||
returnValue->i = count >= 0 ? 1 : 0;
|
returnValue->i = error == ES_SUCCESS ? 1 : 0;
|
||||||
directoryIterationBufferPosition = 0;
|
directoryIterationBufferPosition = 0;
|
||||||
directoryIterationBufferCount = count >= 0 ? count : 0;
|
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -543,15 +543,16 @@ struct {
|
||||||
const int testVariable = 3;
|
const int testVariable = 3;
|
||||||
|
|
||||||
bool DirectoryEnumerateChildrenRecursive(const char *path, size_t pathBytes) {
|
bool DirectoryEnumerateChildrenRecursive(const char *path, size_t pathBytes) {
|
||||||
EsDirectoryChild *buffer;
|
size_t count;
|
||||||
ptrdiff_t count = EsDirectoryEnumerateChildren(path, pathBytes, &buffer);
|
EsError error;
|
||||||
|
EsDirectoryChild *buffer = EsDirectoryEnumerateChildren(path, pathBytes, &count, &error);
|
||||||
|
|
||||||
if (count < 0) {
|
if (error != ES_SUCCESS) {
|
||||||
EsPrint("Error %i enumerating at path \"%s\".\n", (EsError) count, pathBytes, path);
|
EsPrint("Error %i enumerating at path \"%s\".\n", error, pathBytes, path);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (intptr_t i = 0; i < count; i++) {
|
for (uintptr_t i = 0; i < count; i++) {
|
||||||
char *childPath = (char *) EsHeapAllocate(pathBytes + 1 + buffer[i].nameBytes, false);
|
char *childPath = (char *) EsHeapAllocate(pathBytes + 1 + buffer[i].nameBytes, false);
|
||||||
size_t childPathBytes = EsStringFormat(childPath, ES_STRING_FORMAT_ENOUGH_SPACE, "%s/%s", pathBytes, path, buffer[i].nameBytes, buffer[i].name);
|
size_t childPathBytes = EsStringFormat(childPath, ES_STRING_FORMAT_ENOUGH_SPACE, "%s/%s", pathBytes, path, buffer[i].nameBytes, buffer[i].name);
|
||||||
|
|
||||||
|
|
|
@ -98,45 +98,55 @@ EsError EsFileControl(EsHandle file, uint32_t flags) {
|
||||||
return EsSyscall(ES_SYSCALL_FILE_CONTROL, file, flags, 0, 0);
|
return EsSyscall(ES_SYSCALL_FILE_CONTROL, file, flags, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
ptrdiff_t EsDirectoryEnumerateChildrenFromHandle(EsHandle directory, EsDirectoryChild *buffer, size_t size) {
|
ptrdiff_t DirectoryEnumerateChildrenFromHandle(EsHandle directory, EsDirectoryChild *buffer, size_t size) {
|
||||||
if (!size) return 0;
|
if (!size) return 0;
|
||||||
return EsSyscall(ES_SYSCALL_DIRECTORY_ENUMERATE, directory, (uintptr_t) buffer, size, 0);
|
return EsSyscall(ES_SYSCALL_DIRECTORY_ENUMERATE, directory, (uintptr_t) buffer, size, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
ptrdiff_t EsDirectoryEnumerateChildren(const char *path, ptrdiff_t pathBytes, EsDirectoryChild **buffer) {
|
EsDirectoryChild *EsDirectoryEnumerateChildren(const char *path, ptrdiff_t pathBytes, size_t *countOut, EsError *errorOut) {
|
||||||
*buffer = nullptr;
|
*countOut = 0;
|
||||||
|
*errorOut = ES_ERROR_UNKNOWN;
|
||||||
|
|
||||||
if (pathBytes == -1) pathBytes = EsCStringLength(path);
|
if (pathBytes == -1) pathBytes = EsCStringLength(path);
|
||||||
|
|
||||||
_EsNodeInformation node;
|
_EsNodeInformation node;
|
||||||
EsError error = NodeOpen(path, pathBytes, ES_NODE_FAIL_IF_NOT_FOUND | ES_NODE_DIRECTORY, &node);
|
EsError error = NodeOpen(path, pathBytes, ES_NODE_FAIL_IF_NOT_FOUND | ES_NODE_DIRECTORY, &node);
|
||||||
if (error != ES_SUCCESS) return error;
|
|
||||||
|
if (error != ES_SUCCESS) {
|
||||||
|
*errorOut = error;
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
if (node.directoryChildren == ES_DIRECTORY_CHILDREN_UNKNOWN) {
|
if (node.directoryChildren == ES_DIRECTORY_CHILDREN_UNKNOWN) {
|
||||||
node.directoryChildren = 4194304 / sizeof(EsDirectoryChild); // TODO Grow the buffer until all entries fit.
|
// TODO Grow the buffer until all entries fit.
|
||||||
|
node.directoryChildren = 4194304 / sizeof(EsDirectoryChild);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node.directoryChildren == 0) {
|
if (node.directoryChildren == 0) {
|
||||||
// Empty directory.
|
// Empty directory.
|
||||||
*buffer = nullptr;
|
*errorOut = ES_SUCCESS;
|
||||||
return 0;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
*buffer = (EsDirectoryChild *) EsHeapAllocate(sizeof(EsDirectoryChild) * node.directoryChildren, true);
|
EsDirectoryChild *buffer = (EsDirectoryChild *) EsHeapAllocate(sizeof(EsDirectoryChild) * node.directoryChildren, true);
|
||||||
ptrdiff_t result;
|
|
||||||
|
|
||||||
if (*buffer) {
|
if (buffer) {
|
||||||
result = EsDirectoryEnumerateChildrenFromHandle(node.handle, *buffer, node.directoryChildren);
|
ptrdiff_t result = DirectoryEnumerateChildrenFromHandle(node.handle, buffer, node.directoryChildren);
|
||||||
|
|
||||||
if (ES_CHECK_ERROR(result)) {
|
if (ES_CHECK_ERROR(result)) {
|
||||||
EsHeapFree(*buffer);
|
EsHeapFree(buffer);
|
||||||
*buffer = nullptr;
|
buffer = nullptr;
|
||||||
|
*errorOut = result;
|
||||||
|
} else {
|
||||||
|
*errorOut = ES_SUCCESS;
|
||||||
|
*countOut = result;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
result = ES_ERROR_INSUFFICIENT_RESOURCES;
|
*errorOut = ES_ERROR_INSUFFICIENT_RESOURCES;
|
||||||
}
|
}
|
||||||
|
|
||||||
EsHandleClose(node.handle);
|
EsHandleClose(node.handle);
|
||||||
return result;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
EsFileInformation EsFileOpen(const char *path, ptrdiff_t pathLength, uint32_t flags) {
|
EsFileInformation EsFileOpen(const char *path, ptrdiff_t pathLength, uint32_t flags) {
|
||||||
|
|
|
@ -2019,7 +2019,7 @@ function void EsINIZeroTerminate(EsINIState *s);
|
||||||
|
|
||||||
function const void *EsBundleFind(const EsBundle *bundle, STRING name, size_t *byteCount = ES_NULL) @out(byteCount) @fixed_buffer_out(return, byteCount*); // Pass null as the bundle to use the current application's bundle.
|
function const void *EsBundleFind(const EsBundle *bundle, STRING name, size_t *byteCount = ES_NULL) @out(byteCount) @fixed_buffer_out(return, byteCount*); // Pass null as the bundle to use the current application's bundle.
|
||||||
|
|
||||||
function ptrdiff_t EsDirectoryEnumerateChildren(STRING path, EsDirectoryChild **buffer) @out(buffer) @heap_array_out(buffer*, return); // Free buffer with EsHeapFree. Returns number of children.
|
function EsDirectoryChild *EsDirectoryEnumerateChildren(STRING path, size_t *count, EsError *error = ES_NULL) @out(count) @out(error) @heap_array_out(return, count*);
|
||||||
|
|
||||||
function void *EsFileReadAll(STRING filePath, size_t *fileSize, EsError *error = ES_NULL) @out(fileSize) @out(error) @heap_buffer_out(return, fileSize*); // Free with EsHeapFree.
|
function void *EsFileReadAll(STRING filePath, size_t *fileSize, EsError *error = ES_NULL) @out(fileSize) @out(error) @heap_buffer_out(return, fileSize*); // Free with EsHeapFree.
|
||||||
function void *EsFileReadAllFromHandle(EsHandle handle, size_t *fileSize, EsError *error = ES_NULL) @out(fileSize) @out(error) @heap_buffer_out(return, fileSize*); // Free with EsHeapFree.
|
function void *EsFileReadAllFromHandle(EsHandle handle, size_t *fileSize, EsError *error = ES_NULL) @out(fileSize) @out(error) @heap_buffer_out(return, fileSize*); // Free with EsHeapFree.
|
||||||
|
|
|
@ -412,11 +412,13 @@ void CreateImportNode(const char *path, ImportNode *node) {
|
||||||
#ifdef OS_ESSENCE
|
#ifdef OS_ESSENCE
|
||||||
size_t path2Bytes;
|
size_t path2Bytes;
|
||||||
char *path2 = EsPOSIXConvertPath(path, &path2Bytes, true);
|
char *path2 = EsPOSIXConvertPath(path, &path2Bytes, true);
|
||||||
EsDirectoryChild *children;
|
EsError error;
|
||||||
ptrdiff_t childCount = EsDirectoryEnumerateChildren(path2, path2Bytes, &children);
|
uintptr_t childCount;
|
||||||
|
EsDirectoryChild *children = EsDirectoryEnumerateChildren(path2, path2Bytes, &childCount, &error);
|
||||||
|
EsAssert(error == ES_SUCCESS);
|
||||||
EsHeapFree(path2, 0, NULL);
|
EsHeapFree(path2, 0, NULL);
|
||||||
|
|
||||||
for (intptr_t i = 0; i < childCount; i++) {
|
for (uintptr_t i = 0; i < childCount; i++) {
|
||||||
snprintf(pathBuffer, sizeof(pathBuffer), "%s/%.*s", path, (int) children[i].nameBytes, children[i].name);
|
snprintf(pathBuffer, sizeof(pathBuffer), "%s/%.*s", path, (int) children[i].nameBytes, children[i].name);
|
||||||
|
|
||||||
ImportNode child = {};
|
ImportNode child = {};
|
||||||
|
|
|
@ -1269,6 +1269,7 @@ bool ScriptWriteBasicType(const char *type) {
|
||||||
void OutputScript(Entry *root) {
|
void OutputScript(Entry *root) {
|
||||||
// TODO Return values.
|
// TODO Return values.
|
||||||
// TODO Structs, enums, etc.
|
// TODO Structs, enums, etc.
|
||||||
|
// TODO matrix_shared
|
||||||
|
|
||||||
int skippedFunctions = 0, totalFunctions = 0;
|
int skippedFunctions = 0, totalFunctions = 0;
|
||||||
|
|
||||||
|
@ -1302,7 +1303,6 @@ void OutputScript(Entry *root) {
|
||||||
|
|
||||||
for (int i = 0; i < arrlen(entry->annotations); i++) {
|
for (int i = 0; i < arrlen(entry->annotations); i++) {
|
||||||
if ((0 == strcmp(entry->annotations[i].name, "out")
|
if ((0 == strcmp(entry->annotations[i].name, "out")
|
||||||
|| 0 == strcmp(entry->annotations[i].name, "heap_array_out")
|
|
||||||
|| 0 == strcmp(entry->annotations[i].name, "buffer_out"))
|
|| 0 == strcmp(entry->annotations[i].name, "buffer_out"))
|
||||||
&& 0 == strcmp(entry->annotations[i].children[0].name, argument->name)) {
|
&& 0 == strcmp(entry->annotations[i].children[0].name, argument->name)) {
|
||||||
goto skipArgument;
|
goto skipArgument;
|
||||||
|
|
Loading…
Reference in New Issue