]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.datastructures/src/org/simantics/utils/datastructures/cache/CachedProvider.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.utils.datastructures / src / org / simantics / utils / datastructures / cache / CachedProvider.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.utils.datastructures.cache;\r
13 \r
14 \r
15 /**\r
16  * Caches the value provided by the back-end provider.\r
17  * <p>\r
18  * Cached version is equal to original in hashCode/equals wise.\r
19  * \r
20  * @author Toni Kalajainen\r
21  */\r
22 public class CachedProvider<V> implements IProvider<V> {\r
23 \r
24     public static final <V> IProvider<V> cache(IProvider<V> provider)\r
25     {\r
26         if (provider instanceof CachedProvider<?>)\r
27             return provider;\r
28         return new CachedProvider<V>(provider);\r
29     }\r
30 \r
31     IProvider<V> backendProvider;\r
32     V value;\r
33 \r
34     CachedProvider(IProvider<V> orig)\r
35     {\r
36         this.backendProvider = orig;\r
37     }\r
38 \r
39     @Override\r
40     public synchronized V get() throws ProvisionException {\r
41         if (value==null) {\r
42             value = backendProvider.get();\r
43         }\r
44         return value;\r
45     }\r
46 \r
47     @Override\r
48     public int hashCode() {\r
49         return backendProvider.hashCode();\r
50     }\r
51 \r
52     @Override\r
53     public boolean equals(Object obj) {\r
54         return backendProvider.equals(obj);\r
55     }\r
56 \r
57 }\r