forked from unknwon/goconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite.go
More file actions
78 lines (69 loc) · 1.95 KB
/
write.go
File metadata and controls
78 lines (69 loc) · 1.95 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright 2013 Unknown
//
// Licensed under the Apache License, Version 2.0 (the "License"): you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
package goconfig
import (
"bytes"
"os"
)
// SaveConfigFile writes configuration file to local file system
func SaveConfigFile(c *ConfigFile, filename string) (err error) {
// Write configuration file by filename
var f *os.File
if f, err = os.Create(filename); err != nil {
return err
}
// Data buffer
buf := bytes.NewBuffer(nil)
// Write sections
for _, section := range c.sectionList {
// Write section comments
if len(c.GetSectionComments(section)) > 0 {
if _, err = buf.WriteString(c.GetSectionComments(section) + LineBreak); err != nil {
return err
}
}
// Write section name
if _, err = buf.WriteString("[" + section + "]" + LineBreak); err != nil {
return err
}
// Write keys
for _, key := range c.keyList[section] {
if key != " " {
// Write key comments
if len(c.GetKeyComments(section, key)) > 0 {
if _, err = buf.WriteString(c.GetKeyComments(section, key) + LineBreak); err != nil {
return err
}
}
keyName := key
// Check if it's auto increment.
if keyName[0] == '#' {
keyName = "-"
}
// Write key and value
if _, err = buf.WriteString(keyName + "=" + c.data[section][key] + LineBreak); err != nil {
return err
}
}
}
// Put a line between sections
if _, err = buf.WriteString(LineBreak); err != nil {
return err
}
}
// Write to file
buf.WriteTo(f)
f.Close()
return nil
}