Tagged Questions

Is a creational pattern, provide an interface for creating an object, but let sub classes decide which class to instantiate.

learn more… | top users | synonyms

17
votes
6answers
466 views

C# factory - is upcast a must?

Does the C# factory pattern require an upcast? I want God in class library G to create an Adam in class library A without making G dependant on A. God produces Adams for consumption by Eve in class ...
17
votes
5answers
493 views

public static factory method

First of all please forgive me if its a really dumb question, I am just trying to learn this language to its core. I am reading Effective Java and the very first chapter talks about Static factory ...
13
votes
2answers
1k views

Using Ninject IOC to replace a factory

I've got a factory method inside a parser. Essentially as I load a token I look up the handler for that token, or drop through to the default handler. I've implemented this as a switch and as a ...
12
votes
2answers
4k views

How do I pass values to the constructor on my wcf service?

I wish to pass values into the constructor on the class that implements my service. However ServiceHost only lets me pass in the name of the type to create, not what arguments to pass to its ...
11
votes
4answers
448 views

Constructing an object graph from a flat DTO using visitor pattern

I've written myself a nice simple little domain model, with an object graph that looks like this: -- Customer -- Name : Name -- Account : CustomerAccount -- HomeAddress : PostalAddress ...
11
votes
9answers
988 views

Do setup/teardown hurt test maintainability?

This seemed to spark a bit of conversation on another question and I thought it worthy to spin into its own question. The DRY principle seems to be our weapon-of-choice for fighting maintenance ...
10
votes
9answers
318 views

Why do static Create methods exist?

I was wondering, why do static Create methods exist? For instance, why use this code: System.Xml.XmlReader reader = System.Xml.XmlReader.Create(inputUri); over this code: System.Xml.XmlReader ...
9
votes
3answers
156 views

How to choose between Factory method pattern and Abstract factory patter

I know similar questions were asked before. I've been reading a lot about this during the last couple of days and I think I can now understand the differences in terms of design and code flow. What ...
9
votes
6answers
574 views

How to implement the factory pattern in C++ correctly

There's this one thing in C++ which has been making me feel me feel uncomfortable for quite long time because I don't honestly don't know how to do it, even though it sound simple: How do I ...
9
votes
3answers
2k views

Factory, Abstract Factory and Factory Method

I am really confused about these three terms. My understanding is that: in the Factory pattern, there is no concrete factory. The factory builds the new objects according to the parameters. in ...
9
votes
3answers
190 views

What's the benefit of calling new on an object instance?

I'm reading Programming Perl, and I found this code snippet: sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $self = { color => "bay", ...
8
votes
5answers
431 views

Factory Pattern in C++ — doing this correctly?

I am relatively new to "design patterns" as they are referred to in a formal sense. I've not been a professional for very long, so I'm pretty new to this. We've got a pure virtual interface base ...
7
votes
4answers
199 views

Factory Pattern, Another Pattern or no pattern at all?

I have 2 cases wheter a method can be considered a Factory Design Pattern, this example is in C#, altought, can apply to other programming languages: enum NinjaTypes { Generic, Katanna, ...
7
votes
5answers
297 views

Saving Data with the Factory Pattern?

I've been becoming more familiar with the Factory Pattern (along with Strategy Pattern) and what a great benefit the pattern can have. However, I've been struggling with the following situation: ...
7
votes
1answer
188 views

Is it ok to call specifications from an aggregate factory for validation, or does that validation call belong in a unit test (DDD)?

I have created a factory and a set of specifications to create and validate an aggregate root. Currently I have some tests for the factory that call the specifications on the product of the factory, ...
6
votes
1answer
213 views

Abstract factory with abstract parameters?

I'm trying to design a good entity creation system with an abstract factory (as per http://www.dofactory.com/Patterns/PatternAbstract.aspx) but I'm struggling when it comes to instance specific ...
6
votes
2answers
199 views

Dependency Injection leads to proliferation of factories?

I have always felt uncomfortable when dealing with classes that needed to instantiate a lot of objects since I've been using Dependency Injection principles. For instance, let's say I have a class ...
6
votes
2answers
187 views

Factory class with object initialization - trying to avoid static

Hello, I'm trying to design a set of factory classes for our system, where some objects created by the factory also need to be initialized before they can be used properly. Example: $foobar = new ...
6
votes
6answers
342 views

Advice on Factory Method

Using php 5.2, I'm trying to use a factory to return a service to the controller. My request uri would be of the format www.mydomain.com/service/method/param1/param2/etc. My controller would then ...
6
votes
1answer
427 views

How to implement a generic RepositoryFactory?

I'm trying to implement a Generic Repository. This is what I've got so far ... public interface IRepositoryFactory { IRepository<T> RepositoryOf<T>() where T : class; } public class ...
6
votes
3answers
546 views

Using the factory pattern for classes with differing parameters

I have a very simple factory which takes an Enum as one of its parameters to determine the type of object that should be created, and a other parameter that's common to all the objects being created. ...
6
votes
6answers
534 views

Factory Pattern but with object Parameters

Take the following classic factory pattern: public interface IPizza { decimal Price { get; } } public class HamAndMushroomPizza : IPizza { decimal IPizza.Price { get { ...
6
votes
1answer
199 views

Get class instance by class name string

I noticed the function Object.factory(char[] className) in D. But it does not work like I hoped it would work; it does not work ;) An example: import std.stdio; class TestClass { override ...
6
votes
5answers
211 views

myth about factory pattern

This has bothered me for awhile, and I have no clues if this is a myth. It seems that a factory pattern can ease the pain of adding a dependency for a class. For example, in a book, it has something ...
6
votes
3answers
228 views

Flyweight and Factory problem with IDisposable

I seem to be mentally stuck in a Flyweight pattern dilemma. First, let's say I have a disposable type DisposableFiddle and a factory FiddleFactory: public interface DisposableFiddle : IDisposable { ...
6
votes
5answers
907 views

Is this how the Factory Pattern works?

The Singleton and the Registry patterns were very simple and easy for me to understand right away but the Factory pattern has been something I haven't been able to get my brain to interpret 100% yet. ...
5
votes
2answers
112 views

C++ Factory Pattern with Heterogenous Constructor Constraint

I'm implementing a C++ program that can programmatically instantiate objects given an input file which provides the class names and arguments to pass to the constructors. The classes are derived from ...
5
votes
1answer
98 views

PHP OOP design - limiting parameters to specific child classes while implementing generic interfaces

I often do PHP projects designed to scrape hierarchical data from web pages and save them to the DB (essentially, structure the data - think scraping government websites that do have the data, but do ...
5
votes
6answers
140 views

Best way to build a factory

I have been reading about Factory pattern a lot lately. I am trying to figure out the best way to implement it. In the book C # Agile Principles patterns and practice the recommendation is to create ...
5
votes
2answers
169 views

Object initialization and object factories in C++

I'm quite new to c++ development and design and so I apologize in advance in my question is vague or poorly structured. I have several distinct and unrelated hierarchies in my code and I would like ...
5
votes
8answers
478 views

Factory design pattern - Not use static methods because unit testing is a problem

I know this question has been asked several times in stackoverflow but somehow still had some trouble figuring out a solution. The following example I think is a good case to have static methods ...
5
votes
3answers
471 views

When to use the abstract factory pattern?

I'm trying to succinctly describe when to use a factory, for both myself and my team. I ran across the following related questions, which helped somewhat: When to use factory patterns? (useful pdf ...
5
votes
4answers
403 views

Why should one use factory method to create objects [closed]

Possible Duplicates: Factory Pattern. When to use factory methods? Why do static Create methods exist? Though I know what is Factory Design Pattern. But I am unable to comprehend what are ...
5
votes
6answers
308 views

In which cases it makes sense to use factory classes instead of static functions?

Currently I have created a ABCFactory class that has a single method creating ABC objects. Now that I think of it, maybe instead of having a factory, I could just make a static method in my ABC ...
5
votes
5answers
2k views

Real world examples of Factory Method pattern

I just read Factory Method. I understand that it provides a way to delegate the instantiation to sub-classes. But I couldn't understand the possible uses in a real-world scenario. Can anyone give one ...
5
votes
3answers
404 views

Which design pattern is the opposite of the Factory pattern?

I was wondering if there is an opposite pattern of the factory pattern. For example, when a certain object needs to be deleted some extra work needs to be done, to undo the configuration which was ...
5
votes
2answers
676 views

How to use factory classes with linq for sql?

I have a model on top of my database model and map the objects in my Repository. However, apparently it makes a difference whether I "select new" directly in my GetUsers or "select factoryresult" as ...
4
votes
3answers
128 views

Generic factory of generic containers

I have a generic abstract class Factory<T> with a method createBoxedInstance() which returns instances of T created by implementations of createInstance() wrapped in the generic container ...
4
votes
1answer
58 views

XmlSerializer and factory-created elements

I am trying to serialize/deserialize objects that have factory-created members. For example, lets say there are a member of type Foo, which is instantiated using FooFactory.CreateFoo(int bar). My ...
4
votes
3answers
115 views

A Factory Pattern that will satisfy the Open/Closed Principle?

I have the following concrete Animal products: Dog and Cat. I am using a parameterized Factory method to create said products. Depending on the AnimalInfo parameter that is passed to the Factory ...
4
votes
4answers
134 views

Techniques to expose multiple Interfaces (via static creation methods)

I am currently working on a project where I am attempting to hide as much detail about a hierarchy I have created as possible. I want to do this to minimize the amount of information the user needs to ...
4
votes
2answers
259 views

Is factory pattern meaningless in Python?

Since Python is a duck-typed language is writing factory classes meaningless in Python? http://en.wikipedia.org/wiki/Factory_method_pattern
4
votes
2answers
167 views

How to mock an Object Factory

I use Factories (see http://www.php.net/manual/en/language.oop5.patterns.php for the pattern) a lot to increase the testability of our code. A simple factory could look like this: class Factory { ...
4
votes
3answers
259 views

“Head first Design Patterns” book: Conceptual errors explaining Factory Pattern?

My question is related to chapter 4 (Baking with OO goodness) - the factory pattern. My problem is that I found no advantage on Factory Method regarding to Simple Factory. But the annoying thing, ...
4
votes
1answer
278 views

python 3.2 plugin factory: instantiation from class/metaclass

I'm riffing from the information here: Metaclass not being called in subclasses My problem is that I'm unable to create an instance of an object using this class registry. If I use "regular" ...
4
votes
2answers
927 views

Differences between Abstract Factory Pattern and Factory Method

I know there are many posts out there about the differences between these two patterns, but there are a few things that I cannot find. From what I have been reading, I see that the factory method ...
4
votes
4answers
187 views

Factory implemented with static method

I have seen an implementation of Factory using static methods. Something like this: public class MyFactory { public static Product1 createProduct1() {} public static Product2 createProduct2() ...
4
votes
1answer
172 views

Roles, Abstract Pattern, Loose Coupling

Let's imagine we got the following: A) Factory interface such as public interface IEmployeeFactory { IEmployee CreateEmployee(Person person, Constants.EmployeeType type, DateTime ...
4
votes
7answers
442 views

Create instances using one generic factory method

I am trying to find a easy to extend way to create objects at runtime based on a static String class attribute, called NAME. How can I improve this code, which uses a simple if construct? public ...
4
votes
2answers
408 views

python 3: class “template” (function that returns a parameterized class)

I am trying to create a function that is passed a parameter x and returns a new class C. C should be a subclass of a fixed base class A, with only one addition: a certain class attribute is added and ...

1 2 3 4 5 6