Thursday, 25 Apr 2024, 3:11 PM
Team Innovative
Navigation
Translate Page
Search
Calendar
«  April 2011  »
SuMoTuWeThFrSa
     12
3456789
10111213141516
17181920212223
24252627282930
Main » 2011 » April » 18 » Defining .NET Components with Namespaces
1:24 PM
Defining .NET Components with Namespaces
A .NET software component is a compiled set of classes that provide a programmable interface that is used by consumer applications for a service. As a component is no more than a logical grouping of classes, what then is the best way to define the boundaries of a component within the .NET framework? How should the classes inter-operate? Patrick Smacchia, the lead developer of NDepend, discusses the issues and comes up with a solution.

[b]Contents

Defining components inside .NET assemblies
Using namespaces to define components
Size of components
Structuring larger components
Structuring code with Mediator, Feature and Base components
Acyclic graph of dependencies between components
'Levelizing' existing code is often cheaper than expected
Evolutionary Design and Acyclic componentization
Guidelines

This article will attempt to explain the advantages of using namespaces to define the boundaries of components in a .NET assembly, to suggest the best ways of using namespaces as components, and to describe how to continuously enforce the relevant rules of namespace dependency.

Our aim is to assist a .NET development shop to rationalize the development of a large code base so as to let the developers become productive, and to reduce the cost of maintenance.

The advice we will give in this article comes from experience gained in years of real-world consulting and development in various development corporations. It has proved to be effective several times, in different circumstances.

In this article Partitioning code base through .NET assemblies and Visual Studio Projects we focused on assemblies, and the reasons why it is more convenient to have fewer and larger assemblies. We suggested how to organize the VS solutions and VS projects. We mentioned that a component is a finer-grained logical concept than a physical assembly. This implies that a large assembly is not a monolithic piece of code, but is likely to contain several components.

Defining components inside .NET assemblies

The .NET platform has no intrinsic means of defining a component inside an assembly. So what is a component? There are whole books that are dedicated to explaining what a component is but, to keep things simple and practical, we’ll list some definitions. A component can be:

An aggregate of classes and associated types: A class is mostly too lightweight to define a component. Therefore a component will almost always include several classes or interfaces and their associated types (enumerations, structures, exceptions, attributes, delegates…). All these types are grouped by a common well-understood semantic concept that gives its name to the component.
A unit of development and test: The notion of a component is well-suited to the way that code is developed. When adding a new feature to the product, a developer generally dedicates time to develop a new set of cohesive classes and their associated tests. This represents a component, or more likely a group of related components. Because of this, the organization of components often mirrors the set of features; but a component can also host some infrastructure classes, such as domain classes or helpers and utility classes.
A unit of learning for developers: It is a daunting task to have to reverse-engineer a large code base. It helps to use components to partition the code into reasonably-sized chunks that can be learned more easily than if they were entangled within a monolithic style code base.
A unit of architecture: One of the most challenging tasks for any real-world code-base development is to master the entropy that necessarily arises in such a complex system. We can do this by imposing an architecture on a code base through a well-defined set of components. This is an adaptation of the ‘Divide and Conquer’ principle introduced in 1628 in the Discourse of Method of René Descartes, inventor of modern science. Relying on well-defined units to divide and conquer represents the way that scientists and engineers have worked over the ages to elucidate complex systems.

A unit of layering: In order to rationalize a complex system, It is not enough just to have well-defined components: They must be properly layered. In other words, the graph of dependencies between components must be a Direct Acyclic Graph (DAG). If the graph of dependencies between components contains a cycle, components involved in the cycle cannot be developed and tested independently. Because of this, the cycle of components represents a super-component, with higher entropy than the sum of the entropies of its contained components.
For this article, we’ll use the concept of a component as being a well-defined aggregate of types, with a reasonable size, and with an acyclic graph of dependencies between components.

Using namespaces to define components

A component is well-defined if its boundaries are explicit. Only two .NET language constructs can be used to explicitly define component boundaries and contain a set of children types: Parent class and namespace.

The advantage of a parent class over a namespace is that nested classes can be declared with a visibility level. This makes it possible to have class encapsulation in the component. On the other hand, the advantage of namespace over parent class is that the namespace is a language artifact and not a CLR artifact. Namespaces are absent from assembly metadata. The namespace name is just a prefix added to contained classes. This means that a namespace is more lightweight than a parent class. Also, when using a parent class, there is a risk of confusion between a parent class and an application class. On the other hand there is no risk of confusing a namespace with a class.

