KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > jforum > util > concurrent > queue > UnboundedFifoQueue


1 /*
2  * Copyright (c) 2003, Rafael Steil
3  * All rights reserved.
4
5  * Redistribution and use in source and binary forms,
6  * with or without modification, are permitted provided
7  * that the following conditions are met:
8
9  * 1) Redistributions of source code must retain the above
10  * copyright notice, this list of conditions and the
11  * following disclaimer.
12  * 2) Redistributions in binary form must reproduce the
13  * above copyright notice, this list of conditions and
14  * the following disclaimer in the documentation and/or
15  * other materials provided with the distribution.
16  * 3) Neither the name of "Rafael Steil" nor
17  * the names of its contributors may be used to endorse
18  * or promote products derived from this software without
19  * specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
22  * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
23  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
24  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
27  * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
32  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
34  * IN CONTRACT, STRICT LIABILITY, OR TORT
35  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
36  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
37  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
38  *
39  * This file creation date: Jan 28, 2004
40  * net.jforum.util.concurrent.queue.UnboundedFifoQueue.java
41  * The JForum Project
42  * http://www.jforum.net
43  *
44  * $Id: UnboundedFifoQueue.java,v 1.4 2005/07/26 03:06:00 rafaelsteil Exp $
45  */

46 package net.jforum.util.concurrent.queue;
47
48 import java.security.InvalidParameterException JavaDoc;
49 import java.util.LinkedList JavaDoc;
50
51 import net.jforum.util.concurrent.Queue;
52
53 /**
54  * @author Rodrigo Kumpera
55  */

56 public class UnboundedFifoQueue implements Queue
57 {
58     private final LinkedList JavaDoc queue = new LinkedList JavaDoc();
59     
60     public UnboundedFifoQueue() { }
61
62     public Object JavaDoc get() throws InterruptedException JavaDoc
63     {
64         if(Thread.interrupted()) {
65             throw new InterruptedException JavaDoc();
66         }
67         
68         synchronized(queue) {
69             try {
70                 while(queue.isEmpty()) {
71                     queue.wait();
72                 }
73                 
74                 return queue.removeFirst();
75             }
76             catch(InterruptedException JavaDoc e) {
77                 queue.notify();
78                 throw e;
79             }
80         }
81     }
82
83     public Object JavaDoc pool(final long timeout) throws InterruptedException JavaDoc
84     {
85         if(Thread.interrupted()) {
86             throw new InterruptedException JavaDoc();
87         }
88         
89         synchronized(queue) {
90             if(!queue.isEmpty()) {
91                 return queue.removeFirst();
92             }
93             
94             if(timeout <= 0) {
95                 return null;
96             }
97             
98             try {
99                 long remaining = timeout;
100                 long start = System.currentTimeMillis();
101                 
102                 for(;;) {
103                     queue.wait(remaining);
104                     
105                     if(!queue.isEmpty()) {
106                         return queue.removeFirst();
107                     }
108                     
109                     remaining = timeout - (System.currentTimeMillis() - start);
110                     
111                     if(remaining <= 0) {
112                         return null;
113                     }
114                 }
115             }
116             catch(InterruptedException JavaDoc e) {
117                 queue.notify();
118                 throw e;
119             }
120         }
121     }
122
123     public void put(Object JavaDoc obj) throws InterruptedException JavaDoc
124     {
125         offer(obj, 0);
126     }
127
128     public boolean offer(Object JavaDoc obj, long timeout) throws InterruptedException JavaDoc
129     {
130         if(obj == null) {
131             throw new InvalidParameterException JavaDoc("obj is null");
132         }
133         
134         if(Thread.interrupted()) {
135             throw new InterruptedException JavaDoc();
136         }
137         
138         synchronized(queue) {
139             queue.add(obj);
140             queue.notify();
141         }
142         return true;
143     }
144
145     public int size()
146     {
147         synchronized(queue) {
148             return queue.size();
149         }
150     }
151 }
152
Popular Tags