Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
9answers
553 views

When do you decide to use a visitors for your objects?

I always thought an object needs the data and the messages to act on it. When would you want a method that is extrinsic to the object? What rule of thumb do you follow to have a visitor? This is ...
12
votes
5answers
2k views

Alternative to the visitor pattern?

I am looking for an alternative to the visitor pattern. Let me just focus on a couple of pertinent aspects of the pattern, while skipping over unimportant details. I'll use a Shape example (sorry!): ...
11
votes
4answers
446 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 ...
7
votes
1answer
206 views

Is stateless visitor pattern possible in C++?

I was trying to translate the following Haskell code to C++: data List t = Nil | Cons t (List t) The straightforward translation of the algebraic data type to the stateless Visitor pattern yields ...
7
votes
3answers
1k views

Event handling in component based game engine design

I imagine this question or variations of it get passed around a lot, so if what I'm saying is a duplicate, and the answers lie elsewhere, please inform me. I have been researching game engine designs ...
7
votes
2answers
2k views

How to write the Visitor Pattern for Abstract Syntax Tree in Python?

My collegue suggested me to write a visitor pattern to navigate the AST. Can anyone tell me more how would I start writing it? As far as I understand, each Node in AST would have visit() method (?) ...
6
votes
1answer
94 views

Any Object-Oriented Flexible Java x86 Disassembler Library?

I am looking for a Java x86 disassembler library that should have following features: Disassembling X86 Code Describing X86 commands with Java classes and Objects The command classes should accept a ...
6
votes
1answer
214 views

Is the Visitor Pattern the fastest way to differentiate parameter types in C++?

