summaryrefslogtreecommitdiff
path: root/src/connectionhandler.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2012-03-30 11:01:39 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2012-03-30 11:01:39 +0200
commitd6bbc01097372dc318db99b0952dbf708ad5e1ab (patch)
tree20f33dfc4dfab208c4d496e4761ee509408ff7f2 /src/connectionhandler.h
parent30fcce7ad8abdc1920085fa86f39f855f69369fc (diff)
Added ConnectionHandler accroding to spec.
Diffstat (limited to 'src/connectionhandler.h')
-rw-r--r--src/connectionhandler.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/connectionhandler.h b/src/connectionhandler.h
new file mode 100644
index 0000000..ab46320
--- /dev/null
+++ b/src/connectionhandler.h
@@ -0,0 +1,56 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set et sw=2 ts=2: */
+/***************************************************************************
+ * connectionhandler.h
+ *
+ * Fri Mar 30 09:25:16 CEST 2012
+ * Copyright 2012 Bent Bisballe Nyeng
+ * deva@aasimon.org
+ ****************************************************************************/
+
+/*
+ * This file is part of Munia.
+ *
+ * Munia is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Munia is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Munia; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+#ifndef __MUNIA_CONNECTIONHANDLER_H__
+#define __MUNIA_CONNECTIONHANDLER_H__
+
+#include <list>
+#include <set>
+#include <map>
+
+#include "task.h"
+
+typedef void* clientid_t;
+
+typedef std::map<clientid_t, std::set<taskid_t> > ConnectionList;
+
+class ConnectionHandler {
+public:
+ ConnectionHandler();
+
+ void init(clientid_t clientid);
+ void close(clientid_t clientid);
+ void observe(clientid_t clientid, taskid_t taskid);
+ void unobserve(clientid_t clientid, taskid_t taskid);
+
+ std::set<clientid_t> observerlist(TaskIdList tasklist);
+
+private:
+ ConnectionList connlist;
+};
+
+#endif/*__MUNIA_CONNECTIONHANDLER_H__*/