diff tango/tango/net/cluster/tina/QueueThread.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tango/tango/net/cluster/tina/QueueThread.d	Fri Jan 11 17:57:40 2008 +0100
@@ -0,0 +1,80 @@
+/*******************************************************************************
+
+        copyright:      Copyright (c) 2004 Kris Bell. All rights reserved
+
+        license:        BSD style: $(LICENSE)
+        
+        version:        July 2004: Initial release      
+        
+        author:         Kris
+
+*******************************************************************************/
+
+module tango.net.cluster.tina.QueueThread;
+
+private import  tango.core.Exception;
+
+private import  tango.net.cluster.tina.ClusterQueue,
+                tango.net.cluster.tina.ClusterTypes,
+                tango.net.cluster.tina.ClusterThread;
+
+/******************************************************************************
+
+        Thread for handling queue requests.
+
+******************************************************************************/
+
+class QueueThread : ClusterThread
+{
+        private ClusterQueue queue;
+        
+        /**********************************************************************
+
+                Note that the conduit stays open until the client kills it
+
+        **********************************************************************/
+
+        this (AbstractServer server, IConduit conduit, Cluster cluster, ClusterQueue queue)
+        {
+                super (server, conduit, cluster);
+                this.queue = queue;
+        }
+
+        /**********************************************************************
+
+                process client requests
+                
+        **********************************************************************/
+
+        void dispatch ()
+        {
+                ProtocolWriter.Command  cmd;
+                long                    time;
+                char[]                  channel;
+                char[]                  element;
+
+                // wait for request to arrive
+                auto content = reader.getPacket (cmd, channel, element, time);
+
+                switch (cmd)
+                       {
+                       case ProtocolWriter.Command.AddQueue:
+                            logger.trace (sprint ("{} add queue entry on channel '{}'", client, channel)); 
+        
+                            if (queue.put (channel, content))
+                                writer.success;
+                            else
+                               writer.full ("cluster queue is full");
+                            break;
+        
+                       case ProtocolWriter.Command.RemoveQueue:
+                            logger.trace (sprint ("{} remove queue entry on channel '{}'", client, channel)); 
+        
+                            writer.reply (queue.get (channel));
+                            break;
+             
+                       default:
+                            throw new IllegalArgumentException ("invalid command");
+                       }
+        }
+}