Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am developing a framework for creating efficient applications in all sizes. Applications consist of modules (application is a module too) and performance is important for me. I know there are existing frameworks for modularization etc. but i needed to implement my own. Although i overthought about performance of individual modules and optimized them, communication between objects (and between threads) is something i cant decide how to implement. Here are the some options i considered:

  • NIO Pipes
  • Events (registering listeners)
  • Transaction queues in application context

My question is, Which one of these is better for avoiding bottlenecks and locks? Or is there any alternative you can advise?

share|improve this question
I don't know why someone voted to close this. It is a real question. He's asking about the trade-offs between various Java communication mechanisms, and has researched some of the alternatives. Seems valid to me. – Eric J. Jan 28 '10 at 22:33
There is insufficient information to give meaningful advice. Are these applications in the same JVM, the same machine, different machines on a LAN, etc? Are applications transactional? Do they need to collaborate in transactions? What communication primitives does the framework support: RPC, async messaging, data streams? What synchronization primitives? – Stephen C Jan 28 '10 at 22:35
i think the examples i gave speak for themselves; pipes, events... these are just two way communication examples. for example, lets assume i have one main class and a manager object. a two way communication is needed: main class submits a buffer to the manager object for processing and continues executing, when process is completed in the manager, result is sent to the main class. i can use pipes to send and retrieve data, or can notify registered listeners with an event object result attached, or i can pop a waiting buffer from waiting queue, process it and store it in the result queue. – Deniz Acay Jan 29 '10 at 0:30

4 Answers

up vote 0 down vote accepted

If this is a project that is intended to lead to production-quality code, I strongly advise you not implement your own framework.

Firstly, it is apparent that you don't really know enough about what your application requires of a framework, or the various technologies that you can use to implement such a framework. Do not underestimate your lack of knowledge, and the risks of undertaking a project where you don't know what you are doing when you start out.

Second, your motivation for implementing your own framework is wrong. If you find an existing framework too big and complicated for your needs, either choose a simpler framework or just learn the subset that you need to do your job ... and ignore the rest.

Third, it is a lot of work designing and building even a half-decent framework. That is probably time you should be spending building your actual application. Sure it is fun, but your boss is probably more interested in results.

Fourth, don't underestimate the intrinsic advantages of using a framework that lots of other people use; e.g. a community to ask questions of (like on SO), a community to improve the framework, employable people with the framework on their CVs.

Finally, by implementing your own framework you are most likely creating a lot of extra future maintenance work for team / company. You get it wrong and your colleagues will be cursing you up and down the corridors for the next 10 years. Even if you get the framework 100% right, someone in your organisation still has to maintain it for the lifetime of the applications that depend on it.

share|improve this answer
im a student actually. framework i developed is an api for implementing servers that will focus on one job. i know lall about http implementations and cdns. i already wrote almost all of it. after reading what you wrote i decided to use osgi for modularization. my server is using channels and selectors for reading requests then pass them to http interpreter as a selection key. when server generates response it is wrote back to the client. i couldnt find a way to send response back but it looks like when response is ready. it looks like all i had to do was setting keys op to write. thnx – Deniz Acay Jan 29 '10 at 3:59
Not everybody who programs has a boss, or doesn't see "fun" as a valid reason to do things. – Bart van Heukelom Feb 9 '10 at 21:15
@Bart - the OP is clearly not doing this for fun. He may or may not have a boss at this point, but he certainly has to consider the consequences of doing something that may derail his project. In this case, the consequence could be that he fails his course. Besides, as a student he also should be learning to think with the mindset of a professional developer / manager. Finally, he DID ask for advice on alternatives, and "use an existing framework" is the best alternative. – Stephen C Feb 9 '10 at 22:41
But you did not know what he was before you posted your answer ;) – Bart van Heukelom Feb 10 '10 at 11:58
I didn't know, but it was a fair assumption. The kind of person who would build a brand new framework "for fun" would not ask such a naive question. – Stephen C Feb 10 '10 at 21:36

My only advise would be don't go that way. As Bill K already said, most implementations would be significantly faster and more complete. Even more important is that there are excellent resources to achieve what you are trying to do: OSGi for example which has Eclipse and Glassfish v3 under its belt.

Personally I implemented something similar to your description, loading plugins at runtime without needing to restart the container. It was a nightmare to maintain and debug. And more important, while it was relatively easy for me to implement new modules (after all, I designed the thing), it was very difficult to program to. I ended up learning a lot about classloaders, but that was it.

share|improve this answer
1  
+1 - for first sentence. ESPECIALLY since you have to ask a question like this in the first place!!! – Stephen C Jan 28 '10 at 22:42
+1 same did I, that was the reason to point out working examples where things are arlready done. – stacker Jan 28 '10 at 22:44
@stacker - we don't even know if the OP is asking about web stuff, so how do we know which examples are relevant? – Stephen C Jan 28 '10 at 22:49
@Stephen C - i dont want to have a lot of features because i will be using the basic ones - implementing my own is faster than learning existing frameworks - i implement just the features i need and most important of all, how could i supposed to learn if i dont ask??? – Deniz Acay Jan 29 '10 at 0:15
@dacay - "implementing my own is faster than learning existing frameworks" - seriously, no, it's not. There's sometime's a case for reinventing the wheel - but if you're going to build a good/usable wheel it's a good idea to be pretty familiar with wheels in general and the benefits and drawbacks offered by other wheel-maker's various wheels. – Nate Jan 29 '10 at 1:25

There are WAY too many variables. The only way to know will be to code your messaging system in a way that's plugable so that you can write it in different ways and measure as you code.

Pity you've thrown out using frameworks, most would be significantly faster, more complete and more usable than anything you could possibly write yourself. Whoever came up with that requirement should be confronted and possibly fired.

share|improve this answer
and more complex and cumbersome :) i just need a simple mechanism – Deniz Acay Jan 29 '10 at 0:05
Although I understand your reluctance to learn a framework that seems to have a lot of features, I've always found that when I didn't think I needed the features of a framework like this it's because I hadn't spent as much time understanding the problem as the framework implementors--eventually you'll have to implement those features in your own framework. – Bill K Jan 29 '10 at 18:21
i am developing a framework for creating efficient applications in all sizes

To give a very general advice I would suggest you dive into the source code of jboss to get an impression how things are made when they are supposed to work (maybe the oldest version you can get, as a starting point)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.