User Tools

Site Tools


about:navigating_principle_languages

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
about:navigating_principle_languages [2013-09-12 17:51] – moved characterizing sets and weighting princiles to an own page christianabout:navigating_principle_languages [2013-09-16 17:27] (current) – decision christian
Line 36: Line 36:
 ===== Example ===== ===== Example =====
  
-The following example shows the usage of the OOD Principle Language. It details the assessment of a solution found in the CoCoME system((http://www.cocome.org/)). The details of the system are irrelevant here but it resembles an information system which can be found in supermarkets or other stores. There are several components which are grouped into the typical layers of an information system: The presentation layer (GUI), the application or business logic layer and the data layer.+==== Context ==== 
 + 
 +The following---rather sophisticated---example shows the usage of the OOD Principle Language. It details the assessment of a solution found in the CoCoME system((http://www.cocome.org/)). The details of the system are irrelevant here but it resembles an information system which can be found in supermarkets or other stores. There are several components which are grouped into the typical layers of an information system: The presentation layer (GUI), the application or business logic layer and the data layer.
  
 In CoCoME there is a mechanism for getting access to other components. In a nutshell it works like this: In CoCoME there is a mechanism for getting access to other components. In a nutshell it works like this:
   * For the data layer there is a data component, a class ''DataImpl'' which aggregates three subcomponents ''Enterprise'', ''Persistence'', and ''Store'' and gives access to them.   * For the data layer there is a data component, a class ''DataImpl'' which aggregates three subcomponents ''Enterprise'', ''Persistence'', and ''Store'' and gives access to them.
  
-FIXME code for Data class+<code java> 
 +public class DataImpl implements DataIf  
 +
 +    public EnterpriseQueryIf getEnterpriseQueryIf()  
 +    { 
 +        return new EnterpriseQueryImpl(); 
 +    } 
 + 
 +    public PersistenceIf getPersistenceManager()  
 +    { 
 +        return new PersistenceImpl(); 
 +    } 
 + 
 +    public StoreQueryIf getStoreQueryIf()  
 +    { 
 +        return new StoreQueryImpl(); 
 +    } 
 +
 +</code>
  
   * There are "factory" classes which lazily create and provide access to single instances of a component.   * There are "factory" classes which lazily create and provide access to single instances of a component.
Line 51: Line 71:
     private static DataIf dataaccess = null;     private static DataIf dataaccess = null;
  
-    private DataIfFactory () {}+    private DataIfFactory() {}
  
-    public static DataIf getInstance () +    public static DataIf getInstance() 
     {     {
         if (dataaccess == null)          if (dataaccess == null) 
         {         {
-            dataaccess = new DataImpl ();+            dataaccess = new DataImpl();
         }         }
         return dataaccess;         return dataaccess;
Line 66: Line 86:
 Essentially ''DataIfFactory'' resembles a mixture between the design patterns [[patterns:factory]] and Essentially ''DataIfFactory'' resembles a mixture between the design patterns [[patterns:factory]] and
 [[factory:singleton]]. The latter one is important here. The purpose of a singleton is to make a single instance of a class globally accessible. Here ''DataImpl'' is not ensured to be only instantiated once as it still has a public constructor. Nevertheless the "factory" class makes it globally accessible. In every part of the software ''DataIfFactory.getInstance()'' can be used to get hold of the data component. And since DataIf makes the three subcomponents accessible, also these are accessible from everywhere. There is no need to pass a reference around. [[factory:singleton]]. The latter one is important here. The purpose of a singleton is to make a single instance of a class globally accessible. Here ''DataImpl'' is not ensured to be only instantiated once as it still has a public constructor. Nevertheless the "factory" class makes it globally accessible. In every part of the software ''DataIfFactory.getInstance()'' can be used to get hold of the data component. And since DataIf makes the three subcomponents accessible, also these are accessible from everywhere. There is no need to pass a reference around.
 +
 +==== Question ====
  
 //Is this a good solution?// //Is this a good solution?//
  
-{{ :collections:ood_principle_language.png?300 |}}+==== Finding a Characterizing Set ==== 
 + 
 +{{ :collections:ood_principle_language.png?400 |}}
  
 We will examine this question using the OOD principle language. First we have to find suitable starting principles. This is one of the rather sophisticated cases where finding a starting principle is at least not completely obvious. If we don't have a clue where to start, we'll have a look at the different categories of principles in the language. Essentially the "factory" enables modules to access and communicate with each other. So we are looking for principles about module communication. There are three of them in the principle language: [[principles:Tell, don't Ask/Information Expert|TdA/IE]], [[principles:Low Coupling|LC]], and [[principles:Dependency Inversion Principle|DIP]]. TdA/IE does not seem to fit, but LC seems to help. Coupling should be low and the mechanism couples modules in a certain way. So we'll choose LC as a starting principle and our characterizing set looks like this: {LC}. We will examine this question using the OOD principle language. First we have to find suitable starting principles. This is one of the rather sophisticated cases where finding a starting principle is at least not completely obvious. If we don't have a clue where to start, we'll have a look at the different categories of principles in the language. Essentially the "factory" enables modules to access and communicate with each other. So we are looking for principles about module communication. There are three of them in the principle language: [[principles:Tell, don't Ask/Information Expert|TdA/IE]], [[principles:Low Coupling|LC]], and [[principles:Dependency Inversion Principle|DIP]]. TdA/IE does not seem to fit, but LC seems to help. Coupling should be low and the mechanism couples modules in a certain way. So we'll choose LC as a starting principle and our characterizing set looks like this: {LC}.
Line 121: Line 145:
 As a result we get {LC, KISS, RoE, TdA/IE, ML} as the characterizing set. As a result we get {LC, KISS, RoE, TdA/IE, ML} as the characterizing set.
  
-Note that although in this example the principles are examined in a certain order. Nevertheless the method does not prescribe any.+Note that although in this example the principles are examined in a certain orderthe method does not prescribe any
 + 
 + 
 +==== Using the Characterizing Set ==== 
 + 
 +In order to answer the above question, we have to informally rate the solution based on the principles of the characterizing set: 
 + 
 +  * LC 
 +    * The solution creates a relatively strong coupling to the concrete implementations of the components. If a class uses the "factory" and the components it gives access to, there is no way to have the class use other implementations of the components. There is no way to replace the implementations by a stub for testing purposes, there is no way to smoothly switch to another ''Data'' component possibly using another way of storing the data. Every change in the arrangement of the classes needs a change in the code. LC is rather against this solution. 
 +  * KISS 
 +    * The solution is pretty easy to implement. Furthermore it is easy to get access to an arbitrary component. So according to KISS this is a good solution. 
 +  * RoE 
 +    * Getting access to a component is implicit. There is no need to explicitly pass a reference around. There is not even the necessity to explicitly define an attribute for the dependent class. RoE tells, that the solution is bad. 
 +  * TdA/IE 
 +    * Getting access to a the ''Store'' subcomponent requires asking ''DataIfFactory'' for the ''Data'' component and asking that one for the store. There is no way to tell the "factory" to do something. TdA/IE is against the solution. 
 +  * ML 
 +    * There are no particular pitfalls with this solution. So ML has nothing against it. 
 + 
 +So LC, RoE and TdA/IE are against the solution, KISS thinks it's good and ML has nothing against it. As it is not the number of principles which is important, the designer still has to make a sound judgment based on these results. What is more important: Coupling, testability, and clarity or a simple and fast implementation. In this case we'd rather decide that the former are more important, so we should rather think about a better solution. 
 + 
 +==== Deciding between Alternatives ==== 
 + 
 +In the next step we would think about better alternatives and might come up with [[patterns:dependency injection]] and [[patterns:service locators]]. So there are three alternatives (with several variations): The current solution and the two new ideas. 
 + 
 +We already constructed a characterizing set. So the only thing to do is to rate the ideas according to the principles: 
 + 
 +The current "factory" approach is abbreviated "F", dependency injection is DI and SL stands for service locator. In the following a rough, informal rating is described, where "A > B" means that the respective principle rates A higher/better than B. "=" stands for equal ratings. 
 + 
 +  * LC 
 +    * DI > SL > F  
 +    * Note that in the SL approach there is an additional coupling to the service locator 
 +  * KISS 
 +    * F > DI = SL 
 +    * All three solutions are rather simple but in DI there is complexity for passing around the references and in the SL approach there is complexity in maintaining the registry 
 +  * RoE 
 +    * The rating of RoE depends on the concrete variant of the pattern. In the DI approach the dependencies are explicitly visible on the interface, which is not the case in the two other approaches. In solution F the dependency is not visible from the interface at all. Same with SL if the service locator is globally accessible. Even if a reference to the service locator is explicitly passed around, it is still not visible which services provided by the locator are used. On the other hand getting a reference is explicit with F and SL. In the DI approach it is only explicit when it is done manually. Typical DI frameworks wire the instances implicitly. 
 +  * TdA/IE 
 +    * DI > SL = F 
 +    * For SL and F one first has to ask for an instance for calling a method on it. In DI the instance is already known, i.e. set from the outside. 
 +  * ML 
 +    * F > DI > SL 
 +    * In the DI solution a possible fault would be to have different modules reference different instances of the same class where they should rather reference the same instance. In SL solution there is even a more problematic fault which could be introduced. Eventually somebody might get the idea to change the registered instances in the locator at runtime. This would then be the source for some hard to find defects: Some modules will cache the instance they got from the service locator in an attribute and some won't. In such a case the latter will receive the new instance while the former won't. 
 + 
 +As you can see all three possibilities have their advantages and disadvantages. The designer now has to weight the aspects in order to get to a decision. In this case we might state the following: 
 + 
 +  * F is ruled out because it is not testable. The other two approaches have lower couplings (LC) which make them better testable. The advantages wrt. KISS and ML do not justify that liability. 
 +  * The solutions DI and SL are not very far apart but DI is slightly better wrt. LC, TdA/IE and ML.  
 +  * TdA/IE can be regarded less important because it is a heuristic which is normally applied in other situations. 
 +  * For RoE we also have to decide whether to use a framework or not. In CoCoME we would rather want to avoid a framework because the rest of the system is implemented in that way ([[principles:Uniformity Principle|UP]]). We could incorporate that aspect in the characterizing principle or make another decision based on a newly created one. If we are comfortable with making the decision without constructing a characterizing set, just based on UP, we could also do that. In order not to complicate the example and in order to show this possibility, we'll do the latter. So a framework won't be used and manual dependency injection is good wrt. RoE. 
 + 
 +Based on this weighting, we decide to use DI.
about/navigating_principle_languages.1379001111.txt.gz · Last modified: 2013-09-12 17:51 by christian