Code Monkey home page Code Monkey logo

custom-data-storage's Introduction

Simple Data Storage for C++

Note : still in progress (basic function is working)


format of the data :
dataType=its value
dataType=its value
dataType=its value
@@@ (to separate each object)

You can see the example on the folder data.

To use this as simple as creating CustomParser object. Set source for it. Call function load. And you can use it as you like with function get and set.

CustomParser mahasiswa;
mahasiswa.setSource("data/mahasiswa");
mahasiswa.load();
std::cout<<mahasiswa.find("nama", "Muhammad Da").get("jurusan);

In this code "nama" is data type, "Muhammad Da" is expected value of it. If there is entity that have "nama" = "Muhammad Da" then it returns the value of "jurusan".

mahasiswa.find("nama", "Muhammad Haekal").set("jurusan", "Teknik Perlelean");
mahasiswa.update();

in this code it get will return Entity that has "name" = "Muhammad Haekal", with "nrp" = "666". Then using set function in entity class it will change it's "jurusan" with "Teknik Perlelean"

Entity newEt;
newEt.add("nama", "Muhammad Sumbul");
newEt.add("jenis", "Manusia");

function add() adding new data to entity.

mahasiswa.add(newEt);
mahasiswa.update();

Adding entity to CustomDataParser.

Function update() will update the file

custom-data-storage's People

Contributors

muhhae 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.