Coupling is too high - how to design this class better? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T18:28:51Z http://stackoverflow.com/feeds/question/189156 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/189156/coupling-is-too-high-how-to-design-this-class-better 4 Coupling is too high - how to design this class better? Judah Himango 2008-10-09T20:49:24Z 2008-10-10T13:34:22Z <p>Running FxCop on my code, I get this warning:</p> <blockquote> <p>Microsoft.Maintainability : 'FooBar.ctor is coupled with 99 different types from 9 different namespaces. Rewrite or refactor the method to decrease its class coupling, or consider moving the method to one of the other types it is tightly coupled with. A class coupling above 40 indicates poor maintainability, a class coupling between 40 and 30 indicates moderate maintainability, and a class coupling below 30 indicates good maintainability.</p> </blockquote> <p>My class is a landing zone for all messages from the server. The server can send us messages of different EventArgs types:</p> <pre><code>public FooBar() { var messageHandlers = new Dictionary&lt;Type, Action&lt;EventArgs&gt;&gt;(); messageHandlers.Add(typeof(YouHaveBeenLoggedOutEventArgs), HandleSignOut); messageHandlers.Add(typeof(TestConnectionEventArgs), HandleConnectionTest); // ... etc for 90 other types } </code></pre> <p>The "HandleSignOut" and "HandleConnectionTest" methods have little code in them; they usually pass the work off to a function in another class.</p> <p>How can I make this class better with lower coupling?</p> http://stackoverflow.com/questions/189156/coupling-is-too-high-how-to-design-this-class-better/189164#189164 0 Answer by Chris Lively for Coupling is too high - how to design this class better? Chris Lively 2008-10-09T20:51:30Z 2008-10-09T21:05:46Z <p>Perhaps instead of having a different class for each message, use a flag that identifies the message.</p> <p>That would drastically reduce the number of messages you have and increase maintainability. My guess is that most of the message classes have about zero difference.</p> <p>It's hard to pick an additional way of attacking this because the rest of the architecture is unknown (to me). </p> <p>If you look at Windows, for example, it doesn't natively know how to handle each message that might be thrown about. Instead, the underlying message handlers register callback functions with the main thread. </p> <p>You might take a similiar approach. Each message class would need to know how to handle itself and could register itself with the larger application. This should greatly simplify the code and get rid of the tight coupling.</p> http://stackoverflow.com/questions/189156/coupling-is-too-high-how-to-design-this-class-better/189199#189199 3 Answer by Chris Marasti-Georg for Coupling is too high - how to design this class better? Chris Marasti-Georg 2008-10-09T21:00:33Z 2008-10-10T13:34:22Z <p>You could also use some sort of IoC framework, like Spring.NET, to inject the dictionary. This way, if you get a new message type, you don't have to recompile this central hub - just change a config file. <hr/> The long awaited example:</p> <p>Create a new console app, named Example, and add this:</p> <pre><code>using System; using System.Collections.Generic; using Spring.Context.Support; namespace Example { internal class Program { private static void Main(string[] args) { MessageBroker broker = (MessageBroker) ContextRegistry.GetContext()["messageBroker"]; broker.Dispatch(null, new Type1EventArgs()); broker.Dispatch(null, new Type2EventArgs()); broker.Dispatch(null, new EventArgs()); } } public class MessageBroker { private Dictionary&lt;Type, object&gt; handlers; public Dictionary&lt;Type, object&gt; Handlers { get { return handlers; } set { handlers = value; } } public void Dispatch&lt;T&gt;(object sender, T e) where T : EventArgs { object entry; if (Handlers.TryGetValue(e.GetType(), out entry)) { MessageHandler&lt;T&gt; handler = entry as MessageHandler&lt;T&gt;; if (handler != null) { handler.HandleMessage(sender, e); } else { //I'd log an error here Console.WriteLine("The handler defined for event type '" + e.GetType().Name + "' doesn't implement the correct interface!"); } } else { //I'd log a warning here Console.WriteLine("No handler defined for event type: " + e.GetType().Name); } } } public interface MessageHandler&lt;T&gt; where T : EventArgs { void HandleMessage(object sender, T message); } public class Type1MessageHandler : MessageHandler&lt;Type1EventArgs&gt; { public void HandleMessage(object sender, Type1EventArgs args) { Console.WriteLine("Type 1, " + args.ToString()); } } public class Type2MessageHandler : MessageHandler&lt;Type2EventArgs&gt; { public void HandleMessage(object sender, Type2EventArgs args) { Console.WriteLine("Type 2, " + args.ToString()); } } public class Type1EventArgs : EventArgs {} public class Type2EventArgs : EventArgs {} } </code></pre> <p>And an app.config file:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;sectionGroup name="spring"&gt; &lt;section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/&gt; &lt;section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;spring&gt; &lt;context&gt; &lt;resource uri="config://spring/objects"/&gt; &lt;/context&gt; &lt;objects xmlns="http://www.springframework.net"&gt; &lt;object id="messageBroker" type="Example.MessageBroker, Example"&gt; &lt;property name="handlers"&gt; &lt;dictionary key-type="System.Type" value-type="object"&gt; &lt;entry key="Example.Type1EventArgs, Example" value-ref="type1Handler"/&gt; &lt;entry key="Example.Type2EventArgs, Example" value-ref="type2Handler"/&gt; &lt;/dictionary&gt; &lt;/property&gt; &lt;/object&gt; &lt;object id="type1Handler" type="Example.Type1MessageHandler, Example"/&gt; &lt;object id="type2Handler" type="Example.Type2MessageHandler, Example"/&gt; &lt;/objects&gt; &lt;/spring&gt; &lt;/configuration&gt; </code></pre> <p>Output:</p> <pre> Type 1, Example.Type1EventArgs Type 2, Example.Type2EventArgs No handler defined for event type: EventArgs </pre> <p>As you can see, <code>MessageBroker</code> doesn't know about any of the handlers, and the handlers don't know about <code>MessageBroker</code>. All of the mapping is done in the app.config file, so that if you need to handle a new event type, you can add it in the config file. This is especially nice if other teams are defining event types and handlers - they can just compile their stuff in a dll, you drop it into your deployment and simply add a mapping.</p> <p>The Dictionary has values of type object instead of <code>MessageHandler&lt;></code> because the actual handlers can't be cast to <code>MessageHandler&lt;EventArgs></code>, so I had to hack around that a bit. I think the solution is still clean, and it handles mapping errors well. Note that you'll also need to reference Spring.Core.dll in this project. You can find the libraries <a href="http://downloads.sourceforge.net/springnet/Spring.NET-1.1.2.zip?modtime=1210044370&amp;big_mirror=0" rel="nofollow">here</a>, and the documentation <a href="http://springframework.net/docs/1.1.2/reference/html/index.html" rel="nofollow">here</a>. The <a href="http://springframework.net/docs/1.1.2/reference/html/objects.html#objects-dependencies" rel="nofollow">dependency injection chapter</a> is relevant to this. Also note, there is no reason you need to use Spring.NET for this - the important idea here is dependency injection. Somehow, something is going to need to tell the broker to send messages of type a to x, and using an IoC container for dependency injection is a good way to have the broker not know about x, and vice versa.</p> <p>Some other SO question related to IoC and DI:</p> <ul> <li><a href="http://stackoverflow.com/questions/139299/difference-between-dependency-injection-di-inversion-of-control-ioc" rel="nofollow">Difference between Dependency Injection (DI) &amp; Inversion of Control (IOC)</a></li> <li><a href="http://stackoverflow.com/questions/21288/which-cnet-dependency-injection-frameworks-are-worth-looking-into" rel="nofollow">Which C#/.net Dependency Injection frameworks are worth looking into?</a></li> <li><a href="http://stackoverflow.com/questions/148908/which-dependency-injection-tool-should-i-use" rel="nofollow">Which Dependency Injection Tool Should I Use?</a></li> </ul> http://stackoverflow.com/questions/189156/coupling-is-too-high-how-to-design-this-class-better/189201#189201 0 Answer by Grzenio for Coupling is too high - how to design this class better? Grzenio 2008-10-09T21:01:21Z 2008-10-09T21:01:21Z <p>I don't see the rest of your code, but I would try create a much smaller number of Event arg classes. Instead create a few that are similar to each other in terms of data contained and/or the way you handle them later and add a field that will tell you what exact type of event occured (probably you should use an enum). </p> <p>Ideally you would not only make this constructor much more readable, but also the way the messages are handled (group messages that are handled in a similar way in a single event handler)</p> http://stackoverflow.com/questions/189156/coupling-is-too-high-how-to-design-this-class-better/189208#189208 12 Answer by Mark Brackett for Coupling is too high - how to design this class better? Mark Brackett 2008-10-09T21:02:31Z 2008-10-09T21:02:31Z <p>Have the classes that do the work register for events they're interested in...an <a href="http://msforge.net/blogs/paki/archive/2007/11/20/EventBroker-implementation-in-C_2300_-full-source-code.aspx" rel="nofollow">event broker</a> pattern.</p> <pre><code>class EventBroker { private Dictionary&lt;Type, Action&lt;EventArgs&gt;&gt; messageHandlers; void Register&lt;T&gt;(Action&lt;EventArgs&gt; subscriber) where T:EventArgs { // may have to combine delegates if more than 1 listener messageHandlers[typeof(T)] = subscriber; } void Send&lt;T&gt;(T e) where T:EventArgs { var d = messageHandlers[typeof(T)]; if (d != null) { d(e); } } } </code></pre> http://stackoverflow.com/questions/189156/coupling-is-too-high-how-to-design-this-class-better/189241#189241 0 Answer by xtofl for Coupling is too high - how to design this class better? xtofl 2008-10-09T21:14:39Z 2008-10-09T21:14:39Z <p>Obviously you are in need of a dispatching mechanism: depending on the event you receive, you want to execute different code.</p> <p>You seem to be using the type system to identify the events, while it's actually meant to support polymorphism. As Chris Lively suggests, you could just as well (without abusing the type system) use an enumerate to identify the messages.</p> <p>Or you can embrace the power of the type system, and create a Registry object where every type of event is registered (by a static instance, a config file or whatsoever). Then you could use the Chain of Responsibility pattern to find the proper handler. Either the handler does the handling itself, or it may be a Factory, creating an object that handles the event.</p> <p>The latter method looks a bit underspecified and overengineered, but in the case of 99 event types (already), it seems appropriate to me.</p>