Morwenn / cpp-sort

Sorting algorithms & related tools for C++14
MIT License
621 stars 57 forks source link

Return type of sorter adapters #134

Open Morwenn opened 6 years ago

Morwenn commented 6 years ago

At first, sorter adapters were mostly designed to return the value returned by the wrapped sorters. However, with time some problems appeared with that design:

  1. Some adapters such as counting_adapter return a result. Currently it simply discards any value returned by the wrapped sorter and there is no way to get both values. This might become even more of a problem when using sorter adapters on measures of presortedness, or with sorting algorithms returning the end iterator as in the Ranges TS.
  2. Handling both sorters that return void and sorters that return a value is quite tricky when the adapter needs to perform operations after the return: returning the result of a void function is ok, but because of the lack of regular void in the language it's impossible to generically store the result to return it later. The easiest solution is still to execute the code that comes after the call to the sorter in a lambda passed to a scope_exit thingy (also hard to do prior to C++17 and std::uncaught_exceptions).
  3. Some adapters are not suited to actually return a useful result: for example verge_adapter is only useful to make algorithms take advantage of big runs in the collection. However adapting a measure of presortedness with it wouldn't make sense and there is no obvious way to produce the result once adapted, so verge_adapter is an example of an adapter that shouldn't forward the result of the underlying algorithm.

Now the first point is the most problematic one and the one for which there is no obvious solution. The possible solutions are as follows:

To be honest I'm still not convinced by any of the solutions, hence this issue. Any somewhat sane idea to make that both usable and scalable is welcome.


A first use case that should always be considered to decide whether it makes for an adapter to return the result of the underlying sorter is: can it be used on a measure of presortedness? If it can it probably makes sense to forward the result of the adapted sorter, otherwise I don't know.

Morwenn commented 5 years ago

Work done as of release 1.3.0:

The adapters that only work in C++17 mode actually rely on the feature test macro __cpp_lib_uncaught_exceptions to be activated.

Morwenn commented 5 years ago

As per #148, verge_adapter will be merged back into verge_sorter while still taking a fallback sorter as a parameter in cpp-sort 2.0.0, so we won't have to make it return anything since it won't be considered a generic adapter anymore.