vote up 45 vote down star
29

After spending most of my waking time on Stack Overflow, for better or for worse, I've come to notice how 99% of the C++ questions are answered with "use boost::wealreadysolvedyourproblem", but there must definitely be a few areas Boost doesn't cover, but would be better if it did.

So what features is Boost missing?

I'll start by saying:

  • boost::sql (although SOCI should try to become a legal part of boost)
  • boost::json (although TinyJSON should try to become a legal part of boost)
  • boost::audio (no idea about a good boost-like C++ library)


PS: The purpose is to compile a reasonable list, and hopefully Boost-like solutions out there that aren't yet a part of Boost, so no silly stuff like boost::turkey please.

flag
4  
Mm, boost::turkey. – Andrew Coleson Dec 17 '08 at 10:18
1  
I want boost::schnitzel! – Bombe Dec 17 '08 at 10:22
7  
boost::santa, provides all the best features you ever wanted, but only if you've been good. – gbjbaanb Dec 17 '08 at 16:13
5  
If a reasonable list is compiled here, it could always be moved to the boost forum. No reason not to talk about it here. Good question. – Bill the Lizard Jan 27 at 12:55
1  
I don't know if anyone pays any attention to it it, but there's: svn.boost.org/trac/boost/… – Daniel James Jan 28 at 0:12
show 6 more comments

23 Answers

vote up 45 vote down

Well, I don't keep my expectations high, but boost::callstack would be nice (or maybe it should be boost::debug::callstack). I mean, on most platforms (compilers) the callstack info could be easily retrieved - it would be nice to have one api, that would work on all platforms.

link|flag
vote up 35 vote down

A boost::log library is my vote. For logging messages, not logarithms, silly.

link|flag
2  
That is uncanny. Now that you've mentioned it its utterly absurd that there is no boost::log! – Robert Gould Jan 8 at 1:18
There was (is?) a proposed one. It's not made it through yet though. Not sure how likely it is to make it into the mainline Boost library, but you can go look it up if you like. A problem with logging is that everyone wants to do it differently! – John Zwinck Jan 9 at 3:01
2  
There were multiple proposals, and I agree that its a bit of a bikeshed. – Bklyn Jan 12 at 13:55
vote up 33 vote down

boost::gui would be a nice addition.

link|flag
I'm pretty sure, that something like John Torjo's eGUI will become boost::gui someday. Of course, there might be other candidates as well. :) – Paulius Maruška Dec 17 '08 at 10:27
I doubt boost will include platform-specific libraries any time soon, Paulius. – gnud Dec 17 '08 at 10:41
2  
Well actually a good GUI library would separate input, control and rendering. So input and rendering are platform dependent plug-ins, fairly easy to implement, and the controlling and event handling is generic. Many professional game-oriented libraries do exactly this, so it could be done IMHO. – Robert Gould Dec 17 '08 at 10:44
I have serious doubts that an useful GUI library will ever get into Boost (or C++). After all, C++ is known for its portability, and I can't imagine a GUI which scales from let's say Mac OS X down to a game boy. – Anteru Dec 17 '08 at 11:41
Have a look at Adobe's Adam & Eve: stlab.adobe.com/index.html – Luc Hermitte Dec 17 '08 at 14:04
show 4 more comments
vote up 30 vote down

boost::stl, seriously, something along the lines of the EASTL. A fast, efficient STL implementation which gets rid of the legacy problems. There has been some discussion at the Boost mailing list about new IOStreams, which would be byte oriented (and not character oriented!), things like that should really be done.

Besides that, it would be nice if a XML library like TinyXML would get into Boost. And give me a good string library which works by default with UTF-8 strings.

Finally, concurrency stuff in spirit of the TBB. We already see GCC implementing parallel_for (parallel mode), Microsoft is coming next -- obviously, this is something that should get standardized.

link|flag
for UTF-8 i like IBM's ICU library, although it could be more modern C++ like (icu-project.org) – Robert Gould Dec 17 '08 at 10:49
Yeah, I know about it -- I'd have no problem if it would be included in Boost. The point is, Boost (and C++ itself) seriously lacks a modern string library. – Anteru Dec 17 '08 at 11:38
boost has delibrately not provided functionality that duplicates the STL. It has only added stuff that extends the STL. – Martin York Dec 17 '08 at 19:43
They have new style iterators, so why not new style containers? – Anteru Dec 18 '08 at 8:36
2  
Agreed, they also have intrusive containers, so there is no reason they couldn't have EASTL like containers for high performance – Robert Gould Jan 8 at 1:26
show 1 more comment
vote up 27 vote down

a boost::archive to directly manipulate .zip, .tar, .rar, etc. files would be useful.

link|flag
I think that would be great...however there's lots of patent issues with that and there are already libraries that do a lot of it too. – teeks99 Dec 17 '08 at 16:04
Its not exactly what you ask for, but currently the iostreams library can gunzip files. – haggai_e Dec 19 '08 at 12:57
vote up 20 vote down

boost::concurency, like mentioned above, may contain lock free data structures, atomic operations, different usermode synchronization objects(spin locks) and so on.

link|flag
1  
You should check out Intel's TBB (threadingbuildingblocks.org) It's boost-like C++ and its platform independant – Robert Gould Dec 17 '08 at 10:58
Good advice, but i alredy use it. Many other boost parts(like boost signals) can be implemented thread safe or even lock free if such library will be the part of boost library. – Lazin Dec 17 '08 at 11:05
that would be sweet actually. – Robert Gould Dec 17 '08 at 11:35
boost::signals2 is in fact thread safe – grepsedawk Dec 17 '08 at 19:19
vote up 18 vote down

Is there a boost::xml? If not then TinyXML should be adopted. :)

link|flag
or TinyXML++ (TICPP, code.google.com/p/ticpp) – Kasprzol Dec 17 '08 at 11:31
Yes, TICPP would be ideal. – Rob Dec 17 '08 at 11:37
I think there is a boost::xml in the sandbox. – Ferruccio Dec 17 '08 at 15:37
There is a boost::xml in the sandbox and it's very good. We use TinyXML++ (which is decent) here but boost::xml was preferred; it was just too likely to change. – MattyT Dec 18 '08 at 22:51
The syntax for boost::xml is horrible – mgb Oct 17 at 5:20
vote up 16 vote down

Cross-Platform, high performance timing. The microsecond timer doesn't work on windows (it will not throw errors, but is highly discontinuous).

link|flag
Timing has always been weird and tricky to execute. Though now if you lock the timer thread to one processor and use the QueryPerformance functions it works well. – Daemin Dec 17 '08 at 15:40
vote up 13 vote down

I'd like to see more high-level language interfaces like the existing boost::python.

boost::ruby maybe?

