Skip to content
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

Null padded representation? #32

Open
oxinabox opened this issue Nov 3, 2020 · 3 comments
Open

Null padded representation? #32

oxinabox opened this issue Nov 3, 2020 · 3 comments

Comments

@oxinabox
Copy link
Member

oxinabox commented Nov 3, 2020

cf #29
Rather than sorting the size at all we could store the string in null-padded form.
This would let us use up to the full width of the backing primative for content.

Then to determine the ncodeunits we would count backwards from the end how meany consecutive bytes were not 0x00
and subtract that from the size of the backing primative

@ScottPJones
Copy link
Member

I don't think that really works, because then you can't store strings with \0

@oxinabox
Copy link
Member Author

oxinabox commented Nov 3, 2020

Yes, you can, so long as it isn't at the end.
and if it is at the end, it is almost certainly a null-terminated string, and so you don't want to store it.

Its worth considering if handling strings that have nulls at the end but are not null terminated is worth giving up a whole byte.

@oxinabox oxinabox reopened this Nov 3, 2020
@ScottPJones
Copy link
Member

ShortStrings don't store a terminating null anyway.
I've frequently needed strings that were just "\0", or had a '\0' at the end.
Having to deal with a single byte "lost" is a lot better IMO than the quirky issues that would come up with allowing '\0' some places, but not others.

Once this is all working correctly (there are still the access violations, and any fallbacks that use String(val) should be rewritten, maybe you could make a ShortNTS package, that works that way.

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

No branches or pull requests

2 participants