Proper abstraction level makes difference.

Programming is an art, the same solution to a problem could have different versions of coding. Enterprise programming, due to its large code base, is about to provide functionalities while managing code dependencies and data encapsulation. The essence of managing dependencies and encapsulation is abstraction.

I have a terrible case of abstraction at work. We built a data access layer similar to iBATIS and Hibernate. But the abstraction is not quite generic enough(I think the abstraction level is too high, too close to the application, not close enough to JDBC/SQL) so that whenever we modify something, it breaks many others.

The intention is good - we want to reuse existing code. In general, if we abstract some logic at the wrong level, but not far off, we can still get along because there is not a lot of modifications beneath the abstraction. But in this case, where we work with generated SQL, which is highly optimizable, we get a hard hit. This is because below the abstraction, the SQL are connected more tightly than JAVA code, and for performance reason, we need to tune SQL all the time. So whenever we modify one place, the same modified code to generate SQL are used in a lot of places and potential creates bugs, because the modification, in the worst case, only applies to a particular case - meaning the abstraction fails. This results the entanglement between code reuse and vertical modification and optimization.

A better solution is that we don't abstract horizontally at the higher level(the DAO level), we abstract it at the lower level, like iBATIS does, right above JDBC, horizontally, so that we could reuse code. Then abstract the DAO layer vertically. Then the DAO can change vertically without affecting other adjacent vertical DAO abstractions. Furthermore, this is align with DDD as well, so it's easy to adopt new business requirements(new feature, modification of existing features, optimization).

This is the case where one abstraction is not enough, we need two. The first one is more system related, the second one is more application related.

This is a very interesting case because a small mistake gets amplified to an unbearable degree. Although Rod Johnson wrote his book Expert 1-1 J2EE programming in 2002 about this, we still made the same mistake in 2006. The saying says, those who do not understand history are condemned to repeat it.

[Second example]
The post
http://www.iteye.com/topic/39694?
has a discussion on how to remove duplicated code. There are several ideas and complains on Java. I think the problem here is again how to abstract the code properly for reuse. If we look close the code, there are two duplicates: one is the getters on several properties, one is to sum the values. Reflection is proposed to remove duplicated getter calls. My question is: are these getter calls really duplicated? They may look syntactically similar, but they are semantically different, namely, they are totally different in the domain. So I think we should *not* consider them duplicated code and try to use reflections. An immediate consequence of using reflection on these getters is refactoring. What if we want to rename a field, the IDE won't find the usage in the reflection. What if we want to group some fields to a more meaningful class, say we have street number, street name, city name, and we want to group them into a separate class Address, then the reflection is broken.

The summation is really a duplicated code, so we may create a separate method to sum up an array of numbers. A simple class would do the trick:
java 代码
 
  1. public class Summation  
  2. {  
  3.     public Number sum(Number[] numbers)  
  4.     {  
  5.         double sum = 0.0;  
  6.         for (int i=0; i<numbers.length; i++)  
  7.         {  
  8.             sum += numbers[i].doubleValue();  
  9.         }  
  10.   
  11.         return new Double(sum);  
  12.     }  
  13. }  

Though internally we are using the method doubleValue(), this method works for Integer arrays too. Here is the testing class:
java 代码
 
  1. public class SummationTest  
  2. {  
  3.     private Summation sumOperation = new Summation();  
  4.   
  5.     public static void main(String args[])  
  6.     {  
  7.         SummationTest test = new SummationTest();  
  8.         test.testDoubles();  
  9.         test.testfloats();  
  10.         test.testLongs();  
  11.         test.testIntegers();  
  12.         test.testShorts();  
  13.     }  
  14.   
  15.     public void testDoubles()  
  16.     {  
  17.         Number[] inputs = new Number[] { new Double(2.4), new Double(5.8) };  
  18.         Number result = sumOperation.sum(inputs);  
  19.         print(result);  
  20.     }  
  21.   
  22.     public void testfloats()  
  23.     {  
  24.         Number[] inputs = new Number[] { new Float(2.4), new Float(5.8) };  
  25.         Number result = sumOperation.sum(inputs);  
  26.         print(result);  
  27.     }  
  28.   
  29.     public void testLongs()  
  30.     {  
  31.         Number[] inputs = new Number[] { new Long(2), new Long(3) };  
  32.         Number result = sumOperation.sum(inputs);  
  33.         print(result);  
  34.     }  
  35.   
  36.     public void testIntegers()  
  37.     {  
  38.         Number[] inputs = new Number[] { new Integer(2), new Integer(3) };  
  39.         Number result = sumOperation.sum(inputs);  
  40.         print(result);  
  41.     }  
  42.   
  43.     public void testShorts()  
  44.     {  
  45.         Number[] inputs = new Number[] { new Short((short)2), new Short((short)3) };  
  46.         Number result = sumOperation.sum(inputs);  
  47.         print(result);  
  48.     }  
  49.   
  50.     private void print(Number number)  
  51.     {  
  52.         System.out.println("----------------------------------------------");  
  53.         System.out.println("double=" + number.doubleValue());  
  54.         System.out.println("float=" + number.floatValue());  
  55.         System.out.println("long=" + number.longValue());  
  56.         System.out.println("int=" + number.intValue());  
  57.         System.out.println("short=" + number.shortValue());  
  58.         System.out.println("byte=" + number.byteValue());  
  59.     }  
  60. }  

The summation is a property of numbers, so the abstraction should be at the Number level.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值