We therefore prefer to use namespaces to define explicit component boundaries. Namespaces are also often used to organize public API presentation. This usage of namespace fits nicely with the concept of components as we’ve shown: Component organization often mirrors the set of features, but a component can also host some infrastructure classes.

Size of components

We measure the size of a component by counting the lines of code. A logical Line of Code (Loc) represents a Sequence Point. A sequence point is the code excerpt highlighted in dark red in the VS code editor window, when creating a breakpoint. Most of .NET tools for developers, including VS and NDepend, measure Lines of Code through sequence points.

The size of a component must be reasonable, between 500 and 2000 LoC. Indeed, we suggested already that a component is a unit of learning and a unit of architecture. A component must never be too large to be reviewed and understood. An architecture that is made of such components becomes coarse, and leads to a monolithic code style and uncontrolled entropy.

The size of 500 to 2.000 LoC is just inferred guideline based on real-world observations. 500 to 2.000 LoC usually represents from one to two dozen classes. In the case of an abstract component, made of interfaces and enumerations, the number of LoC can be zero. You’ll agree that LoC is not the appropriate metric for abstract component size.

Structuring larger components

If a larger component is required, then the component classes should be divided within sub-namespaces. Because namespaces can be represented through a hierarchy, we can use this as a convenient way to partition super-components into smaller components.

For example, the Dependency Structure Matrix (DSM) of NDepend is a complex feature that weighs around 5.000 LoC: Because of this, the DSM implementation resides in a namespace that contains seven sub-namespaces. The sub-namespaces correspond to sub-features of the DSM such as Header handling and Cells Computation.

The parent component plays the role of a mediator. Most of the sub-namespaces don’t know about other sub-namespaces. This is done to reduce any chance of coupling. The mediator is responsible for making sub-components communicate.

Structuring code with Mediator, Feature and Base components

A program code base is likely to be composed of large components, each one of which will probably contain sub-components that are only needed for their own private implementations. This idea is illustrated by the DSM below that shows the architecture of the NDepend UI code (> 50K LoC). There are many large components in the list those who namespace name ends up with .* to signify that they contains sub-components.

The two vertical lines on KernelImpl.*and MainPanel.* namespaces (columns 1 and 3) indicate that these two components act as mediators between lower level components. Hence the other columns are pretty empty, meaning that components that represent features (Matrix, Graph, CQL …) are independent from each other.

The three rows 22, 23 and 24, are almost full. They represent base components that support all higher level components. Obviously this high-level architecture and the finer-grained architecture of the Matrix components are pretty similar. The same pattern is applied at two different scales. In both cases there are:

Feature Components: Independent components that contain features implementation.

Mediator Components: A few high-level components that act as mediator between feature components. The mediator contains the plumbing needed to make features communicate between each others.

Base Components[/b]: A few low-level components that implement the domain of the application. Base components classes are shared amongst feature components.

Main benefits of classifying components between feature, mediator and base are that:

The clarity of the overall architecture is not blurred by the implementation details.
The developer can zoom in on the program structure to understand it.
The structure favors a low incidence of coupling between implementations details. (this is the Low-Coupling)
The implementation of a particular feature is thoroughly nested in a well-identified root namespace (the is the High-Cohesion Pattern)

Acyclic graph of dependencies between components

By looking back to the DSM representing the NDepend.UI structure, we can see that the upper triangle above the matrix’s diagonal is empty. Each component can be used by components above it, and can use components below it. Hence the structure is perfectly layered. It is important to remember that:

The graph of dependencies between components is acyclic if, and only if, its DSM representation has its upper triangle empty.

Since components are layered, each component can have a level index. Hence, we say that when an architecture has no dependency cycles, it is levelized. We have already tried to explain that a levelized architecture is essential because:

'If the graph of dependencies between components contains a cycle, components involved in the cycle cannot be developed and tested independently. Because of this, the cycle of components represents a super-component, with higher entropy than the sum of the entropies of its contained components.'
Every developer has the instinct to lean toward an acyclic structure. This natural tendency explains the popularity of Visual Studio (VS) solutions with dozens of small VS projects. VS detects, and prevents, dependency cycles between VS projects;therefore developers see in the VS project the ideal device with which to implement the idea of levelized component. Unfortunately, doing so is far from ideal and we explain in the article Partitioning code base through .NET assemblies and Visual Studio Projects all the real-world problems of this approach.

