8000 [filesystem] optimize file search by splitting it into two passes by RaphaelIT7 · Pull Request #113 · Source-Authors/Obsoletium · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[filesystem] optimize file search by splitting it into two passes #113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

RaphaelIT7
Copy link
Contributor

This optimizes the file seach by splitting the CWin32ReadOnlyFile and CStdioFile into seperate passes.
when it searches for a file, it tries to open the file in every single searchpath and trying both(when in rb) seems pointless.
in most cases CWin32ReadOnlyFile should return the valid handle for rb searches.
This should be ~50% speed up for files that aren't in the first search path like platform_misc_000.vpk

Note

Since I currently can't build the master branch I couldn't check and test it in the lastest version but it should work.

Pass 1.
We first go thru all search paths and try to open it using CWin32ReadOnlyFile.
In most cases the file can be opened using it, so we can skip CStdioFile in this pass which should be a good speedup.

Pass 2.
We failed to open it using CWin32ReadOnlyFile, now were going thru everything again but this time were going to use CStdioFile.
If it now fails, the file doesn't exist.
@dimhotepus dimhotepus force-pushed the master branch 2 times, most recently from 41bd79f to 9544370 Compare December 28, 2024 02:45
@dimhotepus dimhotepus force-pushed the master branch 11 times, most recently from 3fd9d80 to dbb5131 Compare January 21, 2025 08:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
0