-
Notifications
You must be signed in to change notification settings - Fork 8
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
Hashing is unnecessarily limited to null-terminated strings #9
Comments
Also, the linked hash implementation (and likely code in other files) uses
On a conforming compiler, the above file may not compile due to missing definitions. |
Agreed. How about a change of interface adding an optional parameter Are you interested in making the whole library compatible with a newer c++ standard? For now I was hoping to keep c++11 compatibility, but if someone wants to do the work, could maybe add an option for c++17. There are probably a lot of things in TB that will annoy you if you hope to get all the benefits of string_view, it was written for pre-c++11. |
I thought about writing a separate overload (
From cppreference:
If So ... there seems to be no other way than providing 2 overloads.
There are no problems with supporting C++17 if you already support C++11, unless you use stuff which was deprecated or removed in later standatds (eg I don't see large problems in technical compatibility with C++11, more of a style problems:
Solving all of these (and likely other problems, of which I am not aware) would requite to refactor most of the code (and perhaps some breaking changes). So to answer the question "Are you interested in making the whole library compatible with a newer c++ standard?" - I would say yes, but sadly I don't see any other way than writing a completely new library. There aren't many problems to make this library work with C++11, but there are some really big problems to make this library look like a modern C++ library. |
Why would you be dereferencing if the size was zero? I'm missing something; what would be the signatures of your two overloads? Yes, well... let us know when you've finished writing a nice modern isocpp-compliant multi-platform open-source c++17 GUI library from scratch! :DD It will be immensely popular, I will guarantee you that - riches and fame can be yours. TB/HB is not ideal, I agree, but it works ok, and it works roughly the same across iOS, Android, Linux, MacOS, Windows, and WebGL/Webassembly. And the benefit for developing coping skills is a solution that actually works today. There are a lot of incremental improvements that can be made here, and I'm more than happy to accept well-formed backward-compatibility-maximizing test-able PRs to make those. It's a common dilemma - do I write everything from scratch while sitting at A, or do I incrementally improve the junker that already gets me from A to B? A bird in the hand, or two in the bush? ps. you might want to read through the "Note" on your NL.10 link :o) |
Proposed overload Regarding changes, I agree that consistency is better than never-finished-potentially-ideal. There is nothing better you can do than keeping TB/TH and offering non-breaking improvements. I was just searching for a GUI library with specific needs and someone linked me TB. Obviously I won't find an ideal library but I think it would be better for my project to make PRs (with implementations of missing features) to libraries which appeal to me (modern-C++ style) than struggling with wrappers around C or old-C++-style libraries. I have found though that your library has 2 features which many libraries do not have:
Does TB support OS-related features like clipboard, open file/directory dialog or docking? |
Oh, right, I didn't really think that through, though I wouldn't call it "my" library, more like my branch... There is clipboard support. I've been using tinyfiledialogs for native dialogs, and simple home-cooked stuff under emscripten, works pretty well across OSs. No docking. Have you been able to build the demo app? I'll be curious to know what you finally end up using, I went through the same search about five years ago and ended up here, but would be really curious to know if there's something better in the meantime. If I were starting from scratch otoh... I'd use SVG (a reasonable subset) as a middle layer for rendering that gives you tons of platforms and tooling for the graphics (including web - natively) and people love skinning. Then build an event & message-passing system under it (conveniently some basics already defined by SVG), and then an android/iOS-like layout constraint-definition layer above it, and then a widget library on top of it all. Wouldn't be much bulkier than TB, (maybe even lighter) but would be far more portable and hackable and accessible(/comfortable for devs coming in from the web-world). Apps would end up similar to electron, but without the html layout & js baggage. (It sounds too perfect, right?) |
Haven't tried. But regarding building, I checked your CMakeLists. It requires version 3.4+, but uses very 2.0-like writing (variables and global changes of internal variables, not targets and their properties). I recommend to read https://cliutils.gitlab.io/modern-cmake/. CMake 3.0 vs 2.0 is just like moder C++ vs old C++.
I have seen many libraries with different approaches:
I'm very fine with first 2, little worried about 3rd (string-related errors and performance) and never tried the last one. I have very little knowledge on the backend stuff and how widgets are drawn, so I'm fine as long as it works and has some customizations. Regarding my search, what has interested me:
|
TBID::Set(const char*)
uses this code (while loop assumes null-termination):turbobadger/src/tb/tb_hash.cpp
Lines 12 to 25 in 123ed5a
This is an unnecessary limitation because for example, it can not be used with
std::string_view
.The text was updated successfully, but these errors were encountered: