Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
7answers
7k views

Is there a way to instantiate objects from a string holding their class name?

I have a file: Base.h class Base; class DerivedA : public Base; class DerivedB : public Base; /*etc...*/ and another file: BaseFactory.h #include "Base.h" class BaseFactory { public: ...
22
votes
11answers
7k views

Factory pattern in C#: How to ensure an object instance can only be created by a factory class?

Recently I've been thinking about securing some of my code. I'm curious how one could make sure an object can never be created directly, but only via some method of a factory class. Let us say I have ...
19
votes
3answers
10k views

Class factory in Python

I'm new to Python and need some advice implementing the scenario below. I have two classes for managing domains at two different registrars. Both have the same interface, e.g. class RegistrarA: ...
19
votes
9answers
8k views

Returning Objects in C++

When returning objects from a class, when is the right time to release the memory? Example, class AnimalLister { public: Animal* getNewAnimal() { Animal* animal1 = new Animal(); ...
17
votes
6answers
465 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
7answers
8k views

Factory Pattern. When to use factory methods?

When is it a good idea to use factory methods within an object instead of a Factory class? Regards, -jj.
16
votes
10answers
3k views

Abstract Factory Design Pattern

I'm working on an internal project for my company, and part of the project is to be able to parse various "Tasks" from an XML file into a collection of tasks to be ran later. Because each type of ...
14
votes
9answers
822 views

Creating a factory method in Java that doesn't rely on if-else

Currently I have a method that acts as a factory based on a given String. For example: public Animal createAnimal(String action) { if (action.equals("Meow")) { return new Cat(); ...
12
votes
2answers
2k views

Abstract factory pattern on top of IoC?

I have decided to use IoC principles on a bigger project. However, i would like to get something straight that's been bothering me for a long time. The conclusion that i have come up with is that an ...
12
votes
5answers
527 views

How does a factory know which type of object to create?

I believe the factory method design pattern is appropriate for what I'm trying to do, but I'm not sure how much responsibility (knowledge of subclasses it creates) to give it. The example of using ...
11
votes
3answers
2k views

Populating an association with children in factory_girl

I have a model Foo that has_many 'Bar'. I have a factory_girl factory for each of these objects. The factory for Bar has an association to Foo; it will instantiate a Foo when it creates the Bar. I'd ...
11
votes
18answers
3k views

My Java factory method smells. How do I fix it?

There's something very unsatisfactory about this code: /* Given a command string in which the first 8 characters are the command name padded on the right with whitespace, construct the appropriate ...
10
votes
3answers
860 views

C# Difference between factory pattern and IoC [closed]

Possible Duplicate: Dependency Injection vs Factory Pattern Can someone please explain (with SIMPLE examples) of the difference between the factory pattern and Inversion of Control pattern. ...
10
votes
5answers
2k views

Unit testing factory methods which have a concrete class as a return type

So I have a factory class and I'm trying to work out what the unit tests should do. From this question I could verify that the interface returned is of a particular concrete type that I would expect. ...
9
votes
6answers
561 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
9answers
987 views

What is your threshold to use factory instead of a constructor to create an object?

What is your threshold to use factory instead of a constructor to create an object? You always use factory. You use factories only if you have invariant checks other than checking for nulls. You ...
9
votes
5answers
2k views

Does an IoC container replace the use of Factories

I am just getting started with IoC containers so apologies if this is a stupid question. I have code like the following in an app internal static class StaticDataHandlerFactory { public ...
8
votes
5answers
247 views

What is the preferred way to implement a factory method in C++?

A newbie question: I have a hierarchy of classes with some virtual functions and I am trying to implement a factory method, but I am not sure what is the best way: Return a raw pointer from the ...
8
votes
7answers
345 views

When does it make more sense to use the factory pattern rather than an overloaded constructor to instantiate an object?

In Karl Seguin's Foundations of Programming there is a small section on using the factory pattern. He closes the passage by stating "you can accomplish the same functionality with constructor ...
8
votes
5answers
1k views

How can I code a factory in Perl and Moose?

Is there a simpler or better (=>easier to maintain) way to use Perl and Moose to instantiate classes based on incoming data? The following code is a stripped down sample from a project I'm working ...
8
votes
7answers
733 views

How to pass a type to a method - Type argument vs generics

I have a method of an object which is something like a factory. You give it a type, it creates an instance and does a few other things. An elegant way to do it (in my opinion) is like this: public T ...
8
votes
7answers
2k views

What methods should go in my DDD factory class?

I am struggling to understand what my factory class should do in my DDD project. Yes a factory should be used for creating objects, but what exactly should it be doing. Consider the following ...
7
votes
5answers
120 views

Is it worth abstracting out Object creation for single classes?

I'm playing around with design patterns, and things are coming along nicely. One thing I'm unsure of is it worth abstracting out Object creation when there is currently only one object? For example ...
7
votes
6answers
137 views

Factory Pattern Method Problem

Basically I have an interface Person, and I have 2 classes Female and Male that implements that interface. But for the Female class, I have a method getPregnancyMonth that my Male class does not ...
7
votes
6answers
218 views

c# generics class factory question

I want to control the creation of a bunch of classes that all share a common interface and all need a bit of logic in the construction. Also, I don't want any other code than the class factory to be ...
7
votes
6answers
345 views

How to name factory like methods?

I guess that most factory like methods start with create. But why are they called "create"? Why not "make", "produce", "build", "generate" or something else? Is it only a matter of taste? A ...
7
votes
2answers
1k views

Python: Class factory using user input as class names

I want to add class atttributes to a superclass dynamically. Furthermore, I want to create classes that inherit from this superclass dynamically, and the name of those subclasses should depend on user ...
7
votes
8answers
1k views

Java - static factory method and switch statements

I am dealing with a set of message objects, each of which has a unique identifier corresponding to them. Each message can be constructed either from a Map, or from a ByteBuffer (the messages are ...
7
votes
14answers
9k views

How to design a simple C++ object factory?

In my application, there are 10-20 classes that are instantiated once[*]. Here's an example: class SomeOtherManager; class SomeManagerClass { public: SomeManagerClass(SomeOtherManager*); ...
6
votes
6answers
148 views

Factory of singleton objects: is this code thread-safe?

I have a common interface for a number of singleton implementations. Interface defines initialization method which can throw checked exception. I need a factory which will return cached singleton ...
6
votes
2answers
95 views

When and where to call factories at runtime?

I recently asked about doing DI properly, and got some links to blog posts about it. I think I have a better understanding now - separate object construction from logic, by putting it in factories. ...
6
votes
1answer
204 views

Delphi Memory Issue (FastMM4)

Working on a project which uses factories to construct objects. I keep the pointers to the factory functions in vars globally (bad I know) and register them on initialization. I recently was ...
6
votes
2answers
69 views

When to hide an inheritance heirarchy in a concrete class?

Whenever I am in a situation where I have a factory returning abstract-base-class implementations to a user based on some "low-level" type paramater such as a protocol or the format of an external ...
6
votes
3answers
543 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
514 views

Realistic use case for static factory method?

I'm familiar with the idea and benefits of a static factory method, as described in Joshua Bloch's Effective Java: Factory methods have names, so you can have more than one factory method with the ...
6
votes
4answers
402 views

Where to delete an object created by factory?

If I have a factory, that creates an object and returns a pointer to it, what will be a better way to delete it: By delete call in the "user" code, or by a new DestructObject function which I should ...
6
votes
1answer
522 views

C++0x class factory with variadic templates problem

I have a class factory where I'm using variadic templates for the c'tor parameters (code below). However, when I attempt to use it, I get compile errors; when I originally wrote it without ...
6
votes
3answers
302 views

Is there a design pattern for this?

I have a component that needs to call a specific service depending on the input it receives. So my component has to look at the input and based on a configuration that says "for this input call this ...
6
votes
5answers
515 views

What exactly is a Class Factory?

I see the word thrown around often, and I may have used it myself in code and libraries over time, but I never really got it. In most write-ups I came across, they just went on expecting you to figure ...
6
votes
3answers
150 views

Is this a good candidate for a factory?

I want to create a voting system, where multiple domain objects can be voted on: a calendar event a comment a user So I figured I would create a Voteable interface for these items: interface ...
6
votes
5answers
1k views

Can I have Hibernate create an object through factory method?

Is there a way to map a factory method in Hibernate (as opposed to having Hibernate call a default constructor and reflectively set properties or fields)? And if it can't be mapped, does Hibernate ...
6
votes
5answers
470 views

Is it possible to use a c# object initializer with a factory method?

I have a class with a static factory method on it. I want to call the factory to retrieve an instance of the class, and then do additional initialization, preferablly via c# object initializer syntax ...
6
votes
7answers
2k views

Is it OK to pass parameters to a Factory method?

One of the ways to implement Dependency Injection correctly is to separate object creation from business logic. Typically, this involves using a Factory for object creation. Up until this point, ...
5
votes
3answers
77 views

Factory methods and private variables

I'm using a factory class to create instances of another class, say the Product class. How do I set private variables within the Product class from the factory class? Should I even be doing so? What ...
5
votes
4answers
221 views

In simplest terms, what is a factory?

What is a factory and why would I want to use one?
5
votes
6answers
139 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
282 views

Dependency Injection and Factories

What is a decent way to handle conditional sub-factories with a DI approach. The scenario is the loader object that gets injected into an entry is dependent on the settings of that entry. Originally I ...
5
votes
6answers
537 views

Effective Java By Joshua Bloch: Item1 - Static Factory Method

I am reading the Effective Java by Joshua Bloch and I have question about Item1 Static Factory Method. Quote[Bloch, p.7] Interfaces cant have static methods, so by convention, static factory ...
5
votes
3answers
433 views

Pickle a dynamically parameterized sub-class

I have a system which commonly stores pickled class types. I want to be able to save dynamically-parameterized classes in the same way, but I can't because I get a PicklingError on trying to pickle a ...
5
votes
3answers
462 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 ...

1 2 3 4 5 9