Giter Club home page Giter Club logo

dooc-np's Introduction

Dooc's Named Parameters

A header-only library containing string-indexed tuples (named_tuple). With some help of C++20 concepts and user defined non-type template parameters we also have a decent named argument API framework.

Tested with MSVC 2019.11.10 on Windows and GCC 10.3 and Clang-12.0.0 (on Ubuntu).

Install

The library is header-only. The easiest way to use it is to download it and integrate it into a CMake project by doing add_subdirectory(path/to/lib [internal/build/path OPTIONAL]) and then use target_link_libraries(<your target> <PUBLIC/PRIVATE> dooc::named_parameters)

Requirements

  • C++ 20
  • MSVC 2019-11.10 (or newer), GCC-10.3 (or newer) or Clang-12.0.0 (or newer).

Named argument

Named arguments are a feature in many programming languages that can improve readability and ease of use for APIs that may have a lot of options. Python for example aalow the following syntax:

def foo(arg1, arg2):
   ...

foo(arg2=5, arg1='hello!`)

This library intends to give C++ a similar capability without runtime overhead.

It is based around c++20:s concept. We can define a function that can use the named arguments like this:

// concept 'arg_with_any_name' means that TArgs all should be a named_arg_t or similar.
template<arg_with_any_name... TArgs>
  // args_fullfill evaluates that TArgs... have a variable named "min" that can implicitly convert to int
  //  and a variable called "max" under the same constraint.
  // arg_list is needed to differentiate between the required args and the supplied ones.
  requires args_fullfill<arg_list<named_type<int, "min">, named_type<int, "max">>, TArgs...>
void foo(TArgs const&... args) {
    // Retrieve the variables.
    do_something(get<"min">(args...));
    do_something_else(get<"max">(args...));
}

or (initial way)

// concept 'arg_with_any_name' means that TArgs all should be a named_arg_t or similar.
template<arg_with_any_name... TArgs>
// 'are_exactly_args' is a constexpr bool that is only true when the names in the template_string_list_t
//  and TArgs have a one-on-one (unordered) mapping.
  requires are_exactly_args<template_string_list_t<"min", "max">, TArgs...>
void foo(TArgs const&... args) {
    // Retrieve the variables.
    do_something(get<"min">(args...));
    do_something_else(get<"max">(args...));
}

And then when using the code:

foo(named_arg<"max">(5.), named_arg<"min">(0.1));

// or, more explicit
foo(named_arg_t<"max", double>(5.), named_arg_t<"min", double>(0.1));

// Or, for a more compact approach:
using namespace dooc::tuple_literals;
foo("max"_na = 5., "min"_na = 0.1);

Note that the order of parameters are unimportant.

args_fullfill always need the initial arg_list to differentiate between the args expected and args provided. Each entry inside the arg_list however can currently be of these 4 types:

  1. named_type<"[name]", [type]> : argument must have a type convertible to [type]. Argument is mandatory.
  2. named_auto<"[name]"> : Any type is allowed. Argument is mandatory.
  3. optional_typed_arg<"[name]", [type]> : argument must have a type convertible to [type]. Argument is optional.
  4. optional_auto_arg<"[name]"> : Any type is allowed. Argument is optional.

Optional arguments can be checked for using the constexpr template bool arg_provided<"[name]", [Ts...]>, or you can use get_or<"[name]">([default], args...). Example:

template<arg_with_any_name... TArgs>
requires args_fullfill<
            arg_list<optional_typed_arg<"arg1", int>, optional_auto_arg<"arg2">>,
            TArgs...>
void foo(TArgs&&... args) {
    // Will be '5' if 'arg1' is missing.
    int myVal = get_or<"arg1">(5, args...);
    // 'constexpr' because we do not want to compile what is inside if 'arg2' is missing.
    if constexpr(arg_provided<"arg2", TArgs...>) {
        do_something(get<"arg2">(std::forward<TArgs>(args)...));
    }
}

If you need to explicitly state the type that goes into the function, you can declare it like:

void bar(named_tuple<named_arg_t<"min", double>, named_arg_t<"max", double>> const& args)
{
    do_something(get<"min">(args));
    // or
    using namespace dooc::tuple_literals;
    do_something("max"_from(args));
}

This leads to the user code needing to wrap their arguments in {}-brackets:

using namespace dooc::tuple_literals;
bar({"min"_na = 1., "max"_na = 36.});

tuple slice view and transform:

More utilities in the library are the tuple_slice and tuple_transform. There is also an extended version of apply tailored for the named_tuple-type.

slice

The slice view allows one to take a large named_tuple, make a view of it and only expose a subset of all the members inside it. It only works on named_tuple, not std::tuple.

For example:

using namespace dooc::tuple_literals;
using namespace std::string_literals;
named_tuple t1{"arg1"_na = 1., "arg2"_na = "my string"s, "arg3"_na = 4};
auto v1 = get_slice_view<"arg1", "arg2">(t1);
assert(get<"arg1">(v1) == 1.);
assert(get<"arg2">(v1).size() != 0);
// get<"arg3">(t1);  <- gives a compile error.

Can be useful to filter out things that you don't want to expose in an intricate API call somewhere.

transform

Notice: the transform has a rather implicit 'ownership' behaviour (r-values becomes copies and l-values become references...). This might change in the future (a possible alternative is to use the std::unwrap_ref_decay_t-behaviour like the rest of the tuple to control whether a copy should be made or not).

Lazy tuple-transform view. This creates a view of a tuple (std::tuple or named_tuple) and changes the get<...>-function to apply a function on the value at the index before returning it. (An R-value ref will become a copy instead in the transform.) Example:

using namespace dooc::tuple_literals;
named_tuple t1{"double_arg"_na = 1., "int_arg"_na = 4};
auto transformed = transform([] (auto v) { return v * 2;}, t1);
assert(get<"double_arg">(transformed) == (1. * 2));
assert(get<"int_arg">(transformed) == (4 * 2));

You can chain-call transform and slice, making it useful when only a handful of parameters inside the named_tuple are qualified for the transformation function.

extended apply

apply has been extended for the named_tuple-type: you can supply a set of template_string:s inside a template_string_list_t (last regular argument) to modify the order of appliance. For example:

void foo(int a, std::string const& b);

// Don't use this readme for good example of names...
void bar(named_tuple<named_arg_t<"string", std::string>, named_arg_t<"int", int>> const& np) {
    // Notice the reversed order of args here. But we will still call 'foo' with the correct order
    //  of arguments.
    apply([] (auto const&... args) {foo(args...)}, np, template_string_list_t<"int", "string">{});
}

Contribution:

I happily accept contributions and feature requests. If you add a pull request however it is strongly encouraged that a test that shows the functional change is included in the pr (and it should fail without the rest of the changes). Exceptions are fixes for a specific compiler and pure refactoring/documentation.

Future plans:

  • Make a first release.
  • Do arguments with in/out/inout/fwd/move
  • Set up CI testing for supported compilers.

dooc-np's People

Contributors

doocman avatar bolry avatar

Watchers

 avatar  avatar

Forkers

bolry

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.