parser

package
v1.1.1 Latest Latest
Warning

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

Go to latest
Published: Jan 16, 2019 License: MIT Imports: 10 Imported by: 6

README

ini parser

This is a parser for parse INI format content to golang data

parser is ref the project: https://github.com/dombenson/go-ini, Thank you very much

Ref

License

MIT

Documentation

Overview

Package parser is a Parser for parse INI format content to golang data

There are example data:

# comments
name = inhere
age = 28
debug = true
hasQuota1 = 'this is val'
hasQuota2 = "this is val1"
shell = ${SHELL}
noEnv = ${NotExist|defValue}

; array in def section
tags[] = a
tags[] = b
tags[] = c

; comments
[sec1]
key = val0
some = value
stuff = things
; array in section
types[] = x
types[] = y

how to use, please see examples:

Example (FullParse)
p, err := Parse(iniStr, ModeFull)
// p, err := Parse(iniStr, ModeFull, NoDefSection)
if err != nil {
	panic(err)
}

fmt.Printf("full parse:\n%#v\n", p.FullData())
Output:

Example (SimpleParse)
// simple mode will ignore all array values
p, err := Parse(iniStr, ModeSimple)
if err != nil {
	panic(err)
}

fmt.Printf("simple parse:\n%#v\n", p.SimpleData())
Output:

Index

Examples

Constants

View Source
const (
	ModeFull   parseMode = 1
	ModeSimple parseMode = 2
)

parse mode ModeFull - will parse array ModeSimple - don't parse array value

Variables

This section is empty.

Functions

func Decode

func Decode(blob []byte, v interface{}) error

Decode INI content to golang data

func Encode

func Encode(v interface{}, defSection ...string) (out []byte, err error)

Encode golang data to INI

func EncodeFull added in v1.0.4

func EncodeFull(data map[string]interface{}, defSection ...string) (out []byte, err error)

EncodeFull full mode data to INI

func EncodeSimple added in v1.0.4

func EncodeSimple(data map[string]map[string]string, defSection ...string) (out []byte, err error)

EncodeSimple data to INI

func IgnoreCase

func IgnoreCase(p *Parser)

IgnoreCase set ignore-case

func NoDefSection

func NoDefSection(p *Parser)

NoDefSection set don't return DefSection title Usage:

Parser.NewWithOptions(ini.ParseEnv)

Types

type Parser added in v1.0.6

type Parser struct {

	// -- options ---
	// Ignore case for key name
	IgnoreCase bool
	// default section name. default is "__default"
	DefSection string
	// only for full parse mode
	NoDefSection bool
	// you can custom data collector
	Collector UserCollector
	// contains filtered or unexported fields
}

Parser definition

func FullParser

func FullParser(opts ...func(*Parser)) *Parser

FullParser create a full mode Parser with some options Deprecated: please use NewFulled() instead it.

func NewFulled added in v1.1.0

func NewFulled(opts ...func(*Parser)) *Parser

NewFulled create a full mode Parser with some options

func NewSimpled added in v1.1.0

func NewSimpled(opts ...func(*Parser)) *Parser

NewSimpled create a simple mode Parser

func Parse

func Parse(data string, mode parseMode, opts ...func(*Parser)) (p *Parser, err error)

Parse a INI data string to golang

func SimpleParser

func SimpleParser(opts ...func(*Parser)) *Parser

SimpleParser create a simple mode Parser. Deprecated: please use NewSimpled() instead it.

func (*Parser) FullData added in v1.0.6

func (p *Parser) FullData() map[string]interface{}

FullData get parsed data by full parse

func (*Parser) ParseBytes added in v1.1.0

func (p *Parser) ParseBytes(bts []byte) (err error)

ParseBytes parse from bytes data

func (*Parser) ParseFrom added in v1.0.6

func (p *Parser) ParseFrom(in *bufio.Scanner) (int64, error)

ParseFrom a data scanner

func (*Parser) ParseMode added in v1.0.6

func (p *Parser) ParseMode() uint8

ParseMode get current mode

func (*Parser) ParseString added in v1.0.6

func (p *Parser) ParseString(str string) error

ParseString parse from string data

func (*Parser) ParsedData added in v1.0.6

func (p *Parser) ParsedData() interface{}

ParsedData get parsed data

func (*Parser) Reset added in v1.0.6

func (p *Parser) Reset()

Reset parser, clear parsed data

func (*Parser) SimpleData added in v1.0.6

func (p *Parser) SimpleData() map[string]map[string]string

SimpleData get parsed data by simple parse

func (*Parser) WithOptions added in v1.0.6

func (p *Parser) WithOptions(opts ...func(*Parser))

WithOptions apply some options

type UserCollector

type UserCollector func(section, key, val string, isSlice bool)

UserCollector custom data collector. Notice: in simple mode, isSlice always is false.

Jump to

Keyboard shortcuts

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