Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
6answers
2k views

Replace giant switch statement with what?

I have a code that parses some template files and when it finds a placeholder, it replaces it with a value. Something like: <html> <head> <title>%title%</title> ...
11
votes
2answers
451 views

What are the known “gotchas” with regards to the Chain of Responsibilty pattern?

I have been finding myself using the Chain of Responsibility pattern often (3 times is often for me) in my current project and I'm wondering if I have become a little over-enthusiastic about the ...
9
votes
9answers
2k views

Why would I ever use a Chain of Responsibility over a Decorator?

I'm just reading up on the Chain of Responsibility pattern and I'm having trouble imagining a scenario when I would prefer its use over that of decorator. What do you think? Does CoR have a niche ...
4
votes
3answers
981 views

What are the advantages of chain-of-responsibility vs. lists of classes?

Recently, I was discussing with another programmer the best way to refactor a huge(1000 lines) method full of "if" statements. The code is written in Java, but I guess this issue could happen in ...
3
votes
6answers
159 views

Design Patterns: Many Methods Share The Same First Step

Is there a design pattern that can help me avoid repeating DoThisStepFirst() in many methods? class Program { static void Main(string[] args) { Method1(); Method2(); ...
3
votes
1answer
84 views

Constructor Foo::Foo receiving a reference to Foo but not copy-constructor

Suppose i have a non-copyable class Foo, and one of its constructors just happens to receive a reference to Foo. class Foo { public: Foo(Foo& parent) {...} private: void operator=(Foo); ...
3
votes
1answer
205 views

Chain of Responsibility and alias_method problems in Ruby

I'm trying to implement the chain of responsibility pattern in Ruby and ActiveRecord for a polymorphic object. I'm having a few problems. Sometimes I get an error that a method is not defined when ...
3
votes
3answers
1k views

C# Chain-of-responsibility with delegates

For my understanding purpose i have implemented Chain-Of-Responsibility pattern. //Abstract Base Type public abstract class CustomerServiceDesk { protected CustomerServiceDesk _nextHandler; public ...
2
votes
2answers
43 views

How to implement Chain of Responsibility in a testable fashion?

I'd like to implement a Chain of Responsibility pattern, taking care of the 'broken link' problem as follows: public abstract class Handler{ private Handler m_successor; public void ...
2
votes
1answer
67 views

FxCop (/VS2010 Code Analysis), possible to flag method result as “callers responsibility now” for IDisposable?

If I write the following code: public void Execute() { var stream = new MemoryStream(); ... } then code analysis will flag this as: Warning 1 CA2000 : Microsoft.Reliability : In ...
2
votes
5answers
165 views

Pattern where only one handler of many should act based on specialization

I'm trying to rewrite some code to break some coupling issues and make it easier to modify in the future. Right now, I have a static factory method in a base class that, depending on the ...
2
votes
1answer
196 views

chain of responsibility design pattern - regd

I've seen some questions on this pattern but I am trying to understand more about this design pattern in depth. Any resources in this regard, experts commentary on what scenarios they tend to use this ...
2
votes
4answers
373 views

Would this be a pipeline, a chain of responsibility, or something else?

I'm building a multiprocess architecture that seems to be a strange meld of a pipeline and a chain of responsibility. Essentially, I have a chain of handlers linked up by queues. Each handler will ...
2
votes
2answers
220 views

Patterns used in WPF

I have been getting more involved with WPF for about a year now. A lot of things are new and sometimes it is hard to get my head wrapped around it. At the same time I am rereading the GOF Design ...
2
votes
3answers
150 views

Design Pattern to allow code to be injected at certain points

I am trying to allow developers to extend my code at certain points of execution. My specific example is a database transaction wrapper. The wrapper takes care of many details that we wanted to ...
2
votes
3answers
1k views

C# -Pipeline Style event model

In ASP.NET Web Apps , events are fired in particluar order : for simplicity Load => validation =>postback =>rendering Suppose I want to develop such pipeline -styled event Example : Event 1 [ ...
2
votes
8answers
258 views

Application design for processing data prior to database

I have a large collection of data in an excel file (and csv files). The data needs to be placed into a database (mysql). However, before it goes into the database it needs to be processed..for example ...
1
vote
1answer
90 views

Java Generics: chaining together generic function object

I've been struggling with the following problem. I have a series of function objects, each with it's own input and output types defined via generic type arguments in java. I would like to arrange ...
1
vote
3answers
74 views

Java patterns: engineering data flows for data mining tasks

I am a data miner, an as such, I spend a lot of time transforming raw data in various ways to enable consumption by predictive models. For instance, read a file in a certain format, tokenize, ...
1
vote
2answers
40 views

Is HashMap in a chain of responsibility an abuse of the pattern?

I've seen an example implementation of the CoR pattern using a HashMap as the object that is passed down the chain, possibly with new content being added to it by handlers; an outline of the code ...
1
vote
1answer
130 views

Implementing Chain of Responsibility with LinkedList

I'm having a hard time wrapping my head around this, and I'm hoping someone can help me. I have a Chain of Responsibility class, and I'm wondering if I can (and would want to) implement it as a ...
1
vote
3answers
349 views

What's the difference between “Chain of responsibility” and “Strategy” patterns?

I'm raising this question because of another question I asked here on SO some days ago. I had to solve an specific problem, and after two replies I got, I realized two patterns can help to solve that ...
1
vote
3answers
206 views

C# - Should an object be responsible for creating a history object when it changes something like status?

This is more of an architecture/best practices question than anything else, so please feel free to add your two cents. I know i stated status in the title, but this goes for any basic property of an ...
1
vote
2answers
422 views

How do I declare a chain of responsibility using decorators in Ninject?

I'd like to declare a chain of responsibility using decorators in Ninject. Has anyone done that before? Thanks.
0
votes
1answer
16 views

Can COM be used with Chain of Responsibility Pattern

The idea is that there is a primary implementation of COM interface, which needs to handle different MIME types (MIME is just an example). Primary implementation handles several common MIME types that ...
0
votes
2answers
57 views

Would this still be considered a Chain-of-Responsiblity pattern?

I have been using a design pattern for quite some time and have been calling/referring to it as a "Chain-of-Responsibility pattern" but now I realise there are differences, and it may not be ...
0
votes
2answers
121 views

Understanding the need for struts 2 and commons chain in simple CRUD website

I have a simple CRUD website in development process, almost done. I was asked to refactor the code but this time use struts 2 and commons chain. I read a couple of sites like this but wasn't able to ...
0
votes
3answers
137 views

What would you like to correct and/or improve in this java implementation of Chain Of Responsibility?

package design.pattern.behavioral; import design.pattern.behavioral.ChainOfResponsibility.*; public class ChainOfResponsibility { public static class Chain { private Request[] requests = ...
0
votes
1answer
170 views

Chain of Responsibility Pattern: is it a good practice to have interdependent handlers?

I have this scenario: I have a chain of query handlers, the first is to query the cache, if the cache can't answer it or the answer is stale, then hit a database, if it can't find the answer or the ...
0
votes
1answer
541 views

Composite + Chain of Responsibility example

Can anyone give a practical example of using the design patterns Composite and Chain of Responsibility together? Thanks
0
votes
1answer
133 views

wpf events and chain of responsibility pattern

do routed events from wpf have something in common with the chain of responsibility pattern ? i googled for this and i don't see anyone talking about this :S, although i though that the routed events ...
0
votes
4answers
190 views

Is this possible in PHP?

Consider the following PHP snippet: <?php class Is { function __get($key) { $class = __CLASS__ . '_' . $key; if (class_exists($class) === true) { return ...
0
votes
2answers
172 views

How would you test something that filters complex objects

I have a persistent object with 7 pertinent fields. The fields can hold the number of values listed here: Field # of Possible Values 1 5 2 20 3 2 4 2 5 19 6 ...