开发者

What is the appropriate way/pattern to collect information from classes?

开发者 https://www.devze.com 2022-12-22 19:38 出处:网络
To keep things simplified lets say I have an interface RandomProvider interface public interface RandomProvider

To keep things simplified lets say I have an interface RandomProvider interface

public interface RandomProvider
{
    double nextRandom();
}

And say I have 3 different implementations of this interface, ARandom, BRandom, CRandom. I want to collect some statistics about the implementations:

  • how many times nextRandom() is called
  • sum of the generated random numbers (it may sound silly but this is just an example).

In the end these statistics will be recorded to DB. These are heavily used classes from multiple threads so it is not feasible to write the values every time a request comes.

The first idea that comes to my mind is, I make a singleton that holds these data, implementations call the singleton and increase necessary statistics. Another class reads from the singleton a开发者_C百科nd writes the results to DB and decrements the statistics. But I have read so many articles about how evil globally mutable data and singletons are so I am afraid to go this way.

Any other ideas?


Yes the singleton can be an evil idea, however it depends on their use. If you use a singleton just to make your code work (allowing it to touch other classes like a global central object) then it is bad.

But ultimately you are simply looking for some way to log information ( a logger ) and in this case it is not a bad decision to use a singleton to log this data or even to log it to some text / log files.


You can use AOP to record all the calls of that particular method. Check AspectJ. Basically you are going to intercept all the calls using an around advice and collect statistics and do your custom operations (adding up the random number in this case). Then store this into a db.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号