{"id":15748206,"url":"https://github.com/ueberaccelerate/props","last_synced_at":"2026-04-27T23:33:10.800Z","repository":{"id":180639900,"uuid":"182857717","full_name":"ueberaccelerate/props","owner":"ueberaccelerate","description":"Serialization library based on yaml-cpp","archived":false,"fork":false,"pushed_at":"2021-09-30T09:50:22.000Z","size":172,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-31T06:43:17.692Z","etag":null,"topics":["cpp","library","serialization","yaml"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ueberaccelerate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-22T19:53:01.000Z","updated_at":"2021-02-17T09:00:28.000Z","dependencies_parsed_at":"2023-07-16T06:48:32.831Z","dependency_job_id":null,"html_url":"https://github.com/ueberaccelerate/props","commit_stats":null,"previous_names":["ueberaccelerate/props"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ueberaccelerate/props","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberaccelerate%2Fprops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberaccelerate%2Fprops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberaccelerate%2Fprops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberaccelerate%2Fprops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ueberaccelerate","download_url":"https://codeload.github.com/ueberaccelerate/props/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ueberaccelerate%2Fprops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32360110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","library","serialization","yaml"],"created_at":"2024-10-04T05:40:53.143Z","updated_at":"2026-04-27T23:33:10.775Z","avatar_url":"https://github.com/ueberaccelerate.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Property sdk\r\n[![Build Status](https://travis-ci.com/ueberaccelerate/props.svg?branch=master)](https://travis-ci.com/ueberaccelerate/props)\r\n\r\nPropertysdk is a C++ project that allow you make serialize object.\r\n\r\n## Build the library\r\n\r\n```\r\nmkdir build \u0026\u0026 cd build\r\ncmake ..\r\nmake -j\r\n```\r\n## Examples\r\n```\r\n#include \u003cproperty/property.hpp\u003e\r\n\r\n#include \u003cstring\u003e\r\n\r\nclass Test SERIALIZETHIS(Test)\r\n{\r\n    SCALAR(age, int, \"age of test\");\r\n    SEQUENCE(childs, std::string, \"names vector\");\r\n    public:\r\n    CONSTRUCTORS(Test)\r\n    \r\n    bool operator==(const Test \u0026test) const{\r\n        if (this-\u003eage.get() != test.age.get()) return false;\r\n        if (this-\u003echilds.size() != test.childs.size()) return false;\r\n        \r\n        for (size_t i = 0; i \u003c this-\u003echilds.size(); ++i) {\r\n            if(this-\u003echilds[i] != test.childs[i]) return false;\r\n        }\r\n        return true;\r\n    }\r\n    bool operator!=(const Test \u0026test) const  {\r\n        return !Test::operator==(test);\r\n    }\r\n};\r\nint main() {\r\n  Test test{\"test\", \"Simple Test class with scalar and basic sequnece\"};\r\n  test.age.set(77);\r\n  test.childs.push_back(\"string one\");\r\n  test.childs.push_back(\"string two\");\r\n  std::string serdata;\r\n  test3.serialize([\u0026serdata](const std::string \u0026sd) {\r\n    serdata = sd;\r\n  });\r\n    \r\n  Test ser_data;\r\n  try {\r\n    ser_data.deserialize(serdata);\r\n  }\r\n  catch (property::serialize_error \u0026e) {\r\n    return -1;\r\n  }\r\n}\r\n\r\n```\r\n## Maintenance\r\n\r\nMaintainers: ueberacclerate \u003cueberacclerate@gmail.com\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fueberaccelerate%2Fprops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fueberaccelerate%2Fprops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fueberaccelerate%2Fprops/lists"}