mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:07:34 +00:00
Kernel: Add KLexicalPath
This adds KLexicalPath, which are a few static functions which aim to mostly emulate AK::LexicalPath. They are however constrained to work with absolute paths only, containing no '.' or '..' path segments and no consecutive slashes. This way, it is possible to avoid use StringView for the return values and thus avoid allocating new String objects. As explained above, the functions are currently very strict about the allowed input paths. This seems to not be a problem currently. Since the functions VERIFY this, potential bugs caused by this will become immediately obvious.
This commit is contained in:
parent
75ba74a216
commit
87a62f4def
3 changed files with 78 additions and 0 deletions
|
@ -128,6 +128,7 @@ set(KERNEL_SOURCES
|
|||
Interrupts/SpuriousInterruptHandler.cpp
|
||||
Interrupts/UnhandledInterruptHandler.cpp
|
||||
KBufferBuilder.cpp
|
||||
KLexicalPath.cpp
|
||||
KString.cpp
|
||||
KSyms.cpp
|
||||
Lock.cpp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue