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.

link|improve this question
28  
Mm, boost::turkey. – Andrew Coleson Dec 17 '08 at 10:18
13  
I want boost::schnitzel! – Bombe Dec 17 '08 at 10:22
47  
boost::santa, provides all the best features you ever wanted, but only if you've been good. – gbjbaanb Dec 17 '08 at 16:13
17  
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 '09 at 12:55
8  
boost::my_salary :) – Eduardo León Sep 12 '09 at 23:38
show 17 more comments
feedback

closed as not constructive by Robert Harvey May 8 at 23:01

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

61 Answers

1 2 3

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

link|improve this answer
6  
That is uncanny. Now that you've mentioned it its utterly absurd that there is no boost::log! – Robert Gould Jan 8 '09 at 1:18
3  
There were multiple proposals, and I agree that its a bit of a bikeshed. – Bklyn Jan 12 '09 at 13:55
18  
See the already accepted Boost.Log (svn.boost.org/trac/boost/wiki/…) – Vicente Botet Escriba May 1 '10 at 14:59
show 3 more comments
feedback

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|improve this answer
feedback

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

link|improve this answer
2  
Its not exactly what you ask for, but currently the iostreams library can gunzip files. – haggai_e Dec 19 '08 at 12:57
show 2 more comments
feedback

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|improve this answer
3  
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 '09 at 1:26
2  
Oh, thank God! I'm glad to hear I'm not the only one who abhors the "character" oriented streams of C++. I've been wanting to write a better streams implementation for a while - something that understands what "byte" is and what a "character"/"text" is, and why they aren't the same. If I ever do, perhaps I should submit to boost... – Thanatos Aug 30 '10 at 13:36
show 5 more comments
feedback

boost::gui would be a nice addition.

link|improve this answer
1  
I doubt boost will include platform-specific libraries any time soon, Paulius. – gnud Dec 17 '08 at 10:41
8  
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
9  
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
3  
Don't think GUI code will, or should, go into Boost. In writing GUI's everybody wants to do something unique or special at least in one point in time. Also a consistent and extensible interface handling all of the different GUI's would be far larger than the current Boost library. – Daemin Dec 17 '08 at 15:44
15  
I really don't want a boost::gui. It's either going to need to be the size and complexity of Qt+WPF+OpenGL to do everything - or it's going to be so Tcl/TK primitive as to be useless. Or most likely it will be incredibly adaptable and theme-able to do everything but so insanely complex no one can use it. – Martin Beckett Apr 27 '10 at 21:45
show 6 more comments
feedback

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

link|improve this answer
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
show 5 more comments
feedback

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

link|improve this answer
1  
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
show 8 more comments
feedback

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|improve this answer
6  
And how about a fixed point decimal to go with that? – Bklyn Jan 7 '09 at 20:06
6  
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
show 1 more comment
feedback

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

link|improve this answer
5  
See Boost.Chrono (svn.boost.org/trac/boost/wiki/…) – Vicente Botet Escriba May 2 '10 at 9:27
show 1 more comment
feedback

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

boost::ruby maybe?

link|improve this answer
24  
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 Dec 17 '08 at 13:41
2  
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 5 more comments
feedback

I would like much some boost::gpu to abstract call to layers like cuda or openCL with nice syntaxic sugar. I can't believe software vendors are actually providing their own compilers (nvcc for cuda) for that purpose.

link|improve this answer
feedback

boost::atomic

link|improve this answer
5  
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 '09 at 11:17
1  
atomic is improved a lot in the new C++ standard so this might be redundant – Martin Beckett Apr 27 '10 at 21:47
2  
See Boost.Atomic (svn.boost.org/trac/boost/wiki/…) – Vicente Botet Escriba May 2 '10 at 9:25
show 1 more comment
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
4  
See Boost.RPC (svn.boost.org/trac/boost/wiki/…) – Vicente Botet Escriba May 1 '10 at 14:58
show 1 more comment
feedback

A thread pool.

link|improve this answer
6  
show 8 more comments
feedback

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

link|improve this answer
5  
Boost.Unicode: Aims at providing the foundation tools to accurately represent and deal with natural text in C++ in a portable and robust manner, so as to allow internationalized applications, by implementing parts of the Unicode Standard. (see (svn.boost.org/trac/boost/wiki/…;) – Vicente Botet Escriba May 2 '10 at 9:22
3  
This is already included as part of C++03. It's provided by the std::codecvt facet of the locale library. – Billy ONeal Jun 16 '10 at 23:32
2  
Take a look on Boost.Locale it is a part of it – Artyom Sep 21 '10 at 8:29
feedback

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

link|improve this answer
4  
Or even a crypto library - something like Keyczar – Martin Beckett Apr 27 '10 at 21:49
feedback

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|improve this answer
2  
You should split the boost::url into another answer. That way it is easier to see which suggestions are more popular. – Paulius Dec 17 '08 at 21:14
show 1 more comment
feedback

boost::extensions for adding scripting support to your application. You'd have boost::extensions::scheme, boost::extensions::python, boost::extensions::ruby and boost::extensions::lua etc.

Kind of like guile.

link|improve this answer
show 1 more comment
feedback

boost::coroutines

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

link|improve this answer
1  
There is some work being done on that: crystalclearsoftware.com/soc/coroutine – Ferruccio Oct 19 '09 at 11:20
show 1 more comment
feedback

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

link|improve this answer
show 4 more comments
feedback

Boost.Unicode. Unicode is such a core component in many technologies desired above/below*: XML, GUIs, etc. Its existence would provide a much needed stepping stone.

*delete as appropriate.

link|improve this answer
show 3 more comments
feedback

I would definitely be interested in a Boost.Sql library.

However, I think to really be interesting, one should up the bar (in term of interface) from the SOCI interface you mentioned.

Here is the kind of thing I'd like to write:

DEFINE_TABLE(
  myTable,
  ((id, Int, NotNull))
  ((name, VarChar2<56>, NotNull))
  ((firstName, VarChar2<64>, Null)),
  (PrimaryKey)(id)(name)
);

And then:

auto aQuery = Select(myTable.id, myTable.name).From(myTable).Where(myTable.firstName != Null);

auto aCursor = Cursor(aQuery);

std::list< std::pair<int,std::string> > aList;
while(aCursor.fetch())
{
  aList.insert(std::make_pair(aCursor.get(myTable.id), aCursor.get(myTable.name)));
}

I am definitely waiting for the auto keyword of course, since this implies a high degree of template meta-programming, but I do love DSELs and compile-time checking of the validity of a sql request with "natural" syntax would be a huge boon!

link|improve this answer
show 4 more comments
feedback

I hope you will find this link Libraries Under Construction useful.

Please let me know if you want I add some wish libraries to it by adding a comment to this answer, or posting on the Boost ML.

link|improve this answer
show 1 more comment
feedback

boost::cryptography, including a wide set of security related algorithms, similar to Crypto++. As I often write networked applications that need different kinds of security on application level, I would love this feature to be present in boost. There are some libs around (I mostly use crpyto++) but having it clearly licensed in the boost library would be very helpful.

link|improve this answer
3  
See Boost.Crypto (svn.boost.org/trac/boost/wiki/…) – Vicente Botet Escriba May 1 '10 at 15:02
feedback

boost::gc is one thing missing from it.

It could have the following classes and functions:

gc_ptr<T>: garbage-collected pointer.

gc_base<T>: garbage-collected base class.

gc<T>: garbage-collected wrapper class.

gc_collect(): collect garbage manually.

Using it would be like this:

gc_ptr<int> data = new gc<int>[100];
class foo : public gc_base<foo> {};
gc_ptr<foo> foo1 = new foo;

The implementation would be free to choose between Boehm's gc or a map-based implementation.

link|improve this answer
show 2 more comments
feedback

I'd like to see something like the SafeInt library in boost.

It can catch integer overflow and casting problems at runtime.

link|improve this answer
show 2 more comments
feedback

A logic programming library including unification and backtracking.

link|improve this answer
feedback

config files support with reading and writing

I used boost:program_options to read config files and there is some unkept promises. My point is that boost::po supports a kind of unification between command line option and config files parsers, but for config files what is available fall short : only one supported format similar to old windows ini files.

But my biggest regret is definitely that boost::po has not the slighlest hint of a write support for config files.

link|improve this answer
3  
Try boost::property_tree. – Jonathan Sternberg Aug 4 '10 at 23:26
feedback
1 2 3

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