Giter Club home page Giter Club logo

icecream-cpp's Introduction

IceCream-Cpp

IceCream-Cpp is a little library to help with the print debugging on C++11 and forward.

With IceCream-Cpp, an execution inspection:

auto my_function(int i, double d) -> void
{
    std::cout << "1" << std::endl;
    if (condition)
        std::cout << "2" << std::endl;
    else
        std::cout << "3" << std::endl;
}

can be coded instead:

auto my_function(int i, double d) -> void
{
    IC();
    if (condition)
        IC();
    else
        IC();
}

and will print something like:

ic| test.cpp:34 in "void my_function(int, double)"
ic| test.cpp:36 in "void my_function(int, double)"

And any variable inspection like:

std::cout << "a: " << a
          << ", b: " << b
          << ", sum(a, b): " << sum(a, b)
          << std::endl;

can be simplified to:

IC(a, b, (sum(a, b)));

that will print:

ic| a: 7, b: 2, (sum(a, b)): 9

This library is inspired by and aims to behave the most identical as possible to the original Python IceCream library.

Install

The IceCream-Cpp is a one file, header only library, having the STL as its only dependency. To install it just copy the icecream.hpp header anywhere the compiler can find it.

Usage

After including the icecream.hpp header on a source file, test.cpp for this example:

#include "icecream.hpp"

A macro IC(...) will be defined. If called with no arguments it will print the prefix (default ic| ), the source file name, the current line number, and the current function signature. The code:

auto my_function(int foo, double bar) -> void
{
    // ...
    IC();
    // ...
}

will print:

ic| test.cpp:34 in "void my_function(int, double)"

If called with arguments, it will print the prefix, those arguments names, and its values. The code:

auto v0 = std::vector<int> {1, 2, 3};
auto s0 = std::string {"bla"};
IC(v0, s0, 3.14);

will print:

ic| v0: [1, 2, 3], s0: bla, 3.14: 3.14

Printing logic

Except by some especial types described bellow, an overload of the operator<<(ostream&, T) function must exist to all printed types T. If an overload of operator<< could not be resolved at IC(...) usage, the compilation will fail.

Pointer like types

When printing a pointer or pointer like type (std::unique_ptr, boost::shared_ptr, etc), the pointed value will be printed alongside the pointer value (the memory address). A null pointer won't be dereferenced, however a dangling or invalid pointer will potentially to cause a segmentation fault.

A code like:

auto v0 = std::make_shared<int>(7);
float* v1 = nullptr;
IC(v0, v1);

will print something like:

ic| v0: 7 at 0x55587b6f5410, v1: nullptr

To disable this functionality and print only the pointer value, just set the show_pointed_value option to false:

icecream::ic.show_pointed_value(false)

Having set the option to false, the same code above would print:

ic| v0: 0x55587b6f5410, v1: 0

Optional type

A std::optional<T> typed variable will print its value, if it has one, or nullopt otherwise.

The code:

auto v0 = std::optional<int> {10};
auto v1 = std::optional<int> {};
IC(v0, v1);

will print:

ic| v0: 10, v1: nullopt

Any possible overload resolution of operator<<(ostream&, T) will take precedence and will be used instead. The code:

auto operator<<(std::ostream& os, std::optional<std::string> const& value) -> std::ostream&
{
    if (value.has_value())
        os << "Has string " << *value;
    else
        os << "No string";
    return os;
}

// ...

auto v2 = std::optional<std::string> {"bla"};
IC(v2);

will print:

ic| v2: Has string bla

Pair type

A std::pair<T1, T2> typed variable will print both its values.

The code:

auto v0 = std::make_pair(10, 3.14);
IC(v0);

will print:

ic| v0: (10, 3.14)

As with other default print methods, any possible overload resolution of operator<<(ostream&, T) will take precedence and will be used instead.

Iterable types

If for a type A with an instance a, all operations below are valid:

auto it = begin(a);
it != end(a);
++it;
*it;

the type A is defined iterable and if no suitable overload resolution to operator<<(ostream&, A) is found, all of its items will be printed instead. The code:

auto v0 = std::list<int> {10, 20, 30};
IC(v0);

will print:

ic| v0: [10, 20, 30]

If there is any suitable overload resolution to operator<<(ostream&, A), it will take precedence and used instead. The code:

template <typename T>
auto operator<<(std::ostream& os, std::vector<T> const& value) -> std::ostream&
{
    os << "Vector - { ";
    for (auto& i : value)
    {
        os << "(" << i << ") ";
    }
    os << "}";
    return os;
}

auto v1 = std::vector<char> {'a', 'b', 'c'};
IC(v1);

will print:

ic| v1: Vector - { (a) (b) (c) }

Pitfalls

The IC(...) is a preprocessor macro, then care must be taken when using arguments with commas. Any argument having commas must be enclosed by parenthesis. The code:

auto sum(int i0, int i1) -> int
{
    return i0 + i1;
}

// ...

IC((sum(40, 2)));

will work and print something like:

ic| (sum(40, 2)): 42

Also, since IC(...) is a preprocessor macro, it can cause conflicts if there is some other IC identifier on code. To change the IC(...) macro to a longer ICECREAM(...) one, just define ICECREAM_LONG_NAME before the inclusion of icecream.hpp header:

#define ICECREAM_LONG_NAME
#include "icecream.hpp"

Similar projects

The CleanType library has a focus on printing readable types names, but there is support to print variables names and values alongside its types. An optional integration of CleanType with IceCream-Cpp, if the first is present on system, is being planed. With that would be possible to show the types of values within IC(...) macro.

Ongoing work

This library is at an early version, and it was tested on GCC 8.2 compiling with C++11, C++14 and C++17 flags. Some minor code changes could be needed to make it work with other compilers and older versions of GCC. Please report any success or problems.

Work must be done adding customization options to the Icecream class, and mimicking the relevant functionalities of the original Python IceCream library.

Any help is welcome :-)

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.