| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * Channels.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Dec 1, 2011
 | 
|---|
| 12 |  *      Author: heber
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "CodePatterns/Assert.hpp"
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include "CodePatterns/Observer/Channels.hpp"
 | 
|---|
| 25 | #include "CodePatterns/Observer/Notification.hpp"
 | 
|---|
| 26 | 
 | 
|---|
| 27 | 
 | 
|---|
| 28 | Channels::Channels()
 | 
|---|
| 29 | {}
 | 
|---|
| 30 | 
 | 
|---|
| 31 | Channels::~Channels()
 | 
|---|
| 32 | {
 | 
|---|
| 33 |   // free all present Notifications
 | 
|---|
| 34 |   for(NotificationTypetoRefMap::iterator iter = ChannelMap.begin();
 | 
|---|
| 35 |       !ChannelMap.empty(); iter = ChannelMap.begin()) {
 | 
|---|
| 36 |     delete iter->second;
 | 
|---|
| 37 |     ChannelMap.erase(iter);
 | 
|---|
| 38 |   }
 | 
|---|
| 39 | }
 | 
|---|
| 40 | 
 | 
|---|
| 41 | void Channels::addChannel(size_t no)
 | 
|---|
| 42 | {
 | 
|---|
| 43 |   NotificationTypetoRefMap::const_iterator iter = ChannelMap.find(no);
 | 
|---|
| 44 |   ASSERT(iter == ChannelMap.end(),
 | 
|---|
| 45 |       "Channels::addChannel() - channel "+toString(int(no))+" is already present in ChannelMap.");
 | 
|---|
| 46 |   ChannelMap.insert( std::make_pair(no, new Notification(no)) );
 | 
|---|
| 47 | }
 | 
|---|
| 48 | 
 | 
|---|
| 49 | void Channels::removeChannel(size_t no)
 | 
|---|
| 50 | {
 | 
|---|
| 51 |   NotificationTypetoRefMap::iterator iter = ChannelMap.find(no);
 | 
|---|
| 52 |   ASSERT(iter != ChannelMap.end(),
 | 
|---|
| 53 |       "Channels::removeChannel() - channel "+toString(int(no))+" not present in ChannelMap.");
 | 
|---|
| 54 |   delete iter->second;
 | 
|---|
| 55 |   ChannelMap.erase(iter);
 | 
|---|
| 56 | }
 | 
|---|
| 57 | 
 | 
|---|
| 58 | Notification_ptr Channels::getChannel(size_t no) const
 | 
|---|
| 59 | {
 | 
|---|
| 60 |   NotificationTypetoRefMap::const_iterator iter = ChannelMap.find(no);
 | 
|---|
| 61 |   ASSERT(iter != ChannelMap.end(),
 | 
|---|
| 62 |       "Channels::getChannel() - channel "+toString(int(no))+" not present in ChannelMap.");
 | 
|---|
| 63 |   return iter->second;
 | 
|---|
| 64 | }
 | 
|---|
| 65 | 
 | 
|---|
| 66 | size_t Channels::getType(Notification_ptr channel) const
 | 
|---|
| 67 | {
 | 
|---|
| 68 |   return channel->getChannelNo();
 | 
|---|
| 69 | }
 | 
|---|
| 70 | 
 | 
|---|