From d6bbc01097372dc318db99b0952dbf708ad5e1ab Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 30 Mar 2012 11:01:39 +0200 Subject: Added ConnectionHandler accroding to spec. --- src/connectionhandler.h | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/connectionhandler.h (limited to 'src/connectionhandler.h') 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 +#include +#include + +#include "task.h" + +typedef void* clientid_t; + +typedef std::map > 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 observerlist(TaskIdList tasklist); + +private: + ConnectionList connlist; +}; + +#endif/*__MUNIA_CONNECTIONHANDLER_H__*/ -- cgit v1.2.3