vote up 0 vote down star

I've got a big VS.NET project with 5-6 projects and one of these projects is the Core DLL.

Now to add some plugin support I extracted an interface, however interface was required to use some other classes and the Core.dll needed the interface so I had to separate them. (I can't reference to each other)

After this my day ruined because even after spending about 4 hours, I couldn't separate them! At the end I created like 20+ projects and still it doesn't work (actually not even close). Looks like I am going to end up with 50 projects and need to change lots of code to get it right.

I was aware of that my code was highly coupled, and bit back.

Am I doing this right? Now do I have to pay my dues and suffer because of my highly coupled code? Or am I missing something?

flag

Thanks for sharing your pain brought by tight coupling. – Rui Craveiro Apr 27 at 15:47
:) I knew this was going to happen but it's turn out to be a bigger mess than I thought. – dr. evil Apr 27 at 16:35

4 Answers

vote up 2 vote down check

If your working with interfaces, you should be able to pull your interface out of the core DLL, and interfaces for any requirements on that original interface, with little pain.

If you have highly coupled dependencies through your interface, you will likely need to refactor a bit. Try to extract either interfaces or base classes out of the main interface's dependencies (which would be easy to pull into the new project). This should help prevent the circular dependency problems it sounds like you're running into right now.

In general, though, I'd say to step back and think about your project before you do this at all. The project layout should be based off function more than depedencies - if you group your classes according to what they are doing cleanly, most of the dependency issues tend to clean themselves up. I'd really look into refactoring this before you try to extract, in order to get the cleanest layout possible.

link|flag
interfaces actually saved me, basically I created interfaces for every single dependency and do a bit more refactoring make them some sense and removed other dependencies. Cheers. – dr. evil Apr 29 at 20:26
@fm: Glad to hear you got it working. – Reed Copsey Apr 29 at 22:09
vote up 3 vote down

Refactoring, refactoring, refactoring. You will have to pay your dues, but I think it is worth it. You'll learn a lot.

link|flag
vote up 1 vote down

Have you considered using MEF

link|flag
MEF is unlikely to be much use until he can get his coupling issues in hand. Also, I'm not sure he's working on the CLR - this may be native code. – Reed Copsey Apr 27 at 15:46
I agree, the coupling issues need to be solved but once there MEF could be of use for handling plugins...He does say "big VS.NET project", i guess it could be native code – Jon Apr 27 at 16:17
I'm using MEF, and it's CLR. – dr. evil Apr 27 at 16:31
vote up 0 vote down

Did you already create a dependency graph? Graphviz dot can help visualizing (and explaining) the problem.

link|flag

Your Answer

Get an OpenID
or

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