Is the Visitor Pattern the fastest way to accomplish method parameter type identification (effectively single dispatch on a parameter, not a member's class) in C++? I might know the exact method(s) I ...
5
votes
1answer
168 views

best way to do variant visitation with lambdas

I want to inline visitation of variant types with lambdas. At the moment i have the following code: struct Foo { boost::variant< boost::blank , int , string , vector< int > > var; ...
5
votes
3answers
283 views

Questions about the Visitor pattern (sample in Java)

I'm just trying to understand the main benefits of using the Visitor pattern. Here's a sample Java implementation /////////////////////////////////// // Interfaces interface MamalVisitor { void ...
5
votes
2answers
237 views

C++ avoiding code duplication for const and non-const visitation

I have a class that should call a visitor method for every member variable. Something like this: class A{ int a, b, c; public: void accept(Visitor &visitor){ visitor.visit(a); ...
4
votes
1answer
112 views

Java visitor pattern instead of instanceof switch

Here it is said I can use visitor pattern instead of a bunch of instanceofs. Jmg said "If you are not free to change A, B, and C, you could apply the visitor pattern to achieve the same." As far as I ...
4
votes
2answers
467 views

What is Single and Double Dispatch?

i have wrote the visitor pattern as follow but i don't understand what is single and double dispatch. AFAIK, single dispatch is invoke a method based on caller type where double dispatch is invoke a ...
4
votes
2answers
252 views

Visitor and templated virtual methods

In a typical implementation of the Visitor pattern, the class must account for all variations (descendants) of the base class. There are many instances where the same method content in the visitor is ...
4
votes
1answer
2k views

Java Enums - Switch statements vs Visitor Pattern on Enums - Performance benefits?

I have been searching around for days to find an answer to this performance based issue. After digging the Internet so far I have learned that there are couple of ways to use the Enums in java, well ...
4
votes
5answers
619 views

Why is the visitor responsible for enumerating children in the visitor pattern?

Based on the code I've found, it seems that the Visitor is required to known the structure of the visited objects and call on the needed children. This seems a bit clunky in some cases where the ...
3
votes
1answer
75 views

Generic visitor base class template in C++ - overload issue

I thought it would be a simple exercise to write a generic visitor base class template. The goal is to be able to write typedef visitor<some_base, some_derived1, some_derived2> my_visitor; ...
3
votes
1answer
351 views

Access level to elements in visitor pattern

In the visitor pattern, i want the client to only have access to the getters of the elements, while the visitors should have access to getters and setters. How would you implement it? I don't want ...
3
votes
1answer
275 views

Visitor pattern using boost::bind & overloaded functions

I'm trying to add a Visitor pattern to my code and want to keep this as general as possible. More specificly, I'd like not having to hardcode the callback function into my accept function. So, as a ...
3
votes
2answers
165 views

Simple question about a Compiler's Symbol Table

I am developing a small object-based programming language. I am a bit lost on a simple thing, though. I have implemented a couple of visitors that collect the names, types and parameters of classes, ...
3
votes
3answers
682 views

Delphi Enterprise: how can I apply the Visitor Pattern without circular references?

With Delphi 2009 Enterprise I created code for the GoF Visitor Pattern in the model view, and separated the code in two units: one for the domain model classes, one for the visitor (because I might ...
3
votes
3answers
788 views

Tree Transformations Using Visitor Pattern

(Disclaimer: these examples are given in the context of building a compiler, but this question is all about the Visitor pattern and does not require any knowledge of compiler theory.) I'm going ...
3
votes
2answers
699 views

Objective-C categories == visitor pattern?

Would you say that Objective-C categories are an implementation of the visitor design pattern?
3
votes
1answer
310 views

Visitor Design Pattern in OCaml

I am attempting to implement the Visitor Design Pattern using OCaml's OO constructs and type system and am running into problems upon instantiation of an Element. class virtual ['hrRep] employee = ...
3
votes
3answers
437 views

Visitor Pattern, remove the need to cast

i have a question regarding the visitor pattern, I currently have two assemblies. My first assembly contains several interfaces. public interface INode { void Visit(INodeVisitor visitor); } ...
2
votes
4answers
76 views

Generics return type not working

I'm going through example. public interface Visitor<T> { public void visit(T e); } class Sum<T extends Integer> implements Visitor<T> { private int sum = 0; ...
2
votes
3answers
68 views

Some very generic code with visitor-pattern

I was doing some homework today with the visitor-pattern, and i made a visitor that looked somewhat like this (edited sample code from wikipedia): class CarElementPrintVisitor implements ...
2
votes
2answers
59 views

Implementing toString method in Java with The Visitor Pattern?

Here is some of my Java code public List<OBJ> a = new ArrayList<OBJ>(); public String A; public String B; public String C; for (OBJ o : a) { // .... TODO } So I have an interface ...
2
votes
5answers
110 views

Anonymous or real class definition when using visitor pattern?

When you use the Visitor pattern and you need to get a variable inside visitor method, how to you proceed ? I see two approaches. The first one uses anonymous class : // need a wrapper to get the ...
2
votes
4answers
117 views

A way to find what a Java object was initialized as instead of declared type?

I don't know if I'm missing something here, but I am having trouble casting an object to its actual, initialized type. Basically, if I create an object with "SuperClass sc = new SubClass()," then I ...
2
votes
2answers
111 views

Difference between visitor design pattern and depth first search?

A depth first search seem able to perform similar functions as the visitor design pattern. A visitor allows you to define some data structures and add operations on those structures (in the form of ...
2
votes
1answer
169 views

Why can't I visit this custom type with boost::variant?

The following code: #include <boost/variant.hpp> #include <iostream> #include <string> struct A { A() { } ~A() throw() { } A& operator=(A const ...
2
votes
2answers
257 views

Java (or bytecode) AST generators available so that I can run a couple of Visitors on top of its result?

I am looking for a tool that'll take either a .java source code file, or .class or .jar and parses it, generating an AST(abstract syntax tree), so I can play with it. I intend to create a couple of ...
2
votes
3answers
170 views

How to overcome problem with type erasure for visitor implementation

I am starting to work with Java after some projects in C# and C++. I wanted to design visitor interfaces like this: public interface ActionVisitor<A> { void visitAction(A action); } ...
2
votes
2answers
797 views

Building a control-flow graph from an AST with a visitor pattern using Java

I'm trying to figure out how to implement my LEParserCfgVisitor class as to build a control-flow graph from an Abstract-Syntax-Tree already generated with JavaCC. I know there are tools that already ...
2
votes
1answer
249 views

what's the difference between the patterns Strategy, Visitor and Template Method?

I'm in a class where we just learned about these design patterns. However I couldn't see any difference between them. They sound just like the same, creating concrete classes over the abstract one. ...
2
votes
6answers
471 views

C++: doubts about visitor pattern

I know what Visitor Pattern is and how to use it; this question is not a duplicate of this one. I've got a library where I put most of the reusable code I write, and which I link to most of my ...
2
votes
1answer
110 views

Design question about Swing GUI updates via PropertyChangeSupport

In the past I have used PCS to update Swing elements that displayed certain fields and everything worked as expected. However, I am now facing a relatively complex (in other words, terribly designed) ...
2
votes
4answers
340 views

A good reason to use the Visitor design pattern?

Before you tell me that there is already a similar question, yes, i know, I've read it. But the question there focuses on when, I'm interested in why. I get how the things work. The classic ...
2
votes
2answers
188 views

Optimal representation of expressions in F#

I'm working on a library to generate SQL from LINQ expressions (basically a modified subset of LINQ-to-SQL). I'm using discriminated unions to model the SQL expressions, but have encountered some ...
2
votes
4answers
3k views

Visitor pattern implementation in java- How does this look?

Alrite, I am gonna jump straight to the code: public interface Visitor { public void visitInventory(); public void visitMaxCount(); public void visitCountry(); public void visitSomethingElse(); ...
2
votes
2answers
473 views

Visitor pattern and recursion

Is there any advantage for using visitor pattern in a recursive scenario? If so can you demonstrate it programmatically?
2
votes
3answers
125 views

How should “location” info be passed in the visitor pattern?

Say I have a visitor like this class Visitor : IVisitor { void Accept(Visitable v) { /// other code v.AChild.Visit(this); v.BChild.Visit(this); } } Where ...
1
vote
1answer
45 views

Is there a TreeVisitor for visiting expression trees in evaluation order?

Using the Java Compiler Tree API, one can traverse the leaf tree of a TreePath and its children using a TreeVisitor. Is there a TreeVisitor implementation that visits all "nodes" in evaluation order? ...
1
vote
2answers
193 views

Using the Visitor Pattern with template derived classes

I try to implement the Visitor pattern with templated derived classes I work with gcc 4.5 here is the VisitorTemplate.hpp, I specialized Derived in the class Visitor, but I'd like to be able to ...
1
vote
1answer
120 views

Java visitor pattern when type of visitor depends on type of visitee

I'm trying to figure out the correct approach (and pattern) that my current problem requires. Everything seems to lead me towards the visitor pattern, and wikipedia's example is almost exactly what I ...
1
vote
2answers
95 views

.net generic bugs?

I found for me a strange behabiuor for generic and overloading method. It seems that with generics the overloading mechanism doesn't work: using System; using System.Collections.Generic; using ...
1
vote
3answers
121 views

Invoking a method overloaded where all arguments implement the same interface

My starting point is the following: - I have a method, transform, which I overloaded to behave differently depending on the type of arguments that are passed in (see transform(A a1, A a2) and ...
1
vote
5answers
295 views

A Variation on Visitor Pattern: Why not move the 2nd dispatch into the visitor's `Visit` method?

Intro Apparently, I've been doing an "unorthodoxed" Visitor pattern my whole programmer life. Yes, I dispatch to a concrete composite element visit method from the Visitor's Visit method. I think ...
1
vote
2answers
191 views

Implementing visitor pattern on aggregate objects

I'm struggling with applying the visitor pattern on some objects that have scalar members and at the same time aggregate members (collections). These are the objects that I have: Artist - id - ...

1 2