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
97d98f12
Commit
97d98f12
authored
Jan 24, 2017
by
Jason Song
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimize array parser
parent
95cf37c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
91 additions
and
5 deletions
+91
-5
AbstractConfig.java
.../com/ctrip/framework/apollo/internals/AbstractConfig.java
+29
-5
DefaultConfigTest.java
...m/ctrip/framework/apollo/internals/DefaultConfigTest.java
+62
-0
No files found.
apollo-client/src/main/java/com/ctrip/framework/apollo/internals/AbstractConfig.java
View file @
97d98f12
...
...
@@ -5,6 +5,7 @@ import com.google.common.base.Objects;
import
com.google.common.cache.Cache
;
import
com.google.common.cache.CacheBuilder
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Maps
;
import
com.google.common.collect.Sets
;
import
com.ctrip.framework.apollo.Config
;
...
...
@@ -28,6 +29,7 @@ import org.unidal.lookup.ContainerLoader;
import
java.util.Date
;
import
java.util.List
;
import
java.util.Locale
;
import
java.util.Map
;
import
java.util.Properties
;
import
java.util.Set
;
import
java.util.concurrent.ExecutorService
;
...
...
@@ -53,6 +55,7 @@ public abstract class AbstractConfig implements Config {
private
volatile
Cache
<
String
,
Boolean
>
m_booleanCache
;
private
volatile
Cache
<
String
,
Date
>
m_dateCache
;
private
volatile
Cache
<
String
,
Long
>
m_durationCache
;
private
Map
<
String
,
Cache
<
String
,
String
[]>>
m_arrayCache
;
private
List
<
Cache
>
allCaches
;
private
AtomicLong
m_configVersion
;
//indicate config version
...
...
@@ -65,6 +68,7 @@ public abstract class AbstractConfig implements Config {
try
{
m_configUtil
=
ContainerLoader
.
getDefaultContainer
().
lookup
(
ConfigUtil
.
class
);
m_configVersion
=
new
AtomicLong
();
m_arrayCache
=
Maps
.
newConcurrentMap
();
allCaches
=
Lists
.
newArrayList
();
}
catch
(
ComponentLookupException
ex
)
{
Tracer
.
logError
(
ex
);
...
...
@@ -220,13 +224,29 @@ public abstract class AbstractConfig implements Config {
}
@Override
public
String
[]
getArrayProperty
(
String
key
,
String
delimiter
,
String
[]
defaultValue
)
{
public
String
[]
getArrayProperty
(
String
key
,
final
String
delimiter
,
String
[]
defaultValue
)
{
try
{
String
value
=
getProperty
(
key
,
null
);
if
(!
m_arrayCache
.
containsKey
(
delimiter
))
{
synchronized
(
this
)
{
if
(!
m_arrayCache
.
containsKey
(
delimiter
))
{
m_arrayCache
.
put
(
delimiter
,
this
.<
String
[]>
newCache
());
}
}
}
if
(
value
!=
null
)
{
return
value
.
split
(
delimiter
);
Cache
<
String
,
String
[]>
cache
=
m_arrayCache
.
get
(
delimiter
);
String
[]
result
=
cache
.
getIfPresent
(
key
);
if
(
result
!=
null
)
{
return
result
;
}
return
getValueAndStoreToCache
(
key
,
new
Function
<
String
,
String
[]>()
{
@Override
public
String
[]
apply
(
String
input
)
{
return
input
.
split
(
delimiter
);
}
},
cache
,
defaultValue
);
}
catch
(
Throwable
ex
)
{
Tracer
.
logError
(
new
ApolloConfigException
(
String
.
format
(
"getArrayProperty for %s failed, return default value"
,
key
),
ex
));
...
...
@@ -334,11 +354,15 @@ public abstract class AbstractConfig implements Config {
return
result
;
}
return
getValueAndStoreToCache
(
key
,
parser
,
cache
,
defaultValue
);
}
private
<
T
>
T
getValueAndStoreToCache
(
String
key
,
Function
<
String
,
T
>
parser
,
Cache
<
String
,
T
>
cache
,
T
defaultValue
)
{
long
currentConfigVersion
=
m_configVersion
.
get
();
String
value
=
getProperty
(
key
,
null
);
if
(
value
!=
null
)
{
result
=
parser
.
apply
(
value
);
T
result
=
parser
.
apply
(
value
);
if
(
result
!=
null
)
{
synchronized
(
this
)
{
...
...
apollo-client/src/test/java/com/ctrip/framework/apollo/internals/DefaultConfigTest.java
View file @
97d98f12
...
...
@@ -416,6 +416,68 @@ public class DefaultConfigTest extends ComponentTestCase {
}
@Test
public
void
testGetArrayPropertyMultipleTimesWithCache
()
throws
Exception
{
String
someKey
=
"someKey"
;
String
someDelimiter
=
","
;
String
someInvalidDelimiter
=
"{"
;
String
[]
values
=
new
String
[]{
"a"
,
"b"
,
"c"
};
String
someValue
=
Joiner
.
on
(
someDelimiter
).
join
(
values
);
String
[]
someDefaultValue
=
new
String
[]{
"1"
,
"2"
};
//set up config repo
someProperties
=
mock
(
Properties
.
class
);
when
(
someProperties
.
getProperty
(
someKey
)).
thenReturn
(
someValue
);
when
(
configRepository
.
getConfig
()).
thenReturn
(
someProperties
);
DefaultConfig
defaultConfig
=
new
DefaultConfig
(
someNamespace
,
configRepository
);
assertArrayEquals
(
values
,
defaultConfig
.
getArrayProperty
(
someKey
,
someDelimiter
,
someDefaultValue
));
assertArrayEquals
(
values
,
defaultConfig
.
getArrayProperty
(
someKey
,
someDelimiter
,
someDefaultValue
));
verify
(
someProperties
,
times
(
1
)).
getProperty
(
someKey
);
assertArrayEquals
(
someDefaultValue
,
defaultConfig
.
getArrayProperty
(
someKey
,
someInvalidDelimiter
,
someDefaultValue
));
assertArrayEquals
(
someDefaultValue
,
defaultConfig
.
getArrayProperty
(
someKey
,
someInvalidDelimiter
,
someDefaultValue
));
verify
(
someProperties
,
times
(
3
)).
getProperty
(
someKey
);
}
@Test
public
void
testGetArrayPropertyMultipleTimesWithCacheAndValueChanges
()
throws
Exception
{
String
someKey
=
"someKey"
;
String
someDelimiter
=
","
;
String
[]
values
=
new
String
[]{
"a"
,
"b"
,
"c"
};
String
[]
anotherValues
=
new
String
[]{
"b"
,
"c"
,
"d"
};
String
someValue
=
Joiner
.
on
(
someDelimiter
).
join
(
values
);
String
anotherValue
=
Joiner
.
on
(
someDelimiter
).
join
(
anotherValues
);
String
[]
someDefaultValue
=
new
String
[]{
"1"
,
"2"
};
//set up config repo
someProperties
=
new
Properties
();
someProperties
.
setProperty
(
someKey
,
someValue
);
when
(
configRepository
.
getConfig
()).
thenReturn
(
someProperties
);
Properties
anotherProperties
=
new
Properties
();
anotherProperties
.
setProperty
(
someKey
,
anotherValue
);
DefaultConfig
defaultConfig
=
new
DefaultConfig
(
someNamespace
,
configRepository
);
assertArrayEquals
(
values
,
defaultConfig
.
getArrayProperty
(
someKey
,
someDelimiter
,
someDefaultValue
));
defaultConfig
.
onRepositoryChange
(
someNamespace
,
anotherProperties
);
assertArrayEquals
(
anotherValues
,
defaultConfig
.
getArrayProperty
(
someKey
,
someDelimiter
,
someDefaultValue
));
}
@Test
public
void
testGetDatePropertyWithFormat
()
throws
Exception
{
Date
someDefaultValue
=
new
Date
();
...
...
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