The tool NDepend offers a simple way of checking for dependency cycles between namespaces of an assembly. The following rule, written with Code Query Language (CQL), is all what one needs to be advised of a broken architecture.

If an assembly is matched, just right-click the assembly in the list of match and click :View internal dependency cycles on matrix :

The matrix will make the dependency cycle obvious with a red-square. Here, for the requirements of this article, we contrived it so that the two namepaces GraphPanel and KernelInterface are mutually dependent. This provokes five components to be entangled in a dependency cycle, hence the red square on the DSM that encompasses these five namespaces:

'Levelizing' existing code is often cheaper than expected

Having a levelized structure between namespaces is enough to keep the architecture clean and maintainable. We’ve often noticed in code that the code structure naturally tends towards being levelized. This is because of the developers instinct for the notion of layers, that we already mentioned.

In the DSM above, we see the namespace Base at the lower level in the architecture. For most developer, it would seem unnatural and awkward to create a dependency from Base to any other component. Base's concepts are not supposed to use anything, they are here to be used from other components.

Often, the code structure is naturally close to levelized but not thoroughly levelized. Tooling is needed to prevent these few wrong dependencies (like from Base to something else) that appears with time. Usually there are not so many of these dependencies to fix. Because of this, the rule more than the exception is that often 'Levelizing' an existing code base is a cheap process that can be achieved in a few days of work.

Evolutionary Design and Acyclic componentization

If the code structure is kept levelized, low-level components never get a chance to bubble-up in the architecture not because someone decided so, but because above components won’t let it bubble-up. Like in traditional building architecture, the structure itself put the pressure on low level components. As long as the acyclic components constraint is continuously respected, the code base remains highly learnable and maintainable.

In traditional building architecture, the gravity strength put the pressure on low level artifacts. This makes them more stable: 'stable' in the sense they are hard to move.

In software architecture, abiding by the acyclic component idea put the pressure on low level components. This makes them more stable, in the sense that it is painful to refactor them. Empirically abstractions are less often subject to refactoring than implementations. it is, for this reason, a good idea that low-level components contain mostly abstractions (interfaces and enumerations) to avoid painful refactoring.

The beauty of levelized architecture is that it discards the need for most design decisions. This lack of up-front design is known as evolutionary design. Let’s quote Martin Fowler on evolutionary design:

With evolutionary design, you expect the design to evolve slowly over the course of the programming exercise. There’s no design at the beginning. You begin by coding a small amount of functionality, adding more functionality, and letting the design shift and shape.
With levelized evolutionary design, good design is implicitly and continuously maintained. There are no questions about what to do to implement a new requirement. When planning new code to implement a requirement that is unpredicted, one just has to consider its fan-in and fan-out (who will use this new code and who this new code will use). From this information and from the need to preserve levelization, one can infer the level and the right location where this new code will fit well. Sometime the need to introduce abstractions through a pattern like injection of code or inversion of dependency will arise, but only to preserve levelization, not because it seems cool to do so or the new fashion pattern book advises it. And releases after releases, iterations after iterations, the design will evolve seamlessly toward something continuously flawless and unpredictable. Like in traditional building architecture, the structure won’t collapse.

Guidelines

Use the concept of namespace to define boundaries of components.
A namespace typically contains from one to two dozens of types, and has a reasonable size that fits in the 500 to 2.000 LoC range.
Take the time to levelize your code-base components, it is certainly a cheaper task than expected, so the Return On Investment will be high.
Continuously check that the components’ dependency graph inside an assembly is acyclic.
If a component is too large (> 2.000 LoC), then use sub-namespaces to divide it into a smaller set of related components.
At any scale, classify components between high-level mediators, middle-level independent features, low-level base/domains.
Having a 'levelized' set of components removes the need for most design decisions.

Views: 1143 | Added by: dibakar_gupta | Rating: 5.0/1
Total comments: 0
Only registered users can add comments.
[ Registration | Login ]
Entries archive
Our poll
Rate my site
Total of answers: 11
Recommendations
  • Need a Multimedia Solution
  • Need HR Solutions
  • Statistics

    Total online: 1
    Guests: 1
    Users: 0
    Copyright Team Innovative © 2024

    Make a free website with uCoz and Innovative Technosoft