Kalle Stenflo
9 years ago
13 changed files with 74 additions and 99 deletions
@ -0,0 +1,23 @@ |
|||||||
|
package com.jayway.jsonpath.spi.cache; |
||||||
|
|
||||||
|
import com.jayway.jsonpath.InvalidJsonException; |
||||||
|
import com.jayway.jsonpath.JsonPath; |
||||||
|
|
||||||
|
public interface Cache { |
||||||
|
|
||||||
|
/** |
||||||
|
* Get the Cached JsonPath |
||||||
|
* @param key cache key to lookup the JsonPath |
||||||
|
* @return JsonPath |
||||||
|
*/ |
||||||
|
public JsonPath get(String key); |
||||||
|
|
||||||
|
/** |
||||||
|
* Add JsonPath to the cache |
||||||
|
* @param key cache key to store the JsonPath |
||||||
|
* @param value JsonPath to be cached |
||||||
|
* @return void |
||||||
|
* @throws InvalidJsonException |
||||||
|
*/ |
||||||
|
public void put(String key, JsonPath value); |
||||||
|
} |
@ -1,23 +1,21 @@ |
|||||||
package com.jayway.jsonpath.spi.cache; |
package com.jayway.jsonpath.spi.cache; |
||||||
|
|
||||||
import com.jayway.jsonpath.InvalidJsonException; |
import com.jayway.jsonpath.JsonPathException; |
||||||
import com.jayway.jsonpath.JsonPath; |
|
||||||
|
|
||||||
public interface CacheProvider { |
public class CacheProvider { |
||||||
|
private static Cache cache = new LRUCache(200); |
||||||
|
|
||||||
/** |
public static void setCache(Cache cache){ |
||||||
* Get the Cached JsonPath |
if (cache != null){ |
||||||
* @param key cache key to lookup the JsonPath |
CacheProvider.cache = cache; |
||||||
* @return JsonPath |
} |
||||||
*/ |
} |
||||||
public JsonPath get(String key); |
|
||||||
|
|
||||||
/** |
public static Cache getCache() { |
||||||
* Add JsonPath to the cache |
try { |
||||||
* @param key cache key to store the JsonPath |
return cache; |
||||||
* @param value JsonPath to be cached |
} catch (Exception e) { |
||||||
* @return void |
throw new JsonPathException("Failed to get cache", e); |
||||||
* @throws InvalidJsonException |
} |
||||||
*/ |
} |
||||||
public void put(String key, JsonPath value); |
|
||||||
} |
} |
@ -0,0 +1,14 @@ |
|||||||
|
package com.jayway.jsonpath.spi.cache; |
||||||
|
|
||||||
|
import com.jayway.jsonpath.JsonPath; |
||||||
|
|
||||||
|
public class NOOPCache implements Cache { |
||||||
|
@Override |
||||||
|
public JsonPath get(String key) { |
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void put(String key, JsonPath value) { |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue