The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

AST parsing, detect current scope

When parsing AST with visitor, how could visitor detect when scope changes? For example, when we are in Class node, we create Class scope, but how to detect when we leaving a class node, to close the ...
0
votes
1answer
44 views

Free functions and unit-testing

I'm interested in testing the function navigateFoo below: virtual void navigateFoo(const vector<Node>& nodes) { // find the foo node in the list of nodes Nodes::const_iterator ...
7
votes
4answers
212 views

I need to ask about the object class, but it's a bad practice. Alternatives for this case?

I'm having trouble extending an application. It is an attendance record system. Currently each employee records attendance by a card that has a QR code. Now they want to add fingerprint recognition, ...
1
vote
0answers
58 views

How to write Visitor Pattern for a Abstract Syntax Tree in C#?

I have 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 (?) that would somehow ...
1
vote
2answers
57 views

Should reused Visitors be static?

I'm writing a Canvas painting app. For some operation I have a visitor that is to be used every time a drawing in selected by the mouse. At the moment I recreate the visitor always again like: ...
0
votes
1answer
48 views

Boost::Variant; Defining Visitor Class

In Java, I am able to define a variable of a generic class without specifying type. class Tree<T extends Comparable<? super T>> {} somewhere-else: Tree tree; I can then read in some ...
2
votes
1answer
53 views

Pre-order and Post-order Visitor

I am working on a compiler written in Ruby and I am currently at the semantic analysis stage (type checking). I have an AST that I need to visit in two ways: pre-order and post-order, I was wondering ...
2
votes
1answer
51 views

Which design pattern for dispayling custom editors according to objects instance?

I have several objects that all extend a Shape basic class. For every object I want to display a different object editor, as eg a Line has different properties to edit than a Rectangle. class Shape; ...
2
votes
4answers
147 views

Visitor Pattern or polymorphism?

I have a polymorphism structure in my project, and thinking of if it could be valuable to rewrite it to use Visitor Pattern. The basic structure is: I have some drawing objects (Rectangle, Ellipse, ...
1
vote
2answers
160 views

C++, avoid RTTI and the visitor pattern, is it possible?

I've been looking at some related threads but still don't find anything that answers the following question. Let's say I have a hierarchy of classes (e.g. Widgets, HTML element) that form a tree ...
-1
votes
1answer
70 views

Difference between Vistor pattern and Stategy pattern?

I read about visitor pattern at http://en.wikipedia.org/wiki/Visitor_pattern Initial understanding of this pattern created impression that visitor pattern is same as Bridge/Strategy pattern. So is ...
0
votes
3answers
135 views

Use visitor pattern to handle else if

I wonder if there is any way to handle a simple condition with the visitor pattern or not? For instance, if we have the below code, how can we apply the visitor pattern to it? public class Elseif { ...
1
vote
1answer
37 views

Benefits of accumulating state during traversal of an object structure by a visitor in a visitor pattern and how can the visitor achieve this?

From the Visitor pattern chapter of Gof book on Design patterns : Accumulating state. Visitors can accumulate state as they visit each element in the object structure.Without a visitor,this state ...
0
votes
1answer
84 views

What is the reason behind the naming of Visitor pattern?

GoF book on Design pattern says this about the Visitor pattern : Visitor lets you define a new operation without changing the classes of the elements on which it operates. I read the pattern ...
3
votes
3answers
84 views

Visitor class holding large shared state: best way to implement reference semantics?

This question is loosely based on the Boost.Graph library (BGL) that uses a Visitor-like pattern to customize recursive (search) algorithms. The BGL passes visitor objects by value (in analogy with ...
0
votes
1answer
58 views

Freezes in the terminal. No output results [closed]

I have no idea why it don't work. It just open terminal and then nothing happent. No errors or something like that. P.S. Maybe I did something wrong with design patterns (composite & visitor). ...
0
votes
3answers
98 views

cannot convert parameter 1 from 'PrintVisitor *const ' to 'Visirot &'

I used two design pattern Composite and Visitor. I have no problem with Composite.But when he began writing derived classes for input and output got some errors, solution which I did never found. ...
0
votes
1answer
363 views

Iterate TObjectList

i have ObjectList container and i want to add an internal iterator (Visitor Pattern) in fact i'm attempting to determine duplicates in my List.. a sample: http://pastebin.com/pjeWq2uN this code to ...
17
votes
2answers
223 views

How does the visitor pattern not violate the Open Close Priniciple?

From Wikipedia : The idea was that once completed, the implementation of a class could only be modified to correct errors; new or changed features would require that a different class be ...
3
votes
2answers
148 views

Visitor Pattern can be replaced with Callback functions?

Is there any significant benefit to using either technique? In case there are variations, the Visitor Pattern I mean is this: http://en.wikipedia.org/wiki/Visitor_pattern And below is an example of ...
2
votes
2answers
171 views

Creating a Graph Query Language (Node/Edge/HyperEdge)

I'm creating an API that encapsulates JPA objects with additional properties and helpers. I do not want the users to access the database, because I have to provide certain querying functionality for ...
2
votes
3answers
75 views

Visitor pattern, not all visitors have a reasonable implementations for all methods in the interface

I have an interface Serializable. This class have methods for each Item subclass in my application. However not all classes that implements Serializable have a reasonable implementation of the ...
3
votes
2answers
226 views

visitor pattern for boost::any

I found this https://gist.github.com/2945472 but I need an implementation that does not depend on c++11. I tried my hand at converting it to use only boost, but I'm having some trouble. Here is what ...
0
votes
2answers
73 views

One builder method implementation for all sub-classes (generics?)

My dilema is in creating one method that follows the builder pattern, which sets a variable and returns itself, but I have an interface Visitor which is implemented by BasicVisitor and that is ...
1
vote
4answers
152 views

Visitor pattern in C++

I want to implement the Visitor pattern in C++ like this: class Visitor{ public: virtual ~Visitor(); virtual void visit(C & t)=0; }; class V : public Visitor{ public: void visit(C &c); ...
0
votes
1answer
47 views

Google Analytics: Easy way to report on users who visit Page A and Page B in the same session?

I know about all the new GA reports like Visitor Flow, goal tracking, etc, but is there an easy way to track users visit PageA and PageB in the same session? I don't care what path they took or if ...
2
votes
1answer
116 views

Cyclic dependency in Visitor Design Pattern

Is there a way to implement visitor design pattern without cyclic dependency? What I mean is that the visitor need an object to visit. and the visited object needs a visitor to accept. In the end both ...
1
vote
2answers
71 views

Visitor Pattern - one more implementation

I have some simple app, that I have implemented with design patterns. On the way I have implemented it using MVC separation. I have View - MainForm class, Controller - MainController class. ...
2
votes
3answers
367 views

Java performance puzzler: wrapper classes faster than primitive types?

in order to implement some image analysis algorithms without having to worry too much on the data type (i.e. without having too much duplicate code), I'm setting up the visitor pattern for primitive ...
1
vote
2answers
128 views

Visitor design pattern with GWT

I had an idea and it goes like this: Parse a file on service side. Create a list of actions based on the file's contents. Pass the list of actions to the client side. Have the client define and ...
1
vote
3answers
215 views

Visitor pattern for Java

I have a question about visitor pattern! Imagine i have Data structure Class and inside it i have a has-a relation with Class2. Class2 has specific class hierarchy with about 10 classes. I need to ...
0
votes
4answers
161 views

Generics and the visitor pattern

I am having a problem with the Visitor pattern and generics. I have some abstract class whose children are to be visited. Look at this code: public abstract class Element extends SomeSuperClass { ...
1
vote
3answers
69 views

How can private inheritance from a visitor interface allow a visitable object to access visit private visit implementations?

The following code shows a class which privately inherits from an interface having its private functions accessed without granting the calling object friendship. I am baffled by this but can't really ...
0
votes
0answers
35 views

Handle JMX notifications having user data without conditional checks

Hello dear community, I'm looking for a solution to handle jmx notifications with user data without conditional check. For example, a listener is interested in multiple notifications. Each ...
0
votes
1answer
92 views

Hibernate, sub-classing and the visitor pattern

I might be using the wrong word so when I say Business Object (BO) I mean a class with a reference to the class that's mapped to a database-table with Hibernate, as well as business logic. The ...
3
votes
2answers
604 views

Implementing the visitor pattern using C++ Templates

I've been trying to reduce the amount of boilerplate in my code, by using C++ Templates to implement the visitor pattern. So far I've come up with this: class BaseVisitor { public: virtual ...
2
votes
1answer
105 views

issues related to implementation of Visitor Design Pattern

Based on my current requirement, I have implemented the Visitor pattern and we have some different aspects as follows: 1>Different from the classic example illustrated in the GoF book, subclasses of ...
0
votes
1answer
197 views

Changing boost::variant underlying type from visitor

I have a recursive variant that models an S-expression: struct sexpr { typedef boost::variant< nil, int, double, symbol, string, ...
1
vote
1answer
157 views

Visitor Pattern and traversal mechanism

I have a graph and a set of very simple visitors that do some calculations on vertices/edges of the graph such as getting the total weight of edges and pretty-printing the graph. I would like to go ...
1
vote
0answers
161 views

Doctrine_Query, criteria as objects, & the Visitor Pattern. Possible?

I've been working on a bunch of projects lately with Doctrine 1.2 integrated into Zend Framework 1.11, and it has been really fun. One of the most common methods I have implemented in my service ...
1
vote
1answer
269 views

Visitor Pattern for AST

I'm trying to use the visitor pattern to perform operations for the AST of my compiler but I can't seem to figure out an implementation that will work properly. AST classes excerpt: class AstNode { ...
2
votes
3answers
185 views

Visitor Pattern solution: few visitors have same interface but should work with different objects

I have following class diagram (visitor pattern implementation): http://i.stack.imgur.com/EO0Yz.jpg Expected result: 1) WiredVisitor should visit only Router and WiredNetworkCard 2) ...
0
votes
3answers
220 views

Using Visitor Pattern to detect intersection between two shapes

I realize this is a very specific question so it would be helpful if the answer people give includes explicit codes on how to do this. Thanks. I have an abstract base class Shape: class Shape { ...
-1
votes
1answer
114 views

C++ Forward Declaration and Inheritence

I have a situation as such A.h #ifndef _CLASSA #define _CLASSA class B; class A { virtual void addTo(B*) {} }; #endif B.h #ifndef _CLASSB #define _CLASSB #include "A.h" class B : public A ...
0
votes
4answers
123 views

Visitor pattern - adding new ConcreteElement classes is hard?

I read a book about the visitor pattern. It gives the same class diagram as in the oodesign's website. It says that adding new ConcreteElement classes is hard. But I didn't understand why. As I ...
2
votes
1answer
109 views

Calling methods common to types in a boost::variant

If all the types in my boost::variant support the same method, is there a way to call it generically (i.e. not calling it seperately for each method of the static_visitor)? I'm trying to get ...
0
votes
2answers
127 views

Visitor pattern Java and global variables

I'm using JSoup and I'm doing some node traversal. String myString; NodeTraversor articleNodeTraversor = new NodeTraversor(new NodeVisitor() { @Override public void ...
3
votes
2answers
515 views

How to avoid downcast?

I have an implementation of a State Pattern where each state handles events it gets from a event queue. Base State class therefore has a pure virtual method void handleEvent(const Event*). Events ...
-1
votes
3answers
359 views

Visitor design pattern

Is that possible that the accept method for the visitor design pattern can be implemented by the root of the class hierarchy?
4
votes
1answer
395 views

Implementing Visitor Pattern while allowing different return types of functions

I am trying to implement the Visitor Pattern for an object structure which has methods with different return types (string, unsigned int, etc). Now, in the object hierarchy I have added an Accept ...

1 2 3