Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
a86dd3e0
Unverified
Commit
a86dd3e0
authored
Oct 27, 2017
by
Jason Song
Committed by
GitHub
Oct 27, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #803 from johnsonyjl/master
refactor the ResourceUtils for performance
parents
2bebe108
4ff0f795
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
39 deletions
+42
-39
ResourceUtils.java
.../com/ctrip/framework/apollo/core/utils/ResourceUtils.java
+42
-39
No files found.
apollo-core/src/main/java/com/ctrip/framework/apollo/core/utils/ResourceUtils.java
View file @
a86dd3e0
...
...
@@ -7,10 +7,8 @@ import java.io.File;
import
java.io.FileInputStream
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.nio.file.Files
;
import
java.nio.file.Path
;
import
java.io.FileNotFoundException
;
import
java.nio.file.Paths
;
import
java.util.Enumeration
;
import
java.util.Properties
;
public
class
ResourceUtils
{
...
...
@@ -20,29 +18,18 @@ public class ResourceUtils {
@SuppressWarnings
(
"unchecked"
)
public
static
Properties
readConfigFile
(
String
configPath
,
Properties
defaults
)
{
InputStream
in
=
loadConfigFileFromDefaultSearchLocations
(
configPath
);
logger
.
debug
(
"Reading config from resource {}"
,
configPath
);
Properties
props
=
new
Properties
();
try
{
if
(
in
==
null
)
{
// load outside resource under current user path
Path
path
=
new
File
(
System
.
getProperty
(
"user.dir"
)
+
configPath
).
toPath
();
if
(
Files
.
isReadable
(
path
))
{
in
=
new
FileInputStream
(
path
.
toFile
());
logger
.
debug
(
"Reading config from file {} "
,
path
);
}
else
{
logger
.
warn
(
"Could not find available config file"
);
}
}
if
(
defaults
!=
null
)
{
props
.
putAll
(
defaults
);
}
if
(
defaults
!=
null
)
{
props
.
putAll
(
defaults
);
}
InputStream
in
=
loadConfigFileFromDefaultSearchLocations
(
configPath
);
try
{
if
(
in
!=
null
)
{
props
.
load
(
in
);
in
.
close
();
}
}
catch
(
Exception
ex
)
{
}
catch
(
IO
Exception
ex
)
{
logger
.
warn
(
"Reading config failed: {}"
,
ex
.
getMessage
());
}
finally
{
if
(
in
!=
null
)
{
...
...
@@ -53,33 +40,48 @@ public class ResourceUtils {
}
}
}
StringBuilder
sb
=
new
StringBuilder
();
for
(
Enumeration
<
String
>
e
=
(
Enumeration
<
String
>)
props
.
propertyNames
();
e
.
hasMoreElements
();)
{
String
key
=
e
.
nextElement
();
String
val
=
(
String
)
props
.
getProperty
(
key
);
sb
.
append
(
key
).
append
(
'='
).
append
(
val
).
append
(
'\n'
);
}
if
(
sb
.
length
()
>
0
)
{
logger
.
debug
(
"Reading properties: \n"
+
sb
.
toString
());
}
else
{
logger
.
warn
(
"No available properties"
);
if
(
logger
.
isDebugEnabled
())
{
StringBuilder
sb
=
new
StringBuilder
();
for
(
String
sropertyName
:
props
.
stringPropertyNames
())
{
sb
.
append
(
sropertyName
).
append
(
'='
).
append
(
props
.
getProperty
(
sropertyName
)).
append
(
'\n'
);
}
if
(
sb
.
length
()
>
0
)
{
logger
.
debug
(
"Reading properties: \n"
+
sb
.
toString
());
}
else
{
logger
.
warn
(
"No available properties"
);
}
}
return
props
;
}
private
static
InputStream
loadConfigFileFromDefaultSearchLocations
(
String
configPath
)
{
for
(
String
searchLocation
:
DEFAULT_FILE_SEARCH_LOCATIONS
)
{
try
{
try
{
for
(
String
searchLocation
:
DEFAULT_FILE_SEARCH_LOCATIONS
)
{
File
candidate
=
Paths
.
get
(
searchLocation
,
configPath
).
toFile
();
if
(
candidate
.
exists
()
&&
candidate
.
isFile
()
&&
candidate
.
canRead
())
{
logger
.
debug
(
"Reading config from resource {}"
,
candidate
.
getAbsolutePath
());
return
new
FileInputStream
(
candidate
);
}
}
catch
(
Throwable
ex
)
{
//ignore
}
}
return
ClassLoaderUtil
.
getLoader
().
getResourceAsStream
(
configPath
);
InputStream
in
=
ClassLoaderUtil
.
getLoader
().
getResourceAsStream
(
configPath
);
if
(
in
!=
null
)
{
logger
.
debug
(
"Reading config from resource {}"
,
ClassLoaderUtil
.
getLoader
().
getResource
(
configPath
).
getPath
());
return
in
;
}
else
{
// load outside resource under current user path
File
candidate
=
new
File
(
System
.
getProperty
(
"user.dir"
)
+
configPath
);
if
(
candidate
.
exists
()
&&
candidate
.
isFile
()
&&
candidate
.
canRead
())
{
logger
.
debug
(
"Reading config from resource {}"
,
candidate
.
getAbsolutePath
());
return
new
FileInputStream
(
candidate
);
}
}
}
catch
(
FileNotFoundException
e
)
{
//ignore
}
return
null
;
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment