blob: b0b634ce8cfbfded18b057889426256b6f528b74 [file] [log] [blame]
crazybobleeabc4dd02007-02-01 01:44:36 +00001/**
2 * Copyright (C) 2006 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
crazyboblee63b592b2007-01-25 02:45:24 +000016
17package com.google.inject;
18
19/**
crazybobleee5fbbb02007-02-05 07:00:27 +000020 * Built in scope implementations.
crazyboblee63b592b2007-01-25 02:45:24 +000021 *
22 * @author crazybob@google.com (Bob Lee)
23 */
crazyboblee68d2f4b2007-02-07 18:47:24 +000024public class Scopes {
25
26 private Scopes() {}
crazyboblee63b592b2007-01-25 02:45:24 +000027
28 /**
crazyboblee68d2f4b2007-02-07 18:47:24 +000029 * Name of the default scope.
crazyboblee63b592b2007-01-25 02:45:24 +000030 */
crazyboblee68d2f4b2007-02-07 18:47:24 +000031 public static final String DEFAULT_NAME = "DEFAULT";
32
33 /**
34 * The default scope, one instance per injection.
35 */
36 public static final Scope DEFAULT = new Scope() {
crazybobleee5fbbb02007-02-05 07:00:27 +000037 public <T> Factory<T> scope(Key<T> key, Factory<T> creator) {
38 return creator;
39 }
crazyboblee68d2f4b2007-02-07 18:47:24 +000040 };
41
42 /**
43 * Name of container scope.
44 */
45 public static final String CONTAINER_NAME = "CONTAINER";
crazyboblee63b592b2007-01-25 02:45:24 +000046
47 /**
crazybobleebaaaf2d2007-02-07 03:35:09 +000048 * One instance per container.
crazyboblee63b592b2007-01-25 02:45:24 +000049 */
crazyboblee68d2f4b2007-02-07 18:47:24 +000050 public static final Scope CONTAINER = new Scope() {
crazybobleee5fbbb02007-02-05 07:00:27 +000051 public <T> Factory<T> scope(Key<T> key, final Factory<T> creator) {
52 return new Factory<T>() {
53
54 private volatile T instance;
55
kevinb9n6a565c72007-02-11 01:58:33 +000056 // DCL is safe as of Java 5, which we obviously require
57 @SuppressWarnings("DoubleCheckedLocking")
crazybobleee5fbbb02007-02-05 07:00:27 +000058 public T get() {
crazybobleee5fbbb02007-02-05 07:00:27 +000059 if (instance == null) {
crazyboblee68d2f4b2007-02-07 18:47:24 +000060 // Use a pretty coarse lock. We don't want to run into deadlocks
61 // when two threads try to load circularly-dependent objects.
crazybobleee5fbbb02007-02-05 07:00:27 +000062 // Maybe one of these days we will identify independent graphs of
63 // objects and offer to load them in parallel.
64 synchronized (Container.class) {
65 if (instance == null) {
66 instance = creator.get();
67 }
68 }
69 }
70 return instance;
71 }
72
73 public String toString() {
74 return creator.toString();
75 }
76 };
77 }
crazyboblee68d2f4b2007-02-07 18:47:24 +000078 };
crazyboblee63b592b2007-01-25 02:45:24 +000079}