active questions tagged patterns - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T23:31:54Zhttp://stackoverflow.com/feeds/tag/patternshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823799/does-anyone-know-of-a-computer-programming-work-patterns-site2Does anyone know of a computer programming work patterns site?talkaboutquality2009-12-01T03:23:34Z2009-12-01T18:33:08Z
<p>There are all those Design Patterns wikis -- you know, with Singleton, Iterator and all that. I'm not looking for that. I'm looking for one level up from that: computer programming working patterns. Such as "Debugging", "RetreatAndSolveSmallerProblemFirst", and the like.</p>
<p>EDIT: Clarifying that I'm interested in individual work patterns rather than team ones. Think PSP rather than Agile.</p>
<p>If there isn't any such site, then maybe I'll start one. But no point reinventing the wheel (oops -- that would be ReinventingTheWheel) if there already is one.</p>
<p>The winning answer will be one that is either an URL of a site that you think meets the description, or a reasonably confident answer that there is no such site out there yet.</p>
<p>Extra no-points for URL being a wiki, for reminding me how to open my own wiki (is there something better than just a Wikipedia <em>page</em>?).</p>
<p>p.s. I don't really <em>like</em> CamelCase but if that's what's used on the site I'm looking for, then I'll manage.</p>
http://stackoverflow.com/questions/1728160/patterns-for-functional-dynamic-and-aspect-oriented-programming5Patterns for functional, dynamic and aspect-oriented programmingVitaliy Liptchinsky2009-11-13T09:32:57Z2009-12-01T06:24:18Z
<p>We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in the web on this subject.</p>
<p>Are there any books (articles, resources) on patterns(best practices) for functional programming?</p>
<p>For dynamic programming in languages like Python and Ruby?</p>
<p>For AOP?</p>
http://stackoverflow.com/questions/1817715/a-better-design-same-object-different-possible-states2A better design? Same object, different possible statesdferraro2009-11-30T03:31:41Z2009-11-30T03:44:06Z
<p>Hello,</p>
<p>I have a very simple application which consists of an ASP.NET front end site, with a WCF Windows Service doing the heavy lifting back-end logic.</p>
<p>The user has one simple page where he selects some parameters and pushes a 'submit' button. The page calls the WCF service and passes it the parameters. The service instantiated an instance of a 'Job' class, sending the parameters to the constructor, then calls a 'Run()' method which does all the work of - inserting a 'job' record into a database with the users name, time started, etc... Makes a request to a 3rd party vendor, takes the data, puts it in the database, does some other business logic then marks the job as completed.</p>
<p>The user then has a second simple page where he can now search for his job (a searchable combo box sorted by date, displaying multiple fields related to that job) and then display the data corresponding to that job on the screen - (most of the fields from the job table, e.g. started time, completed time, status, etc, displayed as labels in a panel) and the actual data we pulled from the 3rd party vendor (rendered as a grid, below the panel).</p>
<p>Now on to my question - so I have a Job class which has all the fields mentioned above, along with its public Run() method and constructors. It has a few simple private functions, and several private members which are interfaces to classes like IParser, IVendorConnection, IDataAccess - the classes which do all the actual work described above.. the actual Job class and Run() method doesn't do much actual work, pretty much just delegates work to its composite objects (makes for good testability among other things).</p>
<p>Now, this Job class has 3 different possible uses / states. Its main use is inside the Service, for use of the Run() function to literally run a job. It also has 2 other uses - acting as the model for the panel I described above, and acting as a model for the combo box I described above. The job class has 3 public constructors, each one setting it up for one of the 3 states. In all cases, each different 'state' only cares about certain members that the other 2 states don't care about - in some cases some of the members are used in all 3 states. The 'combo box state' is the simplest - in this case I only want 3 readonly fields. In the 'panel state' I care about 6 readonly fields.. in the 'work' state I am basically creating these field values as the job progresses - and they should all be private.</p>
<p>I'm just looking for a cleaner way to do this. If I instantiate a Job class in state A, I <em>know</em> that accessing member X will not work, or calling function Y will fail. However it's still compilable code.</p>
<p>I'm sure that others have faced this problem before. I was thinking of having a base Job class marked as MustInherit/abstract, and then having 3 derived classes, one for each state. Put the shared members in the base and the state-specific ones in the derived, and just use the derived classes in my code where appropriate. This seems simple enough for my purposes and solves my problem. Perhaps I could also have some kind of JobFactory... I guess I'm just looking for how other people solved this as maybe I'm not thinking outside the box enough... I have had many classes be state machines before in my hobbyist game development days - but that was different, because instances of those classes could change states (e.g., an 'Enemy' class could have its state changed from 'attack_mode' to 'waiting') In my case, there is no changing states - once created, a Job must stay in its state and never try to behave in a different one. Tracking state and throwing exceptions if a method/member is used while not in a given state seems brittle and too much work. Any suggestions based on how you have solved this problem before? And is what I'm trying to do overkill? If the Job started to get more and more different states, I would think not - but maybe if it did get that many different states then I need to think of splitting it up into different classes anyway... Just looking for your 2 cents.</p>
http://stackoverflow.com/questions/1813723/understanding-hibernate-internals0Understanding hibernate internalsTom2009-11-28T20:35:43Z2009-11-29T01:37:05Z
<p>Hi,</p>
<p>Im trying to understand how hibernate works under the hood, how it manages lazy load, transactions, data mappers, unit of work, identity maps, etc.</p>
<p>I wrote a small object model, and im downloading hibernate's source code for debbuging it.</p>
<p>Im kind of lost, is this the best approach? Does documentation on these issues exist out there (web) ? </p>
<p>Any suggestions will be greatly appreciated.</p>
http://stackoverflow.com/questions/1798072/caching-ideas-anyone0Caching ideas anyone?ETFairfax2009-11-25T16:17:11Z2009-11-27T17:01:07Z
<p>Hi,</p>
<p>I have the following, very interesting class...</p>
<pre><code>pubilc class Thing{
public Thing()
{
DoSomethingThatTakesALongTime();
}
pubic boolean CheckSomething(string criteria)
{
return criteria == "something";
} }
</code></pre>
<p>In my ASP.Net MVC application, I need to call make a call to CheckSomething, very frequently.</p>
<p>As you can see, the constructor takes a long time to load.</p>
<p>What approaches can I use to cache the class? Keep in mind that I want to keep it testable....and I don't know what that entails!!!!</p>
<p>Cheers,</p>
<p>ETFairfax</p>
http://stackoverflow.com/questions/1801027/creating-api-using-adapter-pattern0creating API using adapter patternMichiel van der Blonk2009-11-26T01:06:59Z2009-11-26T01:30:37Z
<p>I am working on an API for several web services, which all return a list of products. However, the objects returned are quite different. They have some overlap in member variables and methods, but also a number that are either conceptually different or slightly different. What would be the best way to structure the API? I think this is the adapter pattern, but I am not sure.</p>
<p>So e.g. my class has (pseudocode, not a real language)</p>
<blockquote>
<p>member: webservice (type:object, can be a number of types, all adhering to the same interface)</p>
<p>method: setCurrentWebservice(service) {self.webservice=service}</p>
<p>method: getProducts() { return self.webservice.getProducts();}</p>
</blockquote>
<p>Also some methods are supported in one webservice, but not in the other. Should I make 'method-not-supported' methods? What should those return?</p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference98What are MVP and MVC and what is the difference?Wolfbyte2008-08-05T10:06:33Z2009-11-25T18:40:09Z
<P>When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and Model-View-Presenter. My question has two parts to it:</P>
<OL>
<LI>What issues do these patterns address?</LI>
<LI>How are they similar?</LI>
<LI>How are they different?</LI></OL>
http://stackoverflow.com/questions/1795119/template-pattern-violates-encapsulation1Template pattern violates encapsulation?theraneman2009-11-25T06:58:43Z2009-11-25T07:01:33Z
<p>Hi guys,
Please take a look at this piece of code I came up with.</p>
<pre><code> abstract class Command
{
public void Execute(string[] commandParameters)
{
CommandResult result = ExecuteCommand(commandParameters);
PrintResult(result);
}
public abstract CommandResult ExecuteCommand(string[] commandParameters);
public abstract void PrintResult(CommandResult result);
}
</code></pre>
<p>There will be several commands inheriting from this Command class. Each command would override ExecuteCommand and PrintResult. Although with this design, for the client code, I am exposing both Execute and ExecuteCommand function which is wierd. I feel like I need to define a template for a function but not expose other functions which are used in that template! Refactoring fellas, my code sucks almost all the time, please let me know what might be the best way out here.</p>
http://stackoverflow.com/questions/224730/tips-for-writing-fluent-interfaces-in-c-32Tips for writing fluent interfaces in C# 3objektivs2008-10-22T07:13:49Z2009-11-25T05:54:57Z
<p>I'm after some good tips for fluent interfaces in C#. I'm just learning about it myself but keen to hear what others think outside of the articles I am reading. In particular I'm after:</p>
<ul>
<li>when is fluent too much?</li>
<li>are there any fluent patterns?</li>
<li>what is in C# that makes fluent interfaces more fluent (e.g. extension methods)</li>
<li>is a complex fluent interface still a fluent one?</li>
<li>refactoring to arrive at a fluent interface or refactoring an existing fluent interface</li>
<li>any good examples out there that you have worked with or could recommend?</li>
</ul>
<p>If you could post one tip or thought, or whatever per post. I want to see how they get voted on, too.</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1789646/c-auto-property-is-this-pattern-best-practice7C# Auto Property - Is this 'pattern' best practice?Phill Duffy2009-11-24T12:04:53Z2009-11-24T21:59:09Z
<p>I seem to be using this sort of pattern in my code a lot , I know that it is not a simple Autoproperty any more as that would be:</p>
<pre><code> public IList<BCSFilter> BCSFilters { get; set; }
</code></pre>
<p>The code I have been using is this:</p>
<pre><code> private IList<BCSFilter> _BCSFilters;
/// <summary>
/// Gets or sets the BCS filters.
/// </summary>
/// <value>The BCS filters.</value>
public IList<BCSFilter> BCSFilters
{
get
{
if (_BCSFilters == null)
{
_BCSFilters = new List<BCSFilter>();
}
return _BCSFilters;
}
set
{
_BCSFilters = value;
}
}
</code></pre>
<p>This is so I can just do MainClass.BCSFilters and not worry about needing to instantiate the List in the consuming code. Is this a 'normal' pattern \ the correct way to do this?</p>
<p>I couldn't find a duplicate question</p>
http://stackoverflow.com/questions/1354305/when-is-lazy-evaluation-not-useful1When is lazy evaluation not useful?Cherian2009-08-30T17:00:14Z2009-11-24T20:26:00Z
<p>Delay execution is almost always a boon. But then there are cases when it’s a problem and you resort to “fetch” (in Nhibernate) to eager fetch it. </p>
<p>Do you know practical situations when lazy evaluation can bite you back…?</p>
http://stackoverflow.com/questions/1777101/php-check-to-see-if-a-string-matches-a-pattern1PHP check to see if a string matches a patternAndrew2009-11-21T23:08:51Z2009-11-23T22:13:19Z
<p>If I need a string to match this pattern: "word1,word2,word3", how would I check the string to make sure it fits that, in PHP?</p>
<p>I want to make sure the string fits any of these patterns:</p>
<pre><code>word
word1,word2
word1,word2,word3,
word1,word2,word3,word4,etc.
</code></pre>
http://stackoverflow.com/questions/1770391/patterns-used-in-wpf2Patterns used in WPFThorsten Lorenz2009-11-20T13:21:50Z2009-11-20T21:06:33Z
<p>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.</p>
<p>At the same time I am rereading the GOF Design Patterns book. </p>
<p>A few times I would stop in the middle because I would realize that a certain pattern is the very one used in some WPF functionality. Whenever such a realization hits me, I feel like my understanding of the related WPF principle just took a big leap. It's kind of like an aha-effect.</p>
<p>I also realized that I had a much easier time understanding Prism for example because the documentation does such a great job at explaining the patterns involved.</p>
<p>So here is my "question" (more like an effort):</p>
<blockquote>
<p>In order to help us all to understand
WPF better it would be great if anyone
who also "spotted" a design pattern in
WPF could give a short explanation.</p>
</blockquote>
<p>One pretty obvious example that I found is the Routed Event:</p>
<blockquote>
<p>If an event is detected by a child
control and no handler has been
specified, it passes it along to its
parent and so on until it is finally
handled or no parent is found anymore.</p>
<p>Lets say we have an image on a button
that is inside a StackPanel that is
inside a window. If the user clicks
the image, the event will either be
handled by it (if handling code has
been specified) or "bubble" up until
one of the controls handles it. So
each control will get a chance to
react in this order.</p>
<ol>
<li>Image</li>
<li>Button</li>
<li>StackPanel</li>
<li>Window </li>
</ol>
<p>Once a control handles it, the
bubbling will stop.</p>
<p>This is the short explanation, for a
more precise one consult the WPF
literature.</p>
<p>This kind of functionality represents
the "<a href="http://en.wikipedia.org/wiki/Chain-of-responsibility%5Fpattern" rel="nofollow">Chain of Responsibility</a>
Design Pattern" which states, that if
their is a request, it gets passed
along a responsibility chain to give
each object in it a chance to handle
it. The sender of the request has no
idea who will handle it which ensures
decoupling. For a more thorough
explanation follow the link.</p>
</blockquote>
<p>The purpose here is merely to show how this (seemingly old 10+ years) idea found its way into our current technology and to offer another way of looking at it.</p>
<p>I think this is enough for a start and hope more parallels will be collected here.</p>
<p>Cheers, Thorsten</p>
http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns22Are there any Debugging Patterns? pencilcake2009-11-18T16:03:18Z2009-11-19T08:59:07Z
<p>Hi,</p>
<p>I know there are many popular and useful Design Patters.</p>
<p>Are there something like them for debugging scenarios? Maybe not patterns but methodologies which are categorized and that can be used repeatedly for similar cases.</p>
<p>Any idea?</p>
<p>thanks.</p>
http://stackoverflow.com/questions/933993/what-are-dynamic-proxy-classes-and-why-would-i-use-one2What are Dynamic Proxy classes and why would I use one?cwash2009-06-01T08:39:08Z2009-11-18T15:11:44Z
<p>What is a use case for using a dynamic proxy?</p>
<p>How do they relate to bytecode generation and reflection?</p>
<p>Any recommended reading?</p>
http://stackoverflow.com/questions/1748129/using-grep-to-find-files-that-doesnt-contain-a-given-string-pattern0Using grep to find files that doesn't contain a given string patternSenthil Kumar2009-11-17T11:07:14Z2009-11-17T13:42:33Z
<p>I'm using the following command in my web application to find all files in the current directory that contain the string <code>foo</code> (leaving out svn directories).</p>
<pre><code>find . -not -ipath '.*svn*' -exec grep -H -E -o "foo" {} \; > grep_results.txt
</code></pre>
<p>How do I find out the files that doesn't contain the word <code>foo</code>?</p>
http://stackoverflow.com/questions/1744538/is-it-confusing-to-call-this-class-a-factory4Is it confusing to call this class a "factory"?DanThMan2009-11-16T20:06:40Z2009-11-16T23:47:20Z
<p>My understanding of a <em>factory</em> is that it encapsulates instantiation of concrete classes that all inherit a common abstract class or interface. This allows the client to be decoupled from the process of determining which concrete class to create, which in turn means you can add or remove concrete classes from your program without having to change the client's code. You might have to change the factory, but the factory is "purpose built" and really only has one reason to change--a concrete class has been added/removed.</p>
<p>I have built some classes that do in fact encapsulate object instantiation but for a different reason: the objects are hard to instantiate. For the moment, I'm calling these classes "factories", but I'm concerned that might be a misnomer and would confuse other programmers who might look at my code. My "factory" classes don't decide which concrete class to instantiate, they guarantee that a series of objects will be instantiated in the correct order and that the right classes will be passed into the right constructors when I call <code>new()</code>.</p>
<p>For example, for an MVVM project I'm working on, I wrote a class to ensure that my <code>SetupView</code> gets instantiated properly. It looks something like this:</p>
<pre><code>public class SetupViewFactory
{
public SetupView CreateView(DatabaseModel databaseModel, SettingsModel settingsModel, ViewUtilities viewUtilities)
{
var setupViewModel = new SetupViewModel(databaseModel, settingsModel, viewUtilities);
var setupView = new SetupView();
setupView.DataContext = setupViewModel;
return setupView;
}
}
</code></pre>
<p><strong>Is it confusing to call this a "factory"?</strong> It doesn't decide among several possible concrete classes, and its return type is not an interface or abstract type, but it does encapsulate object instantiation.</p>
<p>If it's not a "factory", what is it?</p>
<p><hr></p>
<p><strong>Edit</strong></p>
<p>A number of people have suggested that this is actually the Builder Pattern.</p>
<p>The definition of the Builder Pattern from <a href="http://www.dofactory.com/patterns/PatternBuilder.aspx#%5Fself2" rel="nofollow">dofactory</a> is as follows:</p>
<blockquote>
<p>Separate the construction of a complex object from its representation so that the same construction process can create different representations.</p>
</blockquote>
<p>This seems like a little bit of a stretch also. The thing that bothers me is the "different representations". My purpose is not to abstract the process of building a View (not that that isn't a worthy goal). I'm simply trying to put the logic for creating a specific view in one place, so that if any of the ingredients or the process for creating that view change, I only have to change this one class. The builder pattern really seems to be saying, "Let's create a general process for making Views, then you can follow that same basic process for any View you create." Nice, but that's just not what I'm doing here.</p>
<p><hr></p>
<p><strong>Edit 2</strong></p>
<p>I just found an interesting example in a <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">Wikipedia article on Dependency Injection</a>.</p>
<p>Under "Manually Injected Dependency", it contains the following class:</p>
<pre><code>public class CarFactory {
public static Car buildCar() {
return new Car(new SimpleEngine());
}
}
</code></pre>
<p>This is almost <em>exactly</em> the usage I have (and, no, I did not write the wiki article :)).</p>
<p>Interestingly, this is the comment following this code:</p>
<blockquote>
<p>In the code above, the factory takes responsibility for assembling the car, and injects the engine into the car. This frees the car from knowing about how to create an engine, though now the CarFactory has to know about the engine's construction. One could create an EngineFactory, but that merely creates dependencies among factories. So the problem remains, but has at least been shifted into <strong>factories</strong>, or <strong>builder</strong> objects. [my emphasis]</p>
</blockquote>
<p>So, this tells me that at least I'm not the only one who's thought of creating a class to help with injecting stuff into another class, and I'm not the only one who attempted to name this class a factory.</p>
http://stackoverflow.com/questions/1743963/list-of-suspected-malicious-patterns0List of suspected Malicious patternsAbdelrahman2009-11-16T18:28:05Z2009-11-16T18:43:19Z
<p>I am doing an anti-virus project by disassembling its code and analyzing it.
So i want a list of the Suspected Malicious pattern codes, so i can observe which is suspected and which is not?
so i want a list of suspected patterns only.</p>
<p>Thank You for your Help.</p>
<p>Abdelrahman.</p>
http://stackoverflow.com/questions/1734791/strategy-pattern-multiple-return-types-values1Strategy Pattern - multiple return types/valuesaip.cd.aish2009-11-14T16:48:07Z2009-11-16T14:30:55Z
<p>We are working on an image processing project using C# and EmguCV. Our team is composed of 3 people. To make faster progress, the 3 of us work on different sub-problems or experiment with different algorithms at the same time.</p>
<p>Currently each of us creates a function that contains the major code we are working at and all of us make changes to the driver to add calls to our new functions. All this happens on the same file. We are using source control, so we have not stepped into each other toes yet. But I don't think this will be sustainable as we make more progress. Also, I feel the code is getting messier.</p>
<p>I was thinking it may be better for us to implement the Strategy pattern and encapsulate our algorithms or sub-problem processing into classes of their own and call the execute method on each from the driver.</p>
<p>However I realize there may be some problems with this approach:</p>
<ol>
<li>Different algorithms take different inputs (source image, some different set of parameters etc)</li>
<li>Different algorithms return different outputs (new image, feature set, a matrix etc)</li>
</ol>
<p>The first problem I believe I can overcome by doing something like this</p>
<pre><code>Class Strategy1 : IStrategy
{
int _code;
// Different *input* paramteres for the strategy may be passed in the
// constructor depending on the type of strategy
public Strategy1(int c)
{
_code = c;
}
// This is the method defined in the IStrategy interface
public void execute()
{
// Some code that uses _code and does some processing goes here
}
}
</code></pre>
<p>I can change the constructors for the different strategies so they can take in different types of arguments.</p>
<p>When I think about how to deal with the issue of returning multiple types/values, the first thing I can think of is to change execute's return type from void to something like a hash table, where the different return parameters can be stored and returned <strong>OR</strong> have other members of the class, like "<code>int _returnCode</code>" which can be retrieved by another method or through read-only properties of that class.</p>
<p>I am not sure how good a solution this would be in terms of design principles, and would be happy to hear your opinion on this. Thanks</p>
http://stackoverflow.com/questions/1733377/builder-vs-flyweight-pattern2Builder vs Flyweight PatternJMSA2009-11-14T05:29:58Z2009-11-14T05:51:24Z
<p>What is the difference between Builder Pattern and Flyweight Pattern in terms of usage, as both of them deals with large number of objects?</p>
http://stackoverflow.com/questions/1731205/looking-for-a-php-mvc-framework-that-just-implements-architectural-goals-and-desi0Looking for a PHP MVC framework that just implements architectural goals and design patterns, nothing moreadaykin2009-11-13T19:06:09Z2009-11-13T21:52:07Z
<p>Hello, I have been looking for a good PHP MVC framework that is interested primarily in speed, security, and implementing the MVC design architectural style.</p>
<p>Some of the biggest beefs I have with a lot of the mainstream MVC frameworks out there is that they:</p>
<ul>
<li><p>put view logic in controllers, or do things like:</p>
<p>controller: <code>$form = "a form here";</code></p>
<p>view: <code>echo $form;</code></p></li>
<li>I would prefer to write my HTML as HTML, and not as PHP, same goes for CSS and JavaScript</li>
<li>fail to integrate well with 3rd party libraries</li>
<li>leave me with a lack of options about how I want to do my database queries</li>
<li>rely heavily on command line PHP</li>
</ul>
<p>The ideal framework would be something not necessarily lightweight, but something that concentrates mostly on implementing the MVC architectural style.</p>
<p>Has anyone used a framework that seems to fit this description?</p>
http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks23Lua Patterns,Tips and TricksRobert Gould2008-09-18T02:37:17Z2009-11-13T14:45:27Z
<p>This is a Tips & Tricks question with the purpose of letting people accumulate their patterns, tips and tricks for Lua. </p>
<p>Lua is a great scripting language, however there is a lack of documented patterns, and I'm sure everyone has their favorites, so newcomers and people wondering if they should use it or not can actually appreciate the language's beauty.</p>
http://stackoverflow.com/questions/1709816/fowler-null-object-pattern-why-use-inheritance3Fowler Null Object Pattern: Why use inheritance?Johannes Rudolph2009-11-10T17:42:14Z2009-11-10T21:28:40Z
<p>Why does Fowler PoEAA p. 498 define the null-object pattern in the following way (sample shortened, language is c# but doesn't matter):</p>
<pre><code>public class Customer
{
public virtual string Name {get; set;}
}
public class NullCustomer : Customer, INull
{
public override Name
{
get { return "ImTheNull";}
// setter ommitted
}
}
</code></pre>
<p><code>INull</code> is used as a marker interface.
I don't really like this approach for three reasons:</p>
<ol>
<li>Properties need to be marked virtual</li>
<li>I can't seal my entity classes anymore</li>
<li>At least (n+1) new types are introduced (n null objects, one marker interface)</li>
</ol>
<p>Why isn't it implemented like this:</p>
<pre><code>public class Customer
{
public static readonly Customer NullCustomer = new Customer(){Name = "ImtTheNullCustomer";}
public string Name {get; set;}
}
</code></pre>
<p>I have generally found all of Fowlers examples well thought and there clearly must be something I have missed here.</p>
http://stackoverflow.com/questions/1700839/nhibernate-display-order-pattern-solution0nhibernate - display order - pattern/solution?cvista2009-11-09T12:58:11Z2009-11-09T15:10:45Z
<p>hey</p>
<p>I have a collection of ReportColumns in a Report object.</p>
<p>The ReportColumns has a DisplayOrder field which sets where abouts in the report the column is displayed. these columns are re-orderable in the designer ui and i can write some hacky code to change the order of them - but was wondering if there's anyway in nhib to take care of re-ordering entities based on a column? or perhaps a standard pattern to follow? seems like a fairly standard thing to want to do.</p>
<p>w://</p>
http://stackoverflow.com/questions/1683777/guice-best-practices-and-anti-patterns5Guice best practices and anti-patternsripper2342009-11-05T21:30:54Z2009-11-08T20:58:44Z
<p>I'm not sure if there is merit to this question or not, but are there any best practices and anti-patterns specific to <a href="http://code.google.com/p/google-guice/" rel="nofollow">Google Guice</a>?</p>
<p>Please direct any generic DI patterns to <a href="http://stackoverflow.com/questions/1682551/dependency-injection-best-practices-and-anti-patterns/1683015#1683015">this question</a>.</p>
http://stackoverflow.com/questions/1682925/what-is-the-best-strategy-for-dependency-injection-of-user-input1What is the best strategy for Dependency Injection of User Input?Jason Young2009-11-05T19:20:30Z2009-11-06T09:16:40Z
<p>I've used a fair amount of dependency injection, but I'd like to get input on how to handle information from the user at runtime.</p>
<p>I have a class that connects to a com port. I allow the user to select the com port number. Right now, I have that com port parameter as a constructor argument. The reasoning being that the class cannot function without that information, and it's implementation specific (a mock version of this class wouldn't need a com port).</p>
<p>The alternative is to have a "Start" method that takes in the com port, or have a property that sets the com port. This makes it very compatible with an IoC container, but it doesn't necessarily make sense from the perspective of the class.</p>
<p>It seems like the logical route conflicts with the dependency injection design, but it's because my UI is getting information for a specific type of class.</p>
<p>Other alternatives would include using an IoC container that lets me pass in additional constructor parameters, or just constructing the classes I need at the top level without using dependency injection.</p>
<p>Is there a generally accepted standard pattern for this type of problem?</p>
http://stackoverflow.com/questions/879163/what-is-a-proper-implementation-of-the-iasyncresult-interface1What is a proper implementation of the IAsyncResult interface?Miky D2009-05-18T18:40:17Z2009-11-06T02:00:03Z
<p>I'm looking into adding some flexibility to a class that I've created which establishes a connection to a remote host and then performs an exchange of information (a handshake). The current implementation provides a Connect function which establishes the connection and then blocks waiting on a ManualResetEvent untill the two parties have completed the handshake.</p>
<p>Here's an example of what calling my class looks like:</p>
<pre><code>// create a new client instance
ClientClass cc = new ClientClass("address of host");
bool success = cc.Connect(); // will block here until the
// handshake is complete
if(success)
{
}
</code></pre>
<p>..and here's an oversimplified high-level view of what the class does internally:</p>
<pre><code>class ClientClass
{
string _hostAddress;
ManualResetEvent _hanshakeCompleted;
bool _connectionSuccess;
public ClientClass(string hostAddress)
{
_hostAddress = hostAddress;
}
public bool Connect()
{
_hanshakeCompleted = new ManualResetEvent(false);
_connectionSuccess = false;
// start an asynchronous operation to connect
// ...
// ...
// then wait here for the connection and
// then handshake to complete
_hanshakeCompleted.WaitOne();
// the _connectionStatus will be TRUE only if the
// connection and handshake were successful
return _connectionSuccess;
}
// ... other internal private methods here
// which handle the handshaking and which call
// HandshakeComplete at the end
private void HandshakeComplete()
{
_connectionSuccess = true;
_hanshakeCompleted.Set();
}
}
</code></pre>
<p>I'm looking into implementing the <a href="http://msdn.microsoft.com/en-us/library/ms228975.aspx" rel="nofollow">.NET Classic Async Pattern</a> for this class. In doing so, I would provide BeginConnect and EndConnect functions, and allow the users of the class to write code like this:</p>
<pre><code>ClientClass cc = new ClientClass("address of host");
cc.BeginConnect(new AsyncCallback(ConnectCompleted), cc);
// continue without blocking to this line
// ..
void ConnectCompleted(IAsyncResult ar)
{
ClientClass cc = ar.AyncState as ClientClass;
try{
bool success = cc.EndConnect(ar);
if(success)
{
// do more stuff with the
// connected Client Class object
}
}
catch{
}
}
</code></pre>
<p>In order to be able to provide this API I need to create a class that implements the IAsyncResult interface to be returned by the BeginConnect function, and to be passed into the EndConnect function respectively.</p>
<p><strong>Now, my question is: What is a proper way to implement the IAsyncResult interface in a class?</strong></p>
<p>One obvious solution would be to create a delegate with a matching signature for the Connect function and then invoke that delegate asynchronously using BeginInvoke - EndInvoke but that is not what I'm looking for (it's not very efficient).</p>
<p>I have a rough idea of how I could do it but after peeking inside the .NET framework at how they implement this pattern in some places I felt it would be wise to ask and see if anybody has done this successfully and if so what are the problem areas to pay special attention to.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1675204/tic-tac-toe-design-pattern2Tic Tac Toe Design Patternbehrk22009-11-04T17:00:13Z2009-11-04T17:24:53Z
<p>Hey everyone,</p>
<p>I was wondering if I could get your thoughts and advice as to what would be the best/most advantageous design pattern for a networked Tic Tac Toe game?</p>
<p>I have been looking at the following design patterns: Factory, Abstract Factory, Singleton, Prototype, and Builder.</p>
<p>In your experience, which would be the best to use, and why?</p>
<p>Right now, my Tic Tac Toe game is a threaded client/server game that can be played over the internet via sockets. However, I am going to refactor the game in some way to make use of a design pattern.</p>
<p>I was thinking about setting up a client/server architecture that can be used for playing many different types of games, such as tic tac toe, connect 5, etc...</p>
<p>What direction should I go? I am looking to go into a direction that will really give me some experience with design patterns...</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1661549/need-some-help-sorting-out-a-major-abstract-pattern-headache-within-my-dal3Need some help sorting out a major abstract pattern headache within my DALGenericTypeTea2009-11-02T14:13:57Z2009-11-03T15:02:31Z
<p>I've caused myself a bit of an issue with my Data Access Layer. In this particular instance, I have a table that contains potentially 5 types of 'entity'. These are basically Company, Customer, Site, etc. The type is dictated by a PositionTypeId within the table. They're all in the same table as they all havethe same data structure; <em>PositionId, Description and Code</em>.</p>
<p>I have a main abstract class as follows:</p>
<pre><code>public abstract class PositionProvider<T> : DalProvider<T>, IDalProvider where T : IPositionEntity
{
public static PositionProvider<T> Instance
{
get
{
if (_instance == null)
{
// Create an instance based on the current database type
}
return _instance;
}
}
private static PositionProvider<T> _instance;
public PositionType PositionType
{
get
{
return _positionType;
}
}
private PositionType _positionType;
// Gets a list of entities based on the PositionType enum's value.
public abstract List<T> GetList();
internal void SetPositionType(RP_PositionType positionType)
{
_positionType = positionType;
}
}
</code></pre>
<p>I want to then be able to put all the general code within an inherting class that is either SQL or Oracle based. This is my SQL implementation:</p>
<pre><code>public class SqlPositionProvider<T> : PositionProvider<T> where T : IPositionEntity
{
public override List<T> GetList()
{
int positionTypeId = (int)this.PositionType;
using (SqlConnection cn = new SqlConnection(Globals.Instance.ConnectionString))
{
SqlCommand cmd = new SqlCommand("Get_PositionListByPositionTypeId", cn);
cmd.Parameters.Add("@PositionTypeId", SqlDbType.Int).Value = positionTypeId;
cmd.CommandType = CommandType.StoredProcedure;
cn.Open();
return this.GetCollectionFromReader(this.ExecuteReader(cmd));
}
}
}
</code></pre>
<p>I've then create a class for each type as follows (this is the CustomerProvider as an example):</p>
<pre><code>public class CustomerProvider
{
public static PositionProvider<CustomerEntity> Instance
{
get
{
if ((int)PositionProvider<CustomerEntity>.Instance.PositionType == 0)
{
PositionProvider<CustomerEntity>.Instance.SetPositionType(PositionType.Customer);
}
return PositionProvider<CustomerEntity>.Instance;
}
}
}
</code></pre>
<p>This all works fantastically... until I realised that I have certain functions that are related specifically to certain position types. I.e. I need to be able to get all Customers (which is an IPositionType) based on the user permissions.</p>
<p>So I need to add another abstract method:</p>
<pre><code>public abstract List<CustomerEntity> GetCustomersByUserPermission(Guid userId);
</code></pre>
<p>Now, obviously I don't want this within my PositionProvider abstract class as that would mean that method would appear when dealing with the site/company provider.</p>
<p>How can I add this, and other, additional methods without having to duplicate the code within the SqlPositionProvider?</p>
<p><strong>Edit:</strong></p>
<p>The only idea I've come up with is to separate the PositionProvider out into a common property of the CustomerProvider, SiteProvider, etcProvider:</p>
<pre><code>public abstract class CustomerProvider
{
public CustomerProvider()
{
this.Common.SetPositionType(PositionType.Customer);
}
public PositionProvider<CustomerEntity> Common
{
get
{
if (_common == null)
{
DalHelper.CreateInstance<PositionProvider<CustomerEntity>>(out _common);
}
return _common;
}
}
private PositionProvider<CustomerEntity> _common;
public static CustomerProvider Instance
{
get
{
if (_instance == null)
{
DalHelper.CreateInstance<CustomerProvider>(out _instance);
}
return _instance;
}
}
private static CustomerProvider _instance;
public abstract List<CustomerEntity> GetCustomersByUserPermission(Guid userId);
}
</code></pre>
<p>This would allow me to put the specific code within <code>CustomerProvider.Instance.MyNonGenericMethod()</code>, and then to access the <code>PositionProvider</code> I could do <code>CustomerProvider.Instance.Common.GetList()</code>... This does seem like a bit of a hack though.</p>
http://stackoverflow.com/questions/1667805/generic-java-output-library-or-pattern0Generic Java Output Library or PatternJehud2009-11-03T14:50:12Z2009-11-03T15:01:52Z
<p>I'm writing a bunch of data out from a java application that gets consumed by the end user it could be to a file, console, or an arbitrary listener. It would be nice to allow the user to specify how they want to consume this data. What approach have people taken to this sort of problem, is there a good open source solution? I could see something as simple as just using log4j with different appenders etc... </p>