1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
 * %W% %E%
 *
 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package sun.misc;

import java.util.Enumeration;
import java.util.NoSuchElementException;

/**
 * Queue: implements a simple queue mechanism.  Allows for enumeration of the 
 * elements.
 *
 * @version %I%, %G%
 * @author Herb Jellinek
 */

public class Queue {

    int length = 0;

    QueueElement head = null;
    QueueElement tail = null;

    public Queue() {
    }

    /**
     * Enqueue an object.
     */
    public synchronized void enqueue(Object obj) {
    
    QueueElement newElt = new QueueElement(obj);

    if (head == null) {
        head = newElt;
        tail = newElt;
        length = 1;
    } else {
        newElt.next = head;
        head.prev = newElt;
        head = newElt;
        length++;
    }
    notify();
    }

    /**
     * Dequeue the oldest object on the queue.  Will wait indefinitely.
     *
     * @return    the oldest object on the queue.
     * @exception java.lang.InterruptedException if any thread has
     *              interrupted this thread.
     */
    public Object dequeue() throws InterruptedException {
    return dequeue(0L);
    }

    /**
     * Dequeue the oldest object on the queue.
     * @param timeOut the number of milliseconds to wait for something 
     * to arrive.
     *
     * @return    the oldest object on the queue.
     * @exception java.lang.InterruptedException if any thread has
     *              interrupted this thread.
     */
    public synchronized Object dequeue(long timeOut)
        throws InterruptedException {
    
    while (tail == null) {
        wait(timeOut);
    }
    QueueElement elt = tail;
    tail = elt.prev;
    if (tail == null) {
        head = null;
    } else {
        tail.next = null;
    }
    length--;
    return elt.obj;
    }

    /**
     * Is the queue empty?
     * @return true if the queue is empty.
     */
    public synchronized boolean isEmpty() {
    return (tail == null);
    }

    /**
     * Returns an enumeration of the elements in Last-In, First-Out
     * order. Use the Enumeration methods on the returned object to
     * fetch the elements sequentially.
     */
    public final synchronized Enumeration elements() {
    return new LIFOQueueEnumerator(this);
    }

    /**
     * Returns an enumeration of the elements in First-In, First-Out
     * order. Use the Enumeration methods on the returned object to
     * fetch the elements sequentially.
     */
    public final synchronized Enumeration reverseElements() {
    return new FIFOQueueEnumerator(this);
    }

    public synchronized void dump(String msg) {
    System.err.println(">> "+msg);
    System.err.println("["+length+" elt(s); head = "+
               (head == null ? "null" : (head.obj)+"")+
               " tail = "+(tail == null ? "null" : (tail.obj)+""));
    QueueElement cursor = head;
    QueueElement last = null;
    while (cursor != null) {
        System.err.println("  "+cursor);
        last = cursor;
        cursor = cursor.next;
    }
    if (last != tail) {
        System.err.println("  tail != last: "+tail+", "+last);
    }
    System.err.println("]");
    }
}

final class FIFOQueueEnumerator implements Enumeration {
    Queue queue;
    QueueElement cursor;

    FIFOQueueEnumerator(Queue q) {
    queue = q;
    cursor = q.tail;
    }

    public boolean hasMoreElements() {
    return (cursor != null);
    }

    public Object nextElement() {
    synchronized (queue) {
        if (cursor != null) {
        QueueElement result = cursor;
        cursor = cursor.prev;
        return result.obj;
        }
    }
    throw new NoSuchElementException("FIFOQueueEnumerator");
    }
}

final class LIFOQueueEnumerator implements Enumeration {
    Queue queue;
    QueueElement cursor;

    LIFOQueueEnumerator(Queue q) {
    queue = q;
    cursor = q.head;
    }

    public boolean hasMoreElements() {
    return (cursor != null);
    }

    public Object nextElement() {
    synchronized (queue) {
        if (cursor != null) {
        QueueElement result = cursor;
        cursor = cursor.next;
        return result.obj;
        }
    }
    throw new NoSuchElementException("LIFOQueueEnumerator");
    }
}

class QueueElement {
    QueueElement next = null;
    QueueElement prev = null;

    Object obj = null;

    QueueElement(Object obj) {
    this.obj = obj;
    }

    public String toString() {
    return "QueueElement[obj="+obj+(prev == null ? " null" : " prev")+
        (next == null ? " null" : " next")+"]";
    }
}

			
			

Browsed Source: [clear]