Click here to Skip to main content
15,892,059 members
Articles / Desktop Programming / MFC

The SBJ MVC Framework - The Design View, Responding to Model Change

Rate me:
Please Sign up or sign in to vote.
4.87/5 (22 votes)
19 Mar 2009CPOL13 min read 81K   2.4K   51  
A Model-View-Controller Framework that integrates with the MFC Doc/View architecture.
//------------------------------------------------------------------------------
// $Workfile: EventMgr.cpp $
// $Header: /SbjDev/SbjCore/EventMgr.cpp 4     10/20/08 11:06a Steve $
//
//	Copyright � 2008 SbjCat
// All rights reserved.
//
//
// *** Authors ***
//	 Steve Johnson
//
// $Revision: 4 $
//
//-----------------------------------------------------------------------------

#include "stdafx.h"
#include "EventMgr.h"

namespace localNS
{
	typedef std::multimap<SbjCore::EventMgr::EventID, SbjCore::EventMgr::EventHandler*> t_EventIDToEventHandler; 
	typedef t_EventIDToEventHandler::value_type t_IDToHandlerValueType;
	typedef std::pair<t_EventIDToEventHandler::iterator, t_EventIDToEventHandler::iterator> t_EventHandlers; 

	static t_EventIDToEventHandler theEventIDs;

}

namespace SbjCore
{
	namespace EventMgr
	{
		///////////////////////////////////////////////////////////

		void Fire(EventID nEventID)
		{
			Event event(nEventID);
		}

		///////////////////////////////////////////////////////////

		struct EventImpl
		{
			EventID eventID;

			EventImpl() :
				eventID(0)
			{
			}

			EventImpl(EventID nID) :
	 			eventID(nID) 
			{
			}

			virtual ~EventImpl()
			{
			}

		};


		Event::Event() :
			m_pImpl(new EventImpl)
		{
		}

		Event::Event(EventID nEventID, bool bAutoFire /*= true*/) :
			m_pImpl(new EventImpl(nEventID))
		{
			if (bAutoFire)
			{
				NotifyHandlers();
			}
		}

		Event::~Event()
		{
			try
			{
				delete m_pImpl;
			}
			catch (...)
			{
				ASSERT(FALSE);
			}
		}

		void Event::Init(EventID nEventID, bool bAutoFire /*= true*/)
		{
			m_pImpl->eventID = EventID(nEventID);
			if (bAutoFire)
			{
				NotifyHandlers();
			}
		}

		void Event::NotifyHandlers()
		{
			localNS::t_EventHandlers theHandlers = localNS::theEventIDs.equal_range(m_pImpl->eventID);

			for ( ; theHandlers.first != theHandlers.second; ++theHandlers.first)
			{
				EventHandler *pHandler = (*theHandlers.first).second;

				pHandler->Handle(this);
			}
		}


		///////////////////////////////////////////////////////

		struct EventHandlerImpl
		{
			EventID eventID;
			bool bBlocked;

			EventHandlerImpl(EventID nEventID) :
				eventID(nEventID),
				bBlocked(false)
			{
			}
			
			virtual ~EventHandlerImpl()
			{
			}

			void Register(EventHandler* p)
			{
				localNS::theEventIDs.insert(localNS::t_IDToHandlerValueType(eventID, p));
			}
		};
		
		//////////////////////////////////////////////////////////////////////

		EventHandler::EventHandler(EventID nEventID) :
			m_pImpl(new EventHandlerImpl(nEventID))
		{
			m_pImpl->Register(this);
		}

		EventHandler::~EventHandler()
		{
			try 
			{
				localNS::t_EventHandlers theHandlers = localNS::theEventIDs.equal_range(m_pImpl->eventID);

				for ( ; theHandlers.first != theHandlers.second; ++theHandlers.first)
				{
					EventHandler *pHandler = (*theHandlers.first).second;
					if (pHandler == this)
					{
						(void)localNS::theEventIDs.erase(theHandlers.first);
						break;
					}	
				}
				delete m_pImpl;
			}
			catch (...)
			{
				ASSERT(FALSE);
			}
		}

		void EventHandler::Handle(Event* pEvent)
		{
			if (!m_pImpl->bBlocked)
			{
				OnHandle(pEvent);
			}
		}

		void EventHandler::SetBlock( bool bBlock )
		{
			m_pImpl->bBlocked = bBlock;
		}

		bool EventHandler::IsBlocked() const
		{
			return m_pImpl->bBlocked;
		}

	}
}

//*** Modification History ***
// $Log: /SbjDev/SbjCore/EventMgr.cpp $
// 
// 4     10/20/08 11:06a Steve
// Removed source parameter from Event and replaced with EventT data
// 
// 3     10/14/08 1:12p Steve
// Implemented Deletes

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
SBJ
United States United States
Real name is Steve Johnson. Programming since 1979. Started on a Heathkit Micro with a DEC LSI-11 and UCSD Pascal. Moved to PCs & DOS as soon as Turbo Pascal became available. Did some Assembly, ISR, TSR etc. All this while working for a Manufacturing Co. for 8 years. Had my own solo Co. doing barcode labeling software for 4 years (terrible business man, all I wanted to do was code). Since then working for various software companies. Moved to Windows around the time of 3.1 with Borland C then C++. Then on to VC++ and MFC, and just about anything I could get my hands on or had to learn for my job, and been at it ever since. Of course recently I've been playing with .NET, ASP, C#, WPF etc.

Comments and Discussions