Code Monkey home page Code Monkey logo

yasli's Introduction

yasli - easy C++ serialization

Highlights:

  • Write serialization once, access multiple formats:
    • JSON - enjoy static typing while using interchangable format.
    • Binary - compact and efficient storage.
    • QPropertyTree - powerful property grid.
  • Good support for composite types and STL containers.
  • Support of polymorphic types and enum-annotations.
  • Serialization of private fields, non-intrusive serialization.
  • Can be extended without modifying core library.
  • Portable.

Quick example:

enum Position {
   ENGINEER,
   MANAGER,
};

struct Entry {
	std::string name = "Foo Bar";
	int age = 25;
	Position position = ENGINEER;

	void serialize(yasli::Archive& ar) {
		ar(name, "name");
		ar(age, "age");
		ar(position, "position");
	}
};

struct Document {
	std::vector<Entry> entries = { Entry() };

	void serialize(yasli::Archive& ar) {
		ar(entries, "entries");
	}
};

YASLI_ENUM_BEGIN(Position, "Position")
YASLI_ENUM(ENGINEER, "engineer", "Engineer")
YASLI_ENUM(MANAGER, "manager", "Manager")
YASLI_ENUM_END()

Document instance, serialized through JSON-archive will look like this:

{ "entries": [ { "name": "Foo Bar", "age": 25, "position": "engineer" } ] }

See Documentation for further details.

QPropertyTree - property grid widget for Qt

Features:

  • Uses the same serialize-methods to fetch/update data.
  • Collection operations: addition, removal and reordering with Drag & Drop.
  • Enumerations appear as combo-boxes.
  • Access to polymorphic types.
  • Extendable.

yasli's People

Contributors

koalefant avatar alexanderkotliar 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.