3

{fmt} ライブラリを使用しており、引数の動的リストを作成する必要があります。基本的に、ドキュメントページのようなフォーマット文字列があります

fmt::print("Hello, {name}", fmt::arg("name", "test"), ...);

ただし、引数リスト (引数の数を含む) は実行時にのみわかります。インスタンスfmt::ArgListのリストを取るものを見てきました。fmt::Argしかし、名前付き引数は内部クラスfmt::internal::NamedArgであり、リストに渡す方法がわかりません。

何か案は?

4

2 に答える 2

3

fmtlib 内部を使用して解決策を見つけました。次のコードは、fmtlib を使用して文字列 - 文字列辞書から文字列をフォーマットします。fmtlib はより小さな引数リストの最適化を使用するため、arg-counts >= 16 を処理するには特別な処理を含める必要がありました。

// helper only:
inline void set_type(fmt::ULongLong& result, uint32_t index, fmt::internal::Arg::Type t)
{
    unsigned shift = index * 4;
    uint64_t mask = 0xf;
    result |= static_cast<uint64_t>(t) << shift;
}

// input: 
//     pattern = fmt::format string
//     vars = dictionary of string/string arguments
// output:
//     formatted string
std::string dformat(const std::string& pattern, const std::unordered_map<std::string, std::string>& vars)
{
    // this is a vector of "named arguments" - straightforward enough.
    std::vector<fmt::internal::NamedArg<char>> av;

    // fmtlib uses an optimization that stores the types of the first 16 arguments as 
    // bitmask-encoded 64-bit integer. 
    fmt::ULongLong types = 0;

    // we need to build the named-arguments vector. 
    // we cannot resize it to the required size (even though we know it - we have the
    // dictionary), because NamedArg has no default constructor.
    uint32_t index = 0;
    for (const auto& item : vars)
    {
        av.emplace_back(fmt::internal::NamedArg<char>(item.first, item.second));

        // we need to pack the first 16 arguments - see above
        if (index < fmt::ArgList::MAX_PACKED_ARGS)
        {
            set_type(types, index, fmt::internal::Arg::NAMED_ARG);
        }
        ++index;
    }

    // and this is a bit tricky: depending on the number of arguments we use two mutually
    // incompatible vectors to create an arglist. It has everything to do with the speed
    // (and memory) optimization above, even though the code looks nearly identical.
    if (index >= fmt::ArgList::MAX_PACKED_ARGS)
    {
        std::vector<fmt::internal::Arg> avdata;

        // note the additional terminating Arg::NONE
        avdata.resize(vars.size() + 1);
        index = 0;
        for (const auto& item : av)
        {
            avdata[index].type = fmt::internal::Arg::NAMED_ARG;
            avdata[index].pointer = &av[index];
            ++index;
        }
        return fmt::format(pattern, fmt::ArgList(types, &avdata[0]));
    }
    else
    {
        std::vector<fmt::internal::Value> avdata;

        // no need for terminating Arg::NONE, because ARG_NONE is the last encoded type 
        avdata.resize(vars.size());
        index = 0;
        for (const auto& item : av)
        {
            avdata[index].pointer = &av[index];
            ++index;
        }
        return fmt::format(pattern, fmt::ArgList(types, &avdata[0]));
    }
}

使用例:

std::unordered_map<std::string, std::string> vars;
vars["FIRSTNAME"] = "Foo";
vars["LASTNAME"] = "Bar";

std::string result = dformat("Hello {FIRSTNAME} {LASTNAME}, how are you doing", vars);
于 2016-09-29T17:47:27.737 に答える