Added FlowPusher.java basic implementation
diff --git a/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowPusher.java b/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowPusher.java
new file mode 100644
index 0000000..54da3fd
--- /dev/null
+++ b/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowPusher.java
@@ -0,0 +1,105 @@
+package net.onrc.onos.ofcontroller.flowmanager;
+
+import groovy.util.MapEntry;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Queue;
+import java.util.Set;
+
+import org.openflow.protocol.OFMessage;
+import org.openflow.protocol.OFType;
+
+import net.floodlightcontroller.core.FloodlightContext;
+import net.floodlightcontroller.core.IOFSwitch;
+import net.floodlightcontroller.util.OFMessageDamper;
+
+/**
+ * FlowPusher intermediates flow_mod sent from FlowManager/FlowSync to switches.
+ * FlowPusher controls the rate of sending flow_mods so that connection doesn't overflow.
+ * @author Naoki Shiota
+ *
+ */
+public class FlowPusher {
+	private FloodlightContext context;
+	private Thread thread;
+	
+	private static class QueueState {
+		long last_sent_time = 0;
+		long last_sent_size = 0;
+		long max_rate;
+	}
+	
+	private Map<IOFSwitch, Queue<OFMessage> > queues =
+			new HashMap<IOFSwitch, Queue<OFMessage> >();
+	private Map<Queue<OFMessage>, QueueState> queue_states =
+			new HashMap<Queue<OFMessage>, QueueState>();
+
+	private class FlowPusherProcess implements Runnable {
+		@Override
+		public void run() {
+			while (true) {
+				for (Map.Entry<IOFSwitch, Queue<OFMessage> > entry : queues.entrySet()) {
+					// pick one FlowEntry event from a queue
+					IOFSwitch sw = entry.getKey();
+					Queue<OFMessage> queue = entry.getValue();
+					if (entry == null || queue == null) {
+						continue;
+					}
+					
+					OFMessage msg = queue.poll();
+					if (msg == null) {
+						continue;
+					}
+					
+					QueueState state = queue_states.get(queue);
+					if (state == null) {
+						continue;
+					}
+					
+					// check sending rate and determine it to be sent or not
+					long current_time = System.nanoTime();
+					long rate = state.last_sent_size / (current_time - state.last_sent_time);
+					
+					// if need to send, call IOFSwitch#write()
+					if (rate < state.max_rate) {
+						try {
+							sw.write(msg, context);
+							state.last_sent_time = current_time;
+							state.last_sent_size = msg.getLengthU();
+						} catch (IOException e) {
+							// TODO Auto-generated catch block
+							e.printStackTrace();
+						}
+					}
+				}
+				
+				// sleep while all queues are empty
+				boolean sleep = true;
+				do {
+					// TODO
+				} while (sleep);
+			}
+		}
+	}
+	
+	public FlowPusher(FloodlightContext context) {
+		this.context = context;
+	}
+	
+	public void assignQueue(IOFSwitch sw, Queue<OFMessage> queue) {
+		queues.put(sw, queue);
+	}
+
+	public void startProcess() {
+		thread = new Thread(new FlowPusherProcess());
+		thread.start();
+	}
+	
+	public void stopProcess() {
+		// TODO tell thread to halt
+	}
+}