Skip to content
Snippets Groups Projects
Forked from Eclipse Projects / aidge / aidge_core
1877 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Formatting.hpp 1.80 KiB
/********************************************************************************
 * Copyright (c) 2023 CEA-List
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 ********************************************************************************/

#ifndef AIDGE_FORMATTING_H_
#define AIDGE_FORMATTING_H_

#include <memory>
#include <string>
#include <vector>

namespace Aidge {
// The code snippet below is licensed under CC0 1.0.
template<typename ... Args>
std::string stringFormat(const std::string& format, Args... args) {
// Disable security warning on GCC
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-security"
// Disable security warning on MSVC
#pragma warning(push)
#pragma warning(disable : 4774)
    int size_s = std::snprintf(nullptr, 0, format.c_str(), args...) + 1; // Extra space for '\0'
    if (size_s <= 0) {
        std::printf("Error during formatting.");
        std::abort();
    }
    auto size = static_cast<size_t>(size_s);
    std::unique_ptr<char[]> buf(new char[size]);
    std::snprintf(buf.get(), size, format.c_str(), args...);
    return std::string(buf.get(), buf.get() + size - 1); // We don't want the '\0' inside
#pragma warning(pop) 
#pragma GCC diagnostic pop
}

/**
 * Print any iterable object in a std::string.
*/
template <class T>
std::string print(const T& vec, const std::string& format) {
    std::string str = "{";
    bool first = true;
    for (const auto& val : vec) {
        if (!first) {
            str += ", ";
        }
        else {
            first = false;
        }
        str += stringFormat(format, val);
    }
    str += "}";
    return str;
}
}

#endif //AIDGE_FORMATTING_H_