Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
37fe175c
authored
2014-08-26 14:43:20 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #776 from devYu/master
udpate ini.go
2 parents
fcc9d8c4
ccb61f04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
config/ini.go
config/ini.go
View file @
37fe175
...
...
@@ -147,7 +147,7 @@ type IniConfigContainer struct {
// Bool returns the boolean value for a given key.
func
(
c
*
IniConfigContainer
)
Bool
(
key
string
)
(
bool
,
error
)
{
return
strconv
.
ParseBool
(
c
.
getdata
(
strings
.
ToLower
(
key
)
))
return
strconv
.
ParseBool
(
c
.
getdata
(
key
))
}
// DefaultBool returns the boolean value for a given key.
...
...
@@ -162,7 +162,7 @@ func (c *IniConfigContainer) DefaultBool(key string, defaultval bool) bool {
// Int returns the integer value for a given key.
func
(
c
*
IniConfigContainer
)
Int
(
key
string
)
(
int
,
error
)
{
return
strconv
.
Atoi
(
c
.
getdata
(
strings
.
ToLower
(
key
)
))
return
strconv
.
Atoi
(
c
.
getdata
(
key
))
}
// DefaultInt returns the integer value for a given key.
...
...
@@ -177,7 +177,7 @@ func (c *IniConfigContainer) DefaultInt(key string, defaultval int) int {
// Int64 returns the int64 value for a given key.
func
(
c
*
IniConfigContainer
)
Int64
(
key
string
)
(
int64
,
error
)
{
return
strconv
.
ParseInt
(
c
.
getdata
(
strings
.
ToLower
(
key
)
),
10
,
64
)
return
strconv
.
ParseInt
(
c
.
getdata
(
key
),
10
,
64
)
}
// DefaultInt64 returns the int64 value for a given key.
...
...
@@ -192,7 +192,7 @@ func (c *IniConfigContainer) DefaultInt64(key string, defaultval int64) int64 {
// Float returns the float value for a given key.
func
(
c
*
IniConfigContainer
)
Float
(
key
string
)
(
float64
,
error
)
{
return
strconv
.
ParseFloat
(
c
.
getdata
(
strings
.
ToLower
(
key
)
),
64
)
return
strconv
.
ParseFloat
(
c
.
getdata
(
key
),
64
)
}
// DefaultFloat returns the float64 value for a given key.
...
...
@@ -207,8 +207,7 @@ func (c *IniConfigContainer) DefaultFloat(key string, defaultval float64) float6
// String returns the string value for a given key.
func
(
c
*
IniConfigContainer
)
String
(
key
string
)
string
{
key
=
strings
.
ToLower
(
key
)
return
c
.
getdata
(
strings
.
ToLower
(
key
))
return
c
.
getdata
(
key
)
}
// DefaultString returns the string value for a given key.
...
...
@@ -338,15 +337,15 @@ func (c *IniConfigContainer) DIY(key string) (v interface{}, err error) {
// section.key or key
func
(
c
*
IniConfigContainer
)
getdata
(
key
string
)
string
{
c
.
RLock
()
defer
c
.
RUnlock
()
if
len
(
key
)
==
0
{
return
""
}
c
.
RLock
()
defer
c
.
RUnlock
()
var
(
section
,
k
string
sectionKey
[]
string
=
strings
.
Split
(
key
,
"::"
)
sectionKey
[]
string
=
strings
.
Split
(
strings
.
ToLower
(
key
)
,
"::"
)
)
if
len
(
sectionKey
)
>=
2
{
section
=
sectionKey
[
0
]
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment