an OOP pattern to implement an interface responsible for creating objects.
2
votes
2answers
55 views
A static factory method on a generic or a non-generic class?
I have a generic class, let's call it MyClass<T>, which will need to have a factory method so to abstract constructor details away from client code.
Which of the two options is correct? ...
0
votes
4answers
83 views
C# - want to refactor - appropriate design pattern?
My application currently takes a string read by a barcode scanner, and performs a task depending on the format of the barcode string. Essentially, the barcode string is passed to a web service ...
0
votes
1answer
46 views
AngularJS - controller and factory - where am I going wrong?
I'm new to Angular and cannot pinpoint where I am going wrong. I'm just trying to simply inject my factory into my controller, reference said controller within my html and use ng-repeat to present the ...
2
votes
2answers
43 views
Correcting implementation of a Factory Method with parameters
I'm making a solution for a program that builds robots with different types of parts(C#).
In this case I have two types that share some attributes and both types of part inherit from an abstract ...
1
vote
2answers
79 views
Non-Singleton Services in Angular
Angular clearly states in its documentation that Services are Singletons:
Angular services are singletons
Counterintuitively, module.factory also returns a Singleton instance.
Given that there are ...
0
votes
0answers
24 views
Access factory function from nested class
What I have is:
• A factory function, with a nested class (so that it is more difficult to directly instantiate the class)
• Inside the class I have an update method which should call the factory ...
3
votes
4answers
58 views
C# task factory timeout
I have to execute a long process operation in a thread and continue by returning the result to a function. Here is my code :
Task<ProductEventArgs>.Factory.StartNew(() =>
{
try
...
1
vote
2answers
36 views
What is preferred .NET 4.5 C# design pattern for windows service which polls DB table record and processes it based on type?
The requirement is to re-write the current windows service app (.net 2.0 with c# to .net 4.5 with design pattern) which is used to poll a db table for pending record, if any pending record, take it ...
1
vote
1answer
21 views
PDO Wrapper Class - If Connected Check
I'm writing a PDO Wrapper as a bit of a learning project and I'm trying to combine it with using dependency injection. My current set up has a factory that will set dependencies. So, for example, I'll ...
4
votes
6answers
103 views
Purpose of factory classes in Java
I have used Java for quite a long time, but I never did find out, what makes factories so special. Can somebody please explain it to me? Is there any reason why I should want to implement my own ...
1
vote
3answers
52 views
PHP Factory design pattern method clarification
I want to know if this tutorial is correctly implementing factory design pattern in PHP. Below is the actual source code.
<?php
class Automobile
{
private $vehicle_make;
private ...
0
votes
2answers
44 views
Why does Spring report a factory method arg as ambiguous?
I'm trying to create this bean:
<bean id="myBean" class="java.lang.String" factory-method="valueOf">
<constructor-arg name="obj" value="a string" type="java.lang.Object"/>
...
0
votes
0answers
25 views
Create Bean when even the factory class has a constructor with arguments
how can I create a bean of the CustomExceptionHandler? This class has only a constructor with arguments as well as its factory. That means that creating a bean for the factory bean and using the tag ...
0
votes
1answer
63 views
How to create a generic template based factory?
I am using c++98. I want to create a generic factory which is template based, and the creator can take no parameter to create the target object, or one parameter.
/*<class.h> begins
#ifndef ...
1
vote
3answers
71 views
Can a Domain Model Factory Call a Repository?
In our DDD project we are using a Factory to create our initial aggregate root model 'Order'. There is a business rule that says new Orders have their supplier 'Order.Supplier' defaulted to a ...
0
votes
1answer
62 views
Is there an elegant way to define a default typename in template
I am using C++98 here unfortunately. Here I paste the full code set
/*<class.h> begins
#ifndef INCLUDED_CLASS
#define INCLUDED_CLASS
#include <iostream>
#include ...
0
votes
1answer
52 views
Compilation error when creating template & boost::shared_ptr based generic factory
I am using c++98 unfortunately.
template <class bT>
class Creator
{
public:
virtual bT* create() = 0;
};
template <class bT>
struct CreatorPtr
{
typedef boost::shared_ptr< ...
0
votes
0answers
13 views
Using Lazy load pattern in ADO.Net
lazy load pattern helps to improve data access performance.
Is it possible to mix lazy load pattern and database access factory in ADO.Net and C#?and Is it useful to mix these two patterns?
0
votes
1answer
60 views
OOD: Using factory pattern in combination with strategy pattern
There are a few questions already on Stackoverflow with similar scenarios, but they don't really address my case.
I am currently doing some refactoring and would like to make the code more robust, ...
0
votes
1answer
36 views
Implementing Factory Method Pattern using Spring
I want to understand how the following factory method pattern can be implemented using spring.
Here is the code without using spring
Interface FileParser {
void parse()
}
Class ...
0
votes
0answers
25 views
how to unit test a class that uses a factory?
If I have a class Foo that gets objects from a factory, how do I unit test Foo?
class Foo {
void doSth(){
AnObject object = Factory.instance().getObject();
object.doSth();
}
}
I'm ...
0
votes
2answers
80 views
AngularJS factory http returns empty
I'm trying AngularJS for the first time. I'm getting JSON data from a http-get request using a factory, but the object is returned empty, before the ajax-request is done.
Factory:
...
0
votes
0answers
55 views
OverflowError: Python int too large to convert to SQLite INTEGER
I get this error when I run django==1.4.2 tests with factory_boy==1.2 in Ubuntu 13.04.
These tests run in Ubuntu 12.10.
So the changes between them are python==2.7.3 and python==2.7.4.
Does it change ...
1
vote
1answer
42 views
Do I need type checking for a C# object factory to call the appropriate methods?
Given the following pseudo C# code:
class BigMessage : Message { }
class SmallMessage : Message { }
abstract class Message
{
static public Message Factory()
{
Random random = new ...
0
votes
1answer
35 views
Factory pattern and complex beans
I'm trying to apply a factory pattern for creating request beans to use on a protocol stack. Now the request beans hold properties with other beans - which also should be part of the factory pattern ...
1
vote
2answers
69 views
Should the factory pattern contain validation logic
When using the factory pattern, should the factory itsel contain validation logic or should that be left up to the calling classes to take care of validation before passing the context data in?
I ...
0
votes
1answer
25 views
Factory Method - what exception to throw
I have an extremely simple factory method that creates a model instance based on some values and conditions of config passed to it.
What i am unsure about is what to do if the factory is unable to ...
-4
votes
0answers
113 views
Please give examples of Factory Pattern and abstract Factory pattern in Java [closed]
Like for Log4J, static Logger logger = Logger.getLogger(SyncEngine.class);
0
votes
1answer
22 views
Testing methods that behaves like getter/setters but are more like factories
Let's say I have a small class that handles connections to MySQL databases:
class myDatabaseHandler{
private $_databases;
public function addDatabase($name, $dsn, $username, $password){
...
1
vote
3answers
45 views
Design pattern: Only instanciate class if it is not a duplicate of an already instanciated object
I have a class RT modelling a rooted tree (essentially).
Let's say, I have already an instance rt1 holding the following tree:
1
/ \
0 2
Now, I could construct another instance (rt2) ...
1
vote
0answers
31 views
Java use extends or a Factory what's best in this case?
hello guys lets say I am making an Ability class that looks like this :
public class Ability{
private final List<Transformation> transformations;
}
if i want to make a specialized ability ...
0
votes
1answer
92 views
WCF Service host using ServiceHostFactory with Multiple Binding
I have created WCF service to host on IIS.
I am using ServiceHostFactory method to host my service(using Unity as DI).
I want to host my service using multiple binding, over the HTTP as well as over ...
0
votes
3answers
38 views
How to augment an object with custom method in javascript?
I'm wondering if there is some best-practice for how to give behavior to object received from the outside (a db, the network, etc) in javascript (nodejs).
For instance, assume I have some ...
-2
votes
1answer
40 views
Abstract Factory - getting LKN2019 of death error message
I know I must be missing on one of those details that you can't just seem to spot, then after one month it hits you "Evrika !".
Basically, what I have to do is implement an abstract factory class for ...
1
vote
0answers
74 views
How to call factory girl with the same model name but belongs to different rails 3.2.12 engine?
There is misc_definition model in both projectx and customerx rails 3.2.12 engine. Projectx and customerx are needed in the same rails app. Now there is a problem about how to call the factory girl ...
0
votes
1answer
99 views
Why is my virtual method being skipped over in C++?
Long story short: The program I'm working on is a rogue like - even though that isn't really needed for this question.
Here's the hierarchy tree for my classes related to this question:
...
0
votes
0answers
14 views
abstract Pattern vs factory pattern, creation with class and with object
I've read so many times,
abstract factory create their products with objects,
factory method create their products with classes
But i can't see it, for example
(abstract factory)
main{
...
4
votes
3answers
103 views
Where to implement a factory method?
I've been trying to grasp OOP concepts and while I do get the general ideas behind most of them, I often find myself in need of some advice regarding their practical implementation. One of such cases ...
0
votes
1answer
70 views
How to call a custom service on the service locator object from Module#getViewHelperConfig() in Zend Framewok 2?
I have a ViewHelper and want to initialize it in Module#getViewHelperConfig():
<?php
namespace Search;
use statements...
class Module implements
ConfigProviderInterface,
...
1
vote
1answer
250 views
Test AngularJS factory function with Jasmine
I am very new to this (angularjs, jasmine, testacular) and I have this code (I simplified it a bit, leaving only what matters):
//my_module.js
angular.module('my_module', ['my_data'])
.config([...]);
...
1
vote
1answer
45 views
Lazy initialization on static local data
I have the following code (part of it was omitted for simplicity)
header:
class DbgModuleMarker
{
public:
DbgModuleMarker( std::string name );
static std::ostream createStream( const ...
0
votes
1answer
86 views
How to use the factory pattern with functors?
I have a set of functors for calculating specific stuff on ranges on objects. Essentially, each functor implements operator():
template <typename Iterator1,
typename Iterator2> double ...
5
votes
4answers
233 views
Delphi Class of in C#
I know this question has been asked before, but I have yet to see a short, clear answer, so I'm hoping they won't remove this question and I will now get a clear answer:
I am currently working in C# ...
1
vote
1answer
93 views
Ninject Conventions with Ninject Factory Extension To Bind Multiple Types To One Interface
I'm trying to expand on the scenario asked in the SO question titled Ninject Factory Extension Bind Multiple Concrete Types To One Interface by using Ninject Conventions for convention-based binding ...
0
votes
1answer
111 views
Creating an object from a type parameter in Scala
I want to create a method that takes a type parameter, obviously with no parameters on its constructor, and returns a dummy object constructed with that constructor. Basically some kind of factory ...
1
vote
0answers
61 views
factory, strategy and enum [closed]
I want to refactor my code.
In the current code one enum is used for two purposes.
Deciding what object to create
Deciding what method to call on an existing webservice
I want to refactor this to an ...
0
votes
1answer
14 views
Creating a simple metaclass
I asked a question earlier on today, where I only wanted a solution for my problem.
I was expecting the use of metaclasses, but got something different and it worked.
However, now I'm interested in ...
3
votes
2answers
47 views
How do I create a simple metaclass?
I've been doing python for some time now, and I've always somewhat understood the meaning of metaclasses, but I've never needed one.
Now I think the best solution for my problem is a metaclass ...
2
votes
2answers
83 views
Dependency Injection, Lazy loading, Proxy and circular dependency
This is a language independent question but I write the sample codes in PHP.
We have a two classes :
User class
UserRepository class
UserRepository class deals with the interaction with DB and ...
1
vote
1answer
82 views
Sitecore Configuration Factory - Call method with more than one argument
I have read John West's article on the Site Configuration Factory ...



