ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/util/uk/org/iscream/cms/util/Queue.java
(Generate patch)

Comparing projects/cms/source/util/uk/org/iscream/cms/util/Queue.java (file contents):
Revision 1.8 by tdb, Tue Jan 30 02:12:23 2001 UTC vs.
Revision 1.14 by tdb, Thu Mar 1 01:05:49 2001 UTC

# Line 4 | Line 4 | package uk.ac.ukc.iscream.util;
4   //---IMPORTS---
5   import java.util.LinkedList;
6   import java.util.NoSuchElementException;
7 + import java.util.Random;
8   import uk.ac.ukc.iscream.util.*;
9  
10   /**
# Line 24 | Line 25 | public class Queue {
25       */
26      public static final String REVISION = "$Revision$";
27      
28 +    /**
29 +     * Pass to constructor to remove a RANDOM item from
30 +     * the Queue upon reaching the maximum limit.
31 +     */
32 +    public static final int RANDOM = 0;
33 +    
34 +    /**
35 +     * Pass to constructor to remove the FIRST item from
36 +     * the Queue upon reaching the maximum limit.
37 +     */
38 +    public static final int FIRST = 1;
39 +    
40 +    /**
41 +     * Pass to constructor to remove the LAST item from
42 +     * the Queue upon reaching the maximum limit.
43 +     */
44 +    public static final int LAST = 2;
45 +    
46 +    /**
47 +     * Pass to constructor to drop the new item upon reaching
48 +     * the maximum Queue limit.
49 +     */
50 +    public static final int DROP = 3;
51 +    
52   //---STATIC METHODS---
53  
54   //---CONSTRUCTORS---  
55 +    
56 +    /**
57 +     * Constructs a new Queue with a maximum size limit on
58 +     * any individual queue. This should be used to stop
59 +     * conditions where the Queue cannot be guaranteed to
60 +     * be emptied as quick as it's filled.
61 +     *
62 +     * An algorithm will be used to remove data when new data
63 +     * arrives. There may be choices of algorithms later on.
64 +     *
65 +     * @param maxSize the upper limit for a queue
66 +     * @param removeAlgorithm the remove algorithm to use upon reaching the maxSize
67 +     */
68 +    public Queue(int maxSize, int removeAlgorithm) {
69 +        _maxSize = maxSize;
70 +        _removeAlgorithm = removeAlgorithm;
71 +    }
72 +    
73 +    /**
74 +     * Constructs a Queue with no maximum size.
75 +     */
76 +    public Queue() {
77 +        _maxSize = -1;
78 +    }
79  
80   //---PUBLIC METHODS---
81      
# Line 40 | Line 89 | public class Queue {
89          for(int i=0; i < _lists.size(); i++) {
90              // skip over any gaps left in the list
91              if(_lists.get(i) != null) {
92 +                // get size before adding to the Queue
93                  int s = ((LinkedList) _lists.get(i)).size();
94 <                synchronized(this) {
95 <                    // add() does the same thing, but this ensures behaviour
96 <                    ((LinkedList) _lists.get(i)).addLast(o);
94 >                // check whether we need to remove an item from the current Queue
95 >                if(_maxSize!=-1 && s==_maxSize && _removeAlgorithm!=DROP) {
96 >                    // we need to remove an item
97 >                    removeQueueItem((LinkedList) _lists.get(i));
98                  }
99 +                // check if we should add (not if Queue full, and using DROP algorithm)
100 +                if(!(s==_maxSize && _removeAlgorithm==DROP)) {
101 +                    // add the next item, ensuring we lock
102 +                    synchronized(this) {
103 +                        // LinkedList.add() does the same thing, but this ensures behaviour
104 +                        ((LinkedList) _lists.get(i)).addLast(o);
105 +                    }
106 +                }
107                  // if the queue was empty before the add it is possible
108                  // that a consumer is waiting... so we notify them
109                  if (s == 0) {
# Line 119 | Line 178 | public class Queue {
178      }
179      
180      /**
181 <     * This method returns a textual status of the queues. It
182 <     * is merely for observation, and would most likely be used
183 <     * by a larger "monitoring" component. Information returned
184 <     * includes the current size of each queue, and the total
185 <     * items passed through.
181 >     * This method returns an XML textual status of the queues.
182 >     * It is merely for observation, and would most likely be
183 >     * used by a larger "monitoring" component. Information
184 >     * returned includes the current size of each queue, and
185 >     * the total items passed through.
186       *
187 <     * @return A String message containing status information.
187 >     * @return A String message containing status information in XML format
188       */
189 <    public String status() {
190 <        String status = "";
189 >    public String xmlStatus() {
190 >        String status = "<queue ";
191          for(int i=0; i < _lists.size(); i++) {
192              // check for null entries
193              if(_lists.get(i) != null) {
194 <                status += "Queue number "+i+" contains "+((LinkedList) _lists.get(i)).size()+" elements";
136 <                status += "\n";
194 >                status += "queue"+i+"=\""+((LinkedList) _lists.get(i)).size()+"\" ";
195              }
196              else {
197 <                status += "Slot number "+i+" is currently empty";
140 <                status += "\n";
197 >                status += "queue"+i+"=\"[deleted]\" ";
198              }
199          }
200 <        status += "A total of "+_count+" elements have been added to the queues";
200 >        status += "total=\""+_count+"\"";
201 >        if(_maxSize != -1) {
202 >            status += " maxSize=\""+_maxSize+"\"";
203 >        }
204 >        status += "</queue>";
205          return status;
206      }
207      
# Line 210 | Line 271 | public class Queue {
271      }
272      
273      /**
274 +     * Start a monitor on our own Queue. This will log XML
275 +     * statistics about our Queue to a given Queue (could be
276 +     * the one being monitored).
277 +     *
278 +     * @param interval The long interval, in milliseconds, at which to take samples
279 +     * @param destQueue The queue to monitor to
280 +     * @param name A name to identify this Queue with
281 +     * @return whether we succeeded
282 +     */
283 +    public boolean startMonitor(long interval, Queue destQueue, String name) {
284 +        if(_queueMon == null) {
285 +            // start a monitor
286 +            _queueMon = new QueueMonitor(this, destQueue, interval, name);
287 +            _queueMon.start();
288 +            return true;
289 +        }
290 +        else {
291 +            // already have a monitor running
292 +            return false;
293 +        }
294 +    }
295 +    
296 +    /**
297 +     * Start a monitor on our own Queue. This will log XML
298 +     * statistics about our Queue to this Queue.
299 +     *
300 +     * @param interval The long interval, in milliseconds, at which to take samples
301 +     * @param name A name to identify this Queue with
302 +     * @return whether we succeeded
303 +     */
304 +    public boolean startMonitor(long interval, String name) {
305 +        return startMonitor(interval, this, name);
306 +    }
307 +    
308 +    /**
309 +     * Stop a monitor on our Queue if we have on running.
310 +     *
311 +     * @return whether we succeeded
312 +     */
313 +    public boolean stopMonitor() {
314 +        if(_queueMon != null) {
315 +            // stop a monitor
316 +            _queueMon.shutdown();
317 +            _queueMon = null;
318 +            return true;
319 +        }
320 +        else {
321 +            // no monitor running
322 +            return false;
323 +        }
324 +    }
325 +    
326 +    /**
327       * Overrides the {@link java.lang.Object#toString() Object.toString()}
328       * method to provide clean logging (every class should have this).
329       *
# Line 226 | Line 340 | public class Queue {
340      }
341  
342   //---PRIVATE METHODS---
343 <
343 >    
344 >    /**
345 >     * This method removes an item from a Queue, using a method
346 >     * requested at construction.
347 >     *
348 >     * @param list The LinkedList from which to remove an item.
349 >     */
350 >    private void removeQueueItem(LinkedList list) {
351 >        // look at our algorithm
352 >        // remove a random item from the list
353 >        if(_removeAlgorithm==RANDOM) {
354 >            // new Random, with a good seed
355 >            Random rand = new Random(System.currentTimeMillis());
356 >            int i = rand.nextInt(_maxSize);
357 >            synchronized(this) {
358 >                list.remove(i);
359 >            }
360 >        }
361 >        // remove the first item from the list
362 >        else if(_removeAlgorithm==FIRST) {
363 >            synchronized(this) {
364 >                list.removeFirst();
365 >            }
366 >        }
367 >        // remove the last item from the list
368 >        else if(_removeAlgorithm==LAST) {
369 >            synchronized(this) {
370 >                list.removeLast();
371 >            }
372 >        }
373 >    }
374 >    
375   //---ACCESSOR/MUTATOR METHODS---
376  
377   //---ATTRIBUTES---
# Line 241 | Line 386 | public class Queue {
386       * passed through, for statistical purposes.
387       */
388      private int _count = 0;
389 +    
390 +    /**
391 +     * A reference to our QueueMonitor, if we have one.
392 +     */
393 +    private QueueMonitor _queueMon = null;
394 +    
395 +    /**
396 +     * The maximum size of any Queue.
397 +     */
398 +    private int _maxSize = -1;
399 +    
400 +    /**
401 +     * The remove algorithm to use upon a Queue reaching
402 +     * it's maximum size.
403 +     */
404 +    private int _removeAlgorithm = -1;
405      
406      /**
407       * This is the friendly identifier of the

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines