GithubHelp home page GithubHelp logo

deckard's Introduction

Deckard - Utility Modules

  1. in your CMakelists.txt add:
include(FetchContent)
FetchContent_Declare(
  Deckard
  GIT_REPOSITORY https://github.com/Masfo/Deckard.git
  GIT_TAG main
)
FetchContent_MakeAvailable(Deckard)

target_link_libraries(${CMAKE_PROJECT_NAME} Deckard)

Modules:

  • namespace
    // Everything is under deckard namespace
    using namespace deckard;
  • Debug / Assert
    import deckard;
    
    dbg::trace("Hello {}", "World"); // winmain.cpp(15): Hello World
    dbg::println("Similar to trace");  // Similar to trace
    dbg::print("Like dbgln but ");     // 
    dbg::print("w/o newline\n");       // Like dbgln but w/o newline 
    
    dbg::panic("reason");	
    
    assert::if_true_(true, "Message");
    assert::if_false(true);
    
    assert::if_equal(0==0);_
    assert::if_not_equal(0==1);
    
    assert::if_close_enough(3.14f, 3.0);
    
    assert::if_null(...);
    assert::if_not_null(...);
  • Types
    import deckard;
    
    // i8,u8,i16,u16,i32,u32,i64,u64
    
    u8 u  = 64_u8;
    i64 i = 112233_i64;
    
    // auto value = as<To>(From)
    float X = 128.0f;
    auto  u = as<i8>(X);
    //  : Could not convert value '128' safely. Target too small: -128 < 128 < 127 
    //  : Loss of precision casting '128.000000' to '-128'
    
    float X = 128.0f;
    auto  u = as<u16>(X);  // No warning, value fits
    
    auto value = as<u32>(256);
    
    // Enums as flags
    namespace Filesystem
    {
      enum class Permission : u8
      {
      	No      = 0x00,
      	Read    = 0x01,
      	Write   = 0x02,
      	Execute = 0x04,
      };
    
      // Enable flags by adding the following to your enum
      consteval void enable_bitmask_operations(Permission);
    } // namespace Filesystem
    
    // Usage:
    
    using Filesystem::Permission;
    Permission readAndWrite{Permission::Read | Permission::Write | Permission::Execute};
    
    readAndWrite &= ~Permission::Write; // Read | Execute
    readAndWrite |= Permission::Write;  // Read | Execute | Write
    
    // or alternatively using += and -=
    readAndWrite -= Permission::Execute; // Read | Write
    readAndWrite += Permission::Execute; // Read | Write | Execute
  • Result
    // Default error is std::string
    Ok(<value>);
    Err("error value");
    
    // Return value or error
    auto getex(int x) -> Result<int>
    {
    	if (x == 10)
    		return Ok(x); 
    	else
    		return Err("bad int {}", x);
    }
    
    if (auto v = getex(100); v)
    {
    	dbg::trace("int {}", *v);
    }
  • Fileview
    import deckard;
    
    Fileview f;
    f.open("dice.qoi", FileAccess::ReadWrite);
    
    f[f.size()-1] = 0x01;
  • Base64
    import deckard.base64;
    
    // Encode
    std::string encode(const std::span<const u8> input)
    std::string encode_str(std::string_view input)
    
    // Decode
    std::optional<std::vector<u8>> decode(std::string_view encoded_input)
    std::string decode_str(std::string_view encoded_input)
    
    // example:
    std::array<byte, 4> buff{'Z', 'E', 'U', 'S'};
    
    auto encoded_base64 = utils::base64::encode(buff); // WkVVUw==
    auto decoded_base64 = utils::base64::decode(encoded_base64); // Optional vector with original data
  • SHA256
    import deckard.sha2;
    
    using namespace deckard;
    sha256::hasher hasher256;
    hasher256.update("abc");
    auto digest = hasher256.finalize().to_string();
    // digest = "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad"
    
    
    sha512::hasher hasher512;
    hasher512.update("abc");
    auto digest = hasher512.finalize().to_string();
    // digest = "ddaf35a193617abacc417349ae20...d454d4423643ce80e2a9ac94fa54ca49f"
  • ZSTD
    import deckard.zstd;
    
    using namespace deckard;
    std::vector<u8> buffer;
    buffer.resize(1'024);
    std::ranges::fill(buffer, 'X');
    
    // Compress
    std::vector<u8> comp;
    comp.resize(zstd::bound(buffer));
    auto ok = zstd::compress(buffer, comp);
    if (!ok)
    {
    	dbg::println("Failed to compress");
    }
    else
    	comp.resize(*ok);
    
    
    // Uncompress
    std::vector<u8> uncomp;
    uncomp.resize(buffer.size());
    ok = zstd::uncompress(comp, uncomp);
    if (!ok)
    	dbg::println("Failed to uncompress");
    else
    {
    	auto kss = *ok;
    	uncomp.resize(*ok);
    }
  • Serialization
    import deckard.serialization;
    using namespace deckard;
    
    bitwriter writer;
    
    writer.write(0xAABB'CCDD);           // 32
    writer.write(0xEEFF'0011'2233'4455); // 96
    writer.write(2.0f);                  // 128
    writer.write(0b1111'0000, 8);        // 136
    writer.write("abcd");                // 168
    
    std::array<u8, 21> correct{
    	  0xAA, 0xBB, 0xCC, 0xDD,					// AABBCCDD
    	  0xEE, 0xFF, 0x00, 0x11, 0x22, 0x33, 0x44, 0x55,		// EEFF001122334455
    	  0x40, 0x00, 0x00, 0x00,					// 2.0f
    	  0xF0,								// 0b1111'0000
    	  0x61, 0x62, 0x63, 0x64};					// abcd
    
    std::ranges::equal(correct, writer.data()) == true;
    
    // reader
    bitreader reader(writer.data());
    
    
    u32 v32       = reader.read<u32>();		// 0xAABCCDD
    u64 v64       = reader.read<u64>();		// 0xEEFF001122334455
    f32 f         = reader.read<f32>();		// 2.0f
    u8 u          = reader.read<u32>(8);		// 0b1111'0000
    std::string s = reader.read_string(4 * 8);	// "abcd"

deckard's People

Contributors

masfo avatar

Stargazers

 avatar

Watchers

 avatar

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.