Tagged Questions
The decoupling tag has no wiki summary.
8
votes
1answer
132 views
Any examples of outstandingly well-made complete iOS apps with available source? [closed]
I'd like to look over some really good iOS apps to see how they're put together. I've specified 'complete' because I'm more interested for current purposes in strategy than tactics (but hopefully the ...
8
votes
1answer
224 views
MVC pattern: which is better? For views or controllers to create and reference the other?
We are making a rather large Swing application which has to implement the MVC pattern.
The application currently looks like this:
There are quite a few views. They are created in a hierarchical ...
7
votes
2answers
125 views
How to build robust data apis in clojure
Hi guys : I find that my clojure apps get structurally coupled very rapidly due to the lack of a data API...- I have maps with keys that have names which, if mistyped , cause exceptions to be thrown ...
6
votes
2answers
77 views
Abstracting the DateTime.Current dependency
Is there a nuget package, or other "standard" that wraps the hard dependency created when your code is coupled to DateTime.Now?
I'm seeking guidance on this before writing my own. Albeit that it's ...
6
votes
8answers
612 views
Does using a C++ namespace increase coupling?
I understand that a C++ library should use a namespace to avoid name collisions, but since I already have to:
#include the correct header (or forward declare the classes I intend to use)
Use those ...
5
votes
1answer
122 views
How to properly decouple classes from frameworks (source level decoupling)
I am working on a game project using Microsoft XNA framework, although this question is a generic one that involves decoupling of classes/systems.
Let's say i have a class (simplified to suit this ...
5
votes
2answers
2k views
Model Using Modules in Rails Application
I have a model that requires loading external data from an auxiliary source. A number of web services exist that my model can fetch the data from (swappable), but I don't want to create code that will ...
5
votes
5answers
733 views
Alternatives to “using” keyword in C#?
I just finished watching an episode of Bob Martin at NDC where he said "using" directives in C# at the top of a page are bad because of the tight coupling they create/imply between components.
What ...
5
votes
9answers
499 views
Decoupling vs YAGNI
Do they contradict?
Decoupling is something great and quite hard to achieve. However in most of the applications we don't really need it, so I can design highly coupled applications and it almost ...
4
votes
7answers
117 views
How to handle or minimize tight coupling in jquery
Description
By design most jquery code leads to a lot of tight coupling, e.g. selectors assume a specific structure of html
var mySubnav = $("#navigation a.sub-menu");
If the corresponding html ...
4
votes
2answers
402 views
Decoupling classes C#
This might be a bit vague, but I am working on a program where several classes that update the UI. I have made a "middle-man" class that basically takes all the UI requests (among other things) and ...
4
votes
5answers
165 views
How to enforce constraints between decoupled objects?
Note - I have moved the original post to the bottom because I think it is still of value to newcomers to this thread. What follows directly below is an attempt at rewriting the question based on ...
4
votes
2answers
488 views
Difference between “Inversion of Control”, “Dependency inversion” and “Decoupling”
I'm reading theory about dependency inversion and decoupling and I can't see the difference between the two.
Dependency inversion talks about decoupling functional components so that higher level ...
4
votes
6answers
132 views
What is the golden rule for when to split code up into functions?
It's good to split code up into functions and classes for modularity / decoupling, but if you do it too much, you get really fragmented code which is also not good.
What is the golden rule for when ...
4
votes
3answers
392 views
Cohesion and Decoupling
Can anyone tell me what are Cohesion and Decoupling? I found coupling but there is no Decoupling anywhere. I need to learn their meanings.
Any help will be appreciated. Thanks for replying.
3
votes
2answers
240 views
C# constructor using a dynamic vs Interface as a parameter
In the benefit of creating clean decoupled code in c# I was hoping to get some feedback on using a dynamic parameter to construct objects. Typically I believe you'd create an interface and use the ...
3
votes
1answer
94 views
Increasing the number of Models on Google App Engine affects performance?
I made a Google App Engine application as a class project in my university. Now I need to optimize it to use it commercially.
Nowadays, the code is very slow. It has only few Models with many ...
3
votes
2answers
139 views
Book/tutorial that teaches how to make programs that are easy to maintain and are less coupled?
I'm a PHP programmer and I really want to increase the quality of my code and most importantly I want to be better at programming.
What book, tutorial or article would you guys suggest that I read ...
3
votes
3answers
148 views
Should logging reside within a class who's primary purpose is not logging?
This is more of a theoretical question. Should logging reside within a class who's primary purpose is not logging?
Here is a simple interface for anything that will preform a calculation on a ...
3
votes
3answers
1k views
DataTable Wrapper or How to decouple UI from Business logic
I am using web forms, C#, Asp.net.
As we all know, in this model UI and business logic are often mixed in. How do I separate these effectively?
The example I would like to use is:
I have a GridView ...
3
votes
4answers
2k views
Progress bar and multiple threads, decoupling GUI and logic - which design pattern would be the best?
I'm looking for a design pattern that would fit my application design.
My application processes large amounts of data and produces some graphs.
Data processing (fetching from files, CPU intensive ...
2
votes
1answer
41 views
Backbone.js is it ok to call a method on a view in the add handler of a collection?
I have a collection in backbone... in the initialize method I'm doing this.... I want to rerender a view when this collection has an item added to it.
initialize: function (models, options) {
...
2
votes
3answers
64 views
Seeking recommendations on how to decouple JS code from views
JavaScript plays an increasingly important role in most web solutions, but I find that it is much harder to decouple the JS code from the view specifics than it is for the server-side code.
What ...
2
votes
1answer
65 views
Object lifetime related; Does a term/pattern/whatnot exist for the following problem?
I'm trying to write a callback class for my GUI windows.
To (hopefully) achieve that, I'm using delegates.
typedef srutil::delegate2<void,DWORD,DWORD> CallbackMethod;
typedef ...
2
votes
6answers
164 views
C++ - Identifying a family of polymorphic classes without introducing tight coupling
Suppose I have an abstract base class called Component, which is the root of a hierarchy of GUI components. In such a case, we might have two subclasses, Button and Label, both of which are also ...
2
votes
3answers
224 views
Avoiding coupling with Strategy pattern
I am attempting to apply the Strategy pattern to a particular situation, but am having an issue with how to avoid coupling each concrete strategy to the context object providing data for it. The ...
2
votes
1answer
345 views
.Net - Decoupling Unit of Work pattern for multiple ORM's
My current application structure is:
Models assembly
Data assembly
Defines repository interfaces to be implemented by an ORM
ORM assembly
Implements repository interfaces from Data assembly
Uses ...
2
votes
5answers
89 views
CSS and Javascript too tightly coupled (CSS is not just presentation but is used by UI and JS), how to improve this?
I think supposedly, an ideal way is that CSS only deals with presentation aspect of a document, and so CSS and Javascript are de-coupled and it is a very clean solution. We can change any CSS or any ...
2
votes
3answers
135 views
Dependency Injection - Is it better to pass a complete class, or the name of a class?
For dependency injection, I understand that I have to pass an instance of one class to the main instance instead of the main class creating it's own instance, like so (php):
class Class_One {
...
2
votes
1answer
47 views
Should I hide generated classes behind a layer?
I have several classes that were generated from a WSDL and I need to write 2 small applications that read some input data, call the webservice and write the responses.
Right now I created a bunch of ...
2
votes
1answer
104 views
Will decoupling be beneficial in a redesign of a legacy application?
I am working on a company running several internet shops. We are about completely rewrite the whole code: site content and products management, order processing, partner relations, accounting, ...
2
votes
3answers
414 views
Decoupling django apps 2 - how to get object information from a slug in the URL
I am trying to de-couple two apps:
Locations - app containing details about some location (town, country, place etc)
Directory - app containing details of places of interest (shop, railway station, ...
2
votes
5answers
147 views
Advice writing Losely Coupled code with Agile methods or otherwise
I have been reading Robert C. Martin's (aka Uncle Bob) books very intensely as of late. I have found a lot of the things he talks about to be real life savers for me (small function size, very ...
2
votes
1answer
406 views
Defining name strings for NSNotification usage without coupling
I'm going to be using NSNotifications in my app to decouple the code.
I want the compiler to help me when using strings as the names of the notifications, ie, if I mistype one, I want the compiler to ...
2
votes
3answers
556 views
Managing resources in a Python project
I have a Python project in which I am using many non-code files. Currently these are all images, but I might use other kinds of files in the future. What would be a good scheme for storing and ...
2
votes
1answer
554 views
Entity Framework and coupling
I had a little discussion with a friend of mine about the use of Entity framework. I had a project where I made a 3 tier solution with the entity framework as my datalayer, and used Data Transfer ...
2
votes
7answers
520 views
How to resolve specific circular dependency: DAL & Logging
Some "high risk" data operations need to be logged. In this case, the "high risk" operations are defined as writes to our ERP system. It happens that we are logging those events to our SQL Server ...
2
votes
4answers
297 views
Best place to start decoupling objects
This is a C# question, but really could be language-agnostic
I have inherited a large object model (100+ types), with a hierarchy of objects that 'own' 0..n of other typed objects that all share a ...
1
vote
1answer
84 views
MVC asp.net - should data access layer be decoupled from domain models?
If I follow decoupling all the way, it would appear that DataAccess layer should be de-coupled from models. But then passing the information to the data access layer becomes cumbersome...Instead of:
...
1
vote
3answers
37 views
Best place for serialisation code. Internal to class being serialised, or external class per format?
I often find myself in a quandary in where to put serialisation code for a class, and was wondering what others' thoughts on the subject were.
Bog standard serialisation is a no brainer. Just ...
1
vote
3answers
72 views
Public static data used throughout program
Code examples are C# but this is a general OO question.
I know according to OO rules, class coupling should be minimised and members should be kept private wherever possible, etc.
Consider this ...
1
vote
3answers
96 views
How best to decouple objects in, for example, a 'snake' game
I am creating a snake game in C#/XNA for fun but it's a good opportunity to practice some good object design.
Snake Object
There's a snake object which is essentially a linked list, each node being ...
1
vote
2answers
89 views
symfony 2.0 bundles interworking
I want to make an application based on a main bundle leaving the possibility for other developers to make their own bundles to implement other features.
Symfony 2.0 seems a good choice for that ...
1
vote
2answers
84 views
how to properly decouple implementation specifics into class libraries in .net
I'm wondering if there is a standard way in c#(or maybe even cli) to efficiently decouple implementation logic into separate class libraries/assemblies that would be dynamically loaded by a process ...
1
vote
2answers
71 views
State pattern: Which class should I trust to update the state?
I am learning design pattern by reading Head First Design Patterns, and I have just finished the chapter on the State Pattern. However, there is one thing I don't get:
In the book, the class which ...
1
vote
1answer
93 views
How to decouple mode switching and commands
How to decouple a Mode (normally expressed by enums) from its implementation in commands and their relationship?
Is their a good pattern describing the loose binding between a mode switch (int, enum, ...
1
vote
1answer
63 views
Transform Webservice Request into internal representation?
I am implementing a SOAP-Webservice which receives different Requests. Should my Manager-class transform this Request objects into an internal representation before delegating them to implementation ...
1
vote
1answer
107 views
IoC and managing interfaces
Say I had a business object library which was using IoC to implement a data access library. Where should I define the Data Access Interface? Which library does it belong? Or should it be in a separate ...
1
vote
3answers
205 views
a completely decoupled OO system?
To make an OO system as decoupled as possible, I'm thinking of the following approach:
1) we run an RMI/directory like service where objects can register and discover each other. They talk to this ...
1
vote
1answer
82 views
Java modules communication
I have one module written on Java - web service module which accepts request process it(some business rules here), saves(modify or delete) values in db (using Hibernate) and then send status ...