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