Coder Social home page Coder Social logo

store's Introduction

Store - Read and write data structures

Store provides the ability to write the data structures to a file and read from a file in the Go programming language.

This module was inspired by Perl Storable. The module provides possibility of the data structures in a JSON format or in a binary format. During the writing or reading process the file is locked.

Reading/writing in JSON format were implemented with the standard library encoding/json.

The module encoding/gob is used for reading/writing in binary format.

Install

go get -u github.com/giesan/store

Usage

Writing in JSON format to a file:

package main

import (
	"log"
	"time"

	"github.com/giesan/store"
)

type message struct {
	Name      string
	Timestamp time.Time
	Payload   []byte
	Ssid      []uint32
}

func main() {
	msg := &message{
		Name:      "John",
		Timestamp: time.Now(),
		Payload:   []byte("hi"),
		Ssid:      []uint32{1, 2, 3},
	}

	if _, err := store.WriteJSON("./temp.json", msg); err != nil {
		log.Fatalln(err)
	}
}

Read from a file written in JSON format:

package main

import (
	"log"
	"time"

	"github.com/giesan/store"
)

type message struct {
	Name      string
	Timestamp time.Time
	Payload   []byte
	Ssid      []uint32
}

func main() {
	var msg message

	if err := store.ReadJSON("./temp.json", &msg); err != nil {
		log.Fatalln(err)
	}

	log.Println(msg.Name)
}

Writing in binary format to a file:

package main

import (
	"log"
	"time"

	"github.com/giesan/store"
)

type message struct {
	Name      string
	Timestamp time.Time
	Payload   []byte
	Ssid      []uint32
}

func main() {
	msg := &message{
		Name:      "John",
		Timestamp: time.Now(),
		Payload:   []byte("hi"),
		Ssid:      []uint32{1, 2, 3},
	}

	if _, err := store.WriteBinary("./temp.bin", msg); err != nil {
		log.Fatalln(err)
	}
}

Read from a file written in binary format:

package main

import (
	"log"
	"time"

	"github.com/giesan/store"
)

type message struct {
	Name      string
	Timestamp time.Time
	Payload   []byte
	Ssid      []uint32
}

func main() {
	var msg message

	if err := store.ReadBinary("./temp.bin", &msg); err != nil {
		log.Fatalln(err)
	}

	log.Println(msg.Name)
}

Author

Andrej Giesbrecht

LICENSE

store released under MIT license, refer LICENSE file.

store's People

Contributors

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