I have some Java programs, now I want to find out whether it is modular or not, if it is modular then up to what extent, because modularity can never be binary term i.e. 0 or 1. How do I decide that particular code is modular upto this much extent. I want to know how to make code much more modular?
|
Some Benchmarks for modularity:
For more ideas check this out and this one on software quality As for your concern on making your code more modular first you should ask yourself the above questions, obtain specific answers for them and then have a look at this The basic philosophy is to break down your application into as small a code fragments as possible arranged neatly across a multitude of easily understandable and accessible directory layout. Each method in your application must do no more than the minimum quanta of processing needed. Combining these methods into more and more macro level methods should lead you back to your application |
|||||||||||
|
|
Key points are
A good example is car parts like disk brakes and car stereo. You don't want build car stereo when you are building cars. You want to buy them and plug it in. You also don't want your braking system affecting the car stereo, or worse car stereo affecting the brake system. The answer to your question, we can form questions to test the modularity: Can you easily substitute your module with something else without affecting other parts of your application? Besides the car stereo analogy, XML parser could be another example. Once you obtain the DOM interface, you really don't care which implementation of parser is used underneath e.g. Apache Xerces or JAXP. In Java, another question may be: Are all functionality accessible via Also, can you describe the module in one sentence? For example, car stereo plays music and radio. Disk brake decelerates the vehicle safely. (Here's what I wrote to What is component driven development?) According to Wikipedia, Component-Based Development is an alias for Component-based software engineering (CBSE).
This is somewhat vague, so let's look at more details.
So, according to this definition, a component can be anything as long as it does one thing really well and only one thing.
So this is sounding more and more like what we think of good API or SOA should look like. The provided interfaces are represented by a lollipop and required interfaces are represented by an open socket symbol attached to the outer edge of the component in UML.
Substitutability and reusability is what makes a component a component. So what's the difference between this and Object-Oriented Programming?
|
||||
|
|
|
To answer your specific question of how to make the code more modular, a couple of approaches are:
|
|||
|
|
|
Since this has been tagged with 'osgi', I can throw in an OSGi-related perspective. The short answer is that it is possible to go from completely spaghetti code to modular in small steps; it doesn't have to be a big bang. For example, even spaghetti code depends on some kind of bolognaise logging library, so in some sense, it's already modular, just with One Very Big Metball (sorry, module) in it. The trick is to break the big meatball into one smaller chunk and then a slightly less big meatball and then recurse. It doesn't all have to be done in one go either; simply chip off a bit more each time until there is nothing left to remove. As for OSGi, it's still possible to put an uber-jar into a bundle. In fact, you can do this without changing the bits; either by modifying the Manifest.MF in place, or by wrapping that in another JAR and specify Bundle-ClassPath: metaball.jar in the manifest. Failing that, tools like BND can help generate the right data you'd need, and then it can be dropped in an OSGi runtime easily enough. But beware of overly coupled code, and stuff that mucks around with classloaders - those will trip you up. |
|||
|
|
|
Hej, See, "How to encapsulate software (Part 1)," here: http://www.edmundkirwan.com/encap/overview/paper7.html Regards, Ed. |
|||
|
|
|
Assuming I understand your question, that you want to know what it is that makes code modular, since code modules will obviously need some dependency between each other to work at all. This is my answer: If you can break your system down into modules, and you can test those modules in isolation, that is a good indication that a system is modular. |
|||
|
|
|
As you say modularity is not a binary thing so it depends on your relative definition. I would say: Can you use a given method in any program where you need to perform that function? Is it the "black box" where you wouldn't need to know what it were doing under the hood? If the answer is no, i.e. the method would only work properly in that program then it is not truely modular. |
|||
|
|
|
Modularity is relative to who ever is developing the code. But I think the general consensus is that modular code is code that has portions that can easily be swapped out without changing most of the original code. IMHO, If you have 3 modules A B and C and you want to change or replace module C completely, if it is a SIMPLE task to do so then you have modular code. |
|||
|
|
|
You can use a code analysis tool such as CAP to analyse the dependencies between types and packages. They'll help you find and remove any cyclic dependencies, which are often a problem when trying to develop modular code. If there are no cyclic dependencies, you can start separating your code into discrete jars. In general it is good practice to code to interfaces if you can, this generally means your code can more easily be refactored and/or used in different contexts. Dependency injection frameworks such as Spring can also help with the modularity of your design. As types are injected with their dependencies by some external configuration process they don't need a direct dependency on an implementation. |
|||
|
|
|
The package-by-feature idea helps to make code more modular. Many examples seen on the web divide applications first into layers, not features
It seems better, however, to divide applications up using top-level packages that align with features, not layers. Here is an example of a web app that uses package-by-feature. Note the names of the top-level packages, which read as a list of actual features in the application. Note as well how each package contains all items related to a feature - the items aren't spread out all over the place; most of the time, they are all in a single package/directory. Usually, deletion of a feature in such an app can be implemented in a single operation - deletion of a single directory. |
|||
|
|