link|flag
I like that idea – Robert Gould Dec 17 '08 at 13:13
2  
Actually, if that's even possible, I'd prefer boost::scripting as a common interface, and then specific implementations: boost::scripting::python, boost::scripting::ruby, boost::scripting::lua, boost::scripting::angel_script and so on. – Paulius Maruška Dec 17 '08 at 13:41
That would be an interesting idea, sort of (I don't know if it was Steve Yegge who said it) like a means for different languages to share libraries / communicate with. Though I think I'm taking the scope of this a little far. – Daemin Dec 17 '08 at 15:39
You might be interested in this project: rice.rubyforge.org (Ruby Interface for C++ Extensions) It is very similar to boost.python. – grepsedawk Dec 18 '08 at 18:21
1  
boost::langbinding (boostpro.com/writing/oopsla04.html) was proposed back in '04 but needs funding. It could be used to (re-)implement specific language bindings like Python, Lua, Perl, etc. Yum! – Bklyn Jan 7 '09 at 20:05
show 1 more comment
vote up 12 vote down

How about a good arbitrary precision float (or int) data type. Sometimes you want to carry around a number with super high precision (like calculating pi).

link|flag
And how about a fixed point decimal to go with that? – Bklyn Jan 7 '09 at 20:06
2  
My fixed point class (codef00.com/projects/Fixed.h) was submitted for consideration in boost by someone, but nothing came of it :(. I guess there aren't enough of us that want it. – Evan Teran Jan 7 '09 at 20:31
@Evan: very nice – Bklyn Jan 8 at 14:07
vote up 8 vote down

A thread pool.

link|flag
boost::threadpool does actually exist :) threadpool.sourceforge.net/index.html – Robert Gould Dec 18 '08 at 5:06
But its not an official part of boost. – Bklyn Jan 7 '09 at 20:09
It isn't? Its right there inside Boost, so it seems official enough to me, but I might be wrong. – Robert Gould Jan 8 at 1:17
Where? I see none under boost.org/doc/libs/… threadpool.sourceforge.net is not part of boost proper. – Bklyn Jan 8 at 14:11
boost thread group? – Mykola Golubyev Mar 26 at 18:00
show 1 more comment
vote up 8 vote down

Boost RPC.

Something that connects the boost network/IPC-functionality with the serialization features to make it possible to call functions on processes remotely in some fancy type safe way.

It should preferably be cross platform (no endian problems), floating point compatible, and string encoding agnostic.

link|flag
vote up 6 vote down

boost::atomic

link|flag
yeah this would help – Robert Gould Mar 27 at 5:47
1  
Or at least a wrapper and documentation for the existing implementations! boost::smart_ptr and boost::thread have their own atomic implementations in their respective details. The (not accepted yet) boost::lockfree library has another implementation. :o – sstock Jul 10 at 11:17
vote up 4 vote down

boost::os to query and interact with the machines enviroment, settings and performance info in a standardized C++ fashion. And it would probably provide other c-posix capabilities missing from C++.

Also boost::url would be nice (probably a cUrl wrapper)

link|flag
You should split the boost::url into another answer. That way it is easier to see which suggestions are more popular. – Paulius Maruška Dec 17 '08 at 21:14
vote up 4 vote down

How about Boost::MQ. A message queue to augment Boost::ASIO

link|flag
Yeah a fine tuned and reliable MessageQueue would be nice, can't count the times I've had to implement one myself – Robert Gould Aug 5 at 8:23
what's wrong with boost.org/doc/libs/… ? – Isak Savo Sep 8 at 18:55
That is based on shared memory and works only between processes on a single machine. For distributed programming, I would like to have something based on TCPIP (or something that can use FC like infiniband) – hackworks Sep 24 at 13:17
vote up 3 vote down

A checksum/hashing library. The CRC-library is nice, but md5 or sha would be useful as well.

link|flag
vote up 3 vote down

Fixed size strings.

link|flag
What do you mean? An immutable string system? – Robert Gould Dec 17 '08 at 10:42
I think he means strings with a fixed-sized buffer. The strings could be any size up to the buffer limit. – Ferruccio Dec 17 '08 at 13:05
so, not like a stl::string that's had reserve() called on it, but a c-string wrapper? I can see use in the latter. – gbjbaanb Dec 17 '08 at 16:10
I interpret this request like I prefer: strings with a program specified maximum size - so something like string s; cin >> s; can not fill all your virtual memory and bandwidth. – jdkoftinoff May 21 at 20:28
vote up 2 vote down

boost::artificial_intelligence

link|flag
I'm not so sure that AI is a good candidate for a general purpose library. Yes, there are many general AI techniques, but they must be well tailored to fit your problem. – Scottie T Mar 26 at 18:46
boost::state_machine and boost::graph exist, thats applicable to AI. a boost::genetic_algorithm and boost::ann, could be nice – Robert Gould Mar 27 at 5:46
2  
@Scottie Modern C++ has an advantage of configurability, which can be exploited well for AI. Some general purpose libraries I can think of are: constraint programming, propositional logic, resolution, uncertainty models and so on. The application domains would be gaming, and systems. – Amit Kumar Mar 27 at 6:16
Something tells me this poster was kidding. – Kevin Aug 12 at 16:21
@kevin Not quite. Indeed java folks are working on Mahout machine learning library. Would be exciting if C++ AI algorithms are used, for example in gaming. – Amit Kumar Aug 13 at 6:34
vote up 2 vote down

boost::coroutines

Why not have a call tree or even a call graph instead of a dull call stack?

link|flag
1  
There is some work being done on that: crystalclearsoftware.com/soc/coroutine/… – Ferruccio Oct 19 at 11:20
vote up 1 vote down

Boost::time

I hate the cstdlib time.h, simply because it makes me hack out how long my program is taking.

link|flag
3  
boost::date_time exists! boost.org/doc/libs/… – teeks99 Aug 3 at 20:29
fml, thank you. – Hooked Aug 3 at 21:05
vote up 1 vote down

From what I can tell boost stays away from specific standards. Whereas you might expect that it could have a DOM library, it might not be specific to XML or JSON.

Anything touching hardware would be right out. Anything touching specific standards is out. Anything platform specific is out (unless it can clearly be made to be non-specific). Anything requiring other libraries is out.

You dont find boost gzip or boost png, because again too specific. Nor audio or GUI stuff because they touch hardware/platform/other libs.

Basically anything that could be a moving target is out.

Good candidates for boost libs would be very generic concepts that can be improved until there is no reason to modify it again except to fix bugs.

link|flag
vote up 1 vote down

boost::encoding would be nice. A library to be able to convert between different character encodings.

link|flag
vote up 0 vote down

boost::reflection, boost::eval, boost::emit, and boost::compile.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.