1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
package editorconfig
import (
"fmt"
"os"
"gopkg.in/ini.v1"
)
// SimpleParser implements the Parser interface but without doing any caching.
type SimpleParser struct{}
// ParseInit calls go-ini's Load on the file.
func (parser *SimpleParser) ParseIni(filename string) (*Editorconfig, error) {
ec, warning, err := parser.ParseIniGraceful(filename)
if err != nil {
return nil, err
}
return ec, warning
}
// ParseIni calls go-ini's Load on the file and keep warnings in a separate error.
func (parser *SimpleParser) ParseIniGraceful(filename string) (*Editorconfig, error, error) {
fp, err := os.Open(filename)
if err != nil {
return nil, nil, err //nolint:wrapcheck
}
defer fp.Close()
iniFile, err := ini.Load(fp)
if err != nil {
return nil, nil, fmt.Errorf("cannot load %q: %w", filename, err)
}
return newEditorconfig(iniFile)
}
// FnmatchCase calls the module's FnmatchCase.
func (parser *SimpleParser) FnmatchCase(selector string, filename string) (bool, error) {
return FnmatchCase(selector, filename)
}
|