Skip to content

Return type of sorter adapters #134

Open
@Morwenn

Description

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:

  • Keeping the status quo: adapters either return a value they computed or the value of the wrapped sorter if they don't return a value of their own.
  • Wrapping the values in a std::pair where one of the values is the one returned from the sorter and the other one is the one computed by the adapter. It becomes a usability problem if the nesting of adapters is too deep and I'd like a more scalable solution.
  • Wrapping the values in a std::tuple that is flattened through the adapter levels sounds like retrieving the exact result is hard.
  • I would rather see a solution with tagged tuples which feels slightly more scalable: instead of simply returning an end iterator, a sorter could return tagged_tuple<tag::out(Iterator)> and flattening the tagged_tuple through adapters could be a bit safer. To keep the usability we would probably need some kind of tagged single-value container which implicitly converts to the wrapped type. Apparently LEWG is willing to drop the whole tag mechanism, so this solution would require to reinvent the whole mechanism, which I'm not really willing to do...

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions