store

package module
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 28, 2020 License: MIT Imports: 9 Imported by: 2

README

Store

Store is a dead simple configuration manager for Go applications.

GoDoc

I didn't like existing configuration management solutions like globalconf, tachyon or viper. First two just don't feel right and viper, imo, a little overcomplicated—definitely offering too much for small things. Store supports either JSON, TOML or YAML out-of-the-box and lets you register practically any other configuration format.

Look, when I say it's dead simple, I actually mean it:

package main

import (
	"log"
	"time"

	"github.com/tucnak/store"
)

type Cat struct {
	Name   string `toml:"naym"`
	Clever bool   `toml:"ayy"`
}

type Hotel struct {
	Name string
	Cats []Cat `toml:"guests"`

OpeningHours
}

func main() {
  hotel := Hotel {
    Name: "Grand Budapest Hotel",
		Cats: []Cat{
			{"Rudolph", true},
			{"Patrick", false},
			{"Jeremy", true},
		},
    OpeningHours: store.Duration(time.Hour*8)
  }

// Load from some path, if file is not found it will be created with the values currently in the struct
	if err := store.Load("config/hotel.toml", &hotel); err != nil {
		log.Println("failed to load the cat hotel:", err)
		return
	}

	// ...

	// Save to some path
	if err := store.Save("config/hotel.toml", &hotel); err != nil {
		log.Println("failed to save the cat hotel:", err)
		return
	}
}

Store supports any other formats via the handy registration system: register the format once and you'd be able to Load and Save files in it afterwards:

store.Register("ini", ini.Marshal, ini.Unmarshal)

err := store.Load("configuration.ini", &object)
// ...

Duration

Store provides a special Duration type. Use it instead of time.Duration in your configs to make them marshall to strings in your config files


type Cat struct {
	Name   string `toml:"naym"`
	Clever bool   `toml:"ayy"`
}

type Hotel struct {
	Name string
	Cats []Cat `toml:"guests"`

  OpeningHours config.Duration
}


func main() {
  hotel := Hotel {
    OpeningHours: store.Duration(time.Hour*8)
  }


  // ....
}

Concurrency

In a multithreading scenario it is recommended that you use the atomic.Value interface to handle the config itself in a sane way

Documentation

Overview

Package store is a dead simple configuration manager for Go applications.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Load

func Load(path string, v interface{}) error

Load reads a configuration from `path` and puts it into `v` pointer. Store supports either JSON, TOML or YAML and will deduce the file format out of the filename (.json/.toml/.yaml). For other formats of custom extensions please you LoadWith.

Path is a full filename, including the file extension, e.g. "foobar.json". If `path` doesn't exist, Load will create one and emptify `v` pointer by replacing it with a newly created object, derived from type of `v`.

Load panics on unknown configuration formats.

func LoadWith

func LoadWith(path string, v interface{}, um UnmarshalFunc) error

LoadWith loads the configuration using any unmarshaler at all.

func Register

func Register(extension string, m MarshalFunc, um UnmarshalFunc)

Register is the way you register configuration formats, by mapping some file name extension to corresponding marshal and unmarshal functions. Once registered, the format given would be compatible with Load and Save.

func Save

func Save(path string, v interface{}) error

Save puts a configuration from `v` pointer into a file `path`. Store supports either JSON, TOML or YAML and will deduce the file format out of the filename (.json/.toml/.yaml). For other formats of custom extensions please you LoadWith.

Path is a full filename, including the file extension, e.g. "foobar.json".

Save panics on unknown configuration formats.

func SaveWith

func SaveWith(path string, v interface{}, m MarshalFunc) error

SaveWith saves the configuration using any marshaler at all.

Types

type Duration

type Duration time.Duration

func (Duration) MarshalText

func (d Duration) MarshalText() ([]byte, error)

MarshalText implements encoding.TextMarshaler

func (*Duration) UnmarshalText

func (d *Duration) UnmarshalText(data []byte) error

UnmarshalText implements encoding.TextUnmarshaler

type MarshalFunc

type MarshalFunc func(v interface{}) ([]byte, error)

MarshalFunc is any marshaler.

type UnmarshalFunc

type UnmarshalFunc func(data []byte, v interface{}) error

UnmarshalFunc is any unmarshaler.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL