Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
9answers
552 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!): ...
10
votes
1answer
232 views

Pattern Visitor breaking law of Demeter?

Law of Demeter expects to make the loosest coupling between classes. This implies that 90% of all getters/setters exposing in class must be "deleted" and replaced by "behavior-contained" method. ...
9
votes
3answers
2k views

Building own C# compiler using ANTLR: Compilation Unit

// Create a scanner that reads from the input stream passed to us CSLexer lexer = new CSLexer(new ANTLRFileStream(f)); tokens.TokenSource = lexer; // Create a parser that reads from the scanner ...
8
votes
7answers
1k views

Java: using a RuntimeException to escape from a Visitor

I am being powerfully tempted to use an unchecked exception as a short-circuit control-flow construct in a Java program. I hope somebody here can advise me on a better, cleaner way to handle this ...
7
votes
1answer
113 views

Boost Graph Library: Potential Bug

BGL's depth_first_search algorithm sometimes calls back_edge() on visitors even if there are no cycles in the graph. By definition of back edge, and according to Boost's DFS Visitor Documentation, ...
7
votes
2answers
526 views

Iterating hierarchy of nodes - Visitor and Composite?

Let's imagine I have a collection of nodes that I use for my Renderer class later on. Then I have a Visitor class that can visit node or whole collection. It's simple because my collection of nodes ...
6
votes
5answers
585 views

Java object graph visitor library

Do you know a good java object graph visitor library? I want to visit an object and its sub components and perform some actions when some conditions are matched. Example usage: on a huge domain ...
6
votes
4answers
997 views

Could someone in simple terms explain to me the visitor pattern's purpose with examples if possible

I'm really confused about the visitor pattern and its uses. I can't really seem to visualize the benefits of using this pattern or its purpose. If someone could explain with examples if possible that ...
6
votes
3answers
2k views

Using the visitor pattern with generics in C#

I want to know whether the below is an acceptable use of the visitor pattern. I feel a little uncomfortable returning from an Accept() or Visit() call - is this an appropriate usage of this pattern ...
6
votes
2answers
464 views

Is there a simple way to emulate Objective-C Categories in C#?

I have a weird design situation that I've never encountered before... If I were using Objective-C, I would solve it with categories, but I have to use C# 2.0. First, some background. I have two ...
6
votes
5answers
4k views

Why use the Visitor Pattern? [closed]

Duplicate of: When Should I Use The Visitor Design Pattern Why would someone want to use the visitor pattern? I've read a couple of articles, but I'm not getting something. If I need a function to ...
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
111 views

How to adapt a visitor interface to an iterator interface?

I'm wondering whether there is a good design pattern or idiom to realize the following: You have an existing class that provides only a visitor interface, as follows class Visitor { public: ...
5
votes
3answers
139 views

Tracking visitor JS errors?

Is it possible to track JS errors that a visitor encounters? Obviously we do our own testing, but from time to time a visitor will be running a certain browser version, or have a particular plugin, at ...
5
votes
5answers
229 views

Apples, oranges, and pointers to the most derived c++ class

Suppose I have a bunch of fruit: class Fruit { ... }; class Apple : public Fruit { ... }; class Orange: public Fruit { ... }; And some polymorphic functions that operate on said fruit: void ...
4
votes
6answers
128 views

C++ template to cover const and non-const method

I have a problem with duplication of identical code for const and non-const versions. I can illustrate the problem with some code. Here are two sample visitors, one which modifies the visited ...
4
votes
4answers
1k views

Implementing a visitor counter

I am a newbie and developing a website using ASP .Net 2.0 with C# 2005. I would like to add a facility to count the no. of visitors to my website. I have collected the basic informations to add this ...
4
votes
3answers
535 views

Unit testing Visitor pattern architecture

I've introduced visitors as one of core architecture ideas in one of my apps. I have several visitors that operate on a same stuff. Now, how should I test it? Some tests I'm thinking of are a bit ...
4
votes
5answers
1k views

what is the difference between using the visitor design pattern or using an interface?

What is the difference between applying the visitor design pattern to your code , and code like the following : interface Dointerface { public void perform(Object o); } public class T { ...
3
votes
2answers
85 views

Implementation of visitor pattern. Asteroid/Spaceship collision problem

I try to learn about double dispatch and the visitor pattern, but the following code is clearly wrong. I must be missing something obvious but I don't know how to fix it. Can anyone illuminate me? I ...
3
votes
2answers
116 views

Trying to implement the Visitor pattern

I'm trying to get to grips with the visitor method in Java. I'm trying to write a very simple program to get used to it. Basically it is a Food Menu. I want to read in user input (food type ...
3
votes
3answers
336 views

AST traversal in visitor or in the nodes?

Update accepted Ira Baxter's answer since it pointed me into the right direction: I first figured out what I actually needed by starting the implementation of the compiling stage, and it became ...
3
votes
5answers
144 views

question about virtual methods in java

Put simply: I want the following code to print "sub": Element e = new SubElement(); print(e); ... private static void print(Element e) { System.out.println("e"); } private static void ...
3
votes
2answers
541 views

How Visitor Pattern avoid downcasting

can anyone show example code before and after to avoid down casting for visitor pattern code ? Thanks.
3
votes
2answers
697 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 = ...
2
votes
1answer
168 views

What's faster: down-cast from virtual base or cross-cast?

This is somewhat hypothetical as I'm not too worried about performance - just wondering which option is actually the fastest/most efficient in general, or if there is no difference whatsoever. ...
2
votes
1answer
155 views

Rails3 Arel visits to custom classes

I have a custom class, but I want to be able to pass it to Arel and let it resolve its queryable part. module Custom class Item attr_accessor :name def initialize(name) self.name = ...
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
174 views

How can I make JAXB-generated classes participate in a Visitor pattern?

Hey folks, hopefully a nice easy one here. I'm generating classes with JAXB from a schema, and I'd like to be able to process them with a Visitor pattern. To do that, I think I need every ...
2
votes
1answer
189 views

Class derivation on the fly - Visitor Pattern

I would like to create visitor pattern in such a way public interface Visitable<T>{ public void accept(T visitor); } public interface SomeBusinessService implements ...
2
votes
1answer
151 views

What does the accept() method of ASTNode do and how does it use the ASTVisitor?

What does the accept method of ASTNode do (The javadoc didn't help too much...) and when will the visit(Expression node) method be called? Here is an example code of how I need to use it: final ...
2
votes
1answer
396 views

How to create an iterator wrapper for DAG structure in Java?

I want to have an iterator over a data structure. For now I don't know what data structure is, mayebe it is a DAG (directed acyclic graph), but maybe it could be also a linked list. So I want to wrap ...
2
votes
0answers
121 views

Visitor pattern lacking parameters

I'm sure this must be a common problem with the Visitor pattern, so thought I'd see if there is a standard solution. How can you re-code a tree traversal where the methods are built into the tree ...
2
votes
1answer
184 views

Tracking Viewing Habits of Website Visitors

First time using this service for a question. I hope I am not asking something that has already been answered. I attempted to find an answer to my question with the search engine but i was unable to. ...
2
votes
3answers
165 views

Changing a Container while using Visitor

I implemented the Visitor pattern in C++ using a STL-like iterator for storing the Visitor's current position in the container. Now I would like to change the container while I iterate over it, and ...
2
votes
8answers
1k views

“Easiest” way to track unique visitors to a page, in real time?

I need to record in "real time" (perhaps no more than 5 minute delay?) how many unique visitors a given page on my website has had in a given time period. I seek an "easy" way to do this. Preferably ...
2
votes
1answer
445 views

Visitor Pattern in Ruby, or just use a Block?

Hey there, I have read the few posts here on when/how to use the visitor pattern, and some articles/chapters on it, and it makes sense if you are traversing an AST and it is highly structured, and you ...
2
votes
5answers
138 views

How to make sure the visitor is unique

Say you have a pay-site with some online courses. And you want to make sure that one person doesn't just buy access, and then give the username and password to all his friends, so they can do the ...
2
votes
2answers
170 views

visitor pattern against conditionals?

I don't seem to find this in usage scenarios for the visitor pattern (or maybe I don't get it). It's also not hierarchical. Let's use an authentication example. A UserAuthenticator authenticates ...
2
votes
3answers
1k views

Boost Graph Library and Visitors

I'm writing a library for manipulating bond graphs, and I'm using the Boost Graph Library to store the data for me. Unfortunately, I can't seem to figure out how to implement a proper visitor pattern ...
2
votes
1answer
498 views

Java field type for a value of a generically recursive self-type?

Given a class hierarchy where the base class defines a recursive self-type: abstract class A<T extends A<T>> { } How can I declare another class (which should not be generic in T, ...
2
votes
3answers
203 views

How to create a reliable and robust page view counter in a web application?

I want to count the visits on a web page, and this page represents an element of my model, just like the Stack Overflow question page views. How to do this in a reliable (one visit, one pageview, ...
2
votes
4answers
581 views

Extending both sides of a Visitor/Bridge pattern

Say I have a hierarchy of classes, let's use the classic Shape examples: abstract class Shape Circle : Shape Square : Shape I have a second hierarchy of renderer classes that handle the rendering ...
1
vote
1answer
90 views

Track users with PHP and JavaScript

Have I missed any obvious things that you can log to keep track on your visitors (using PHP and JavaScript)? Can I get computer name? Can I get the country? Can I get the city? Postal code? Any ...
1
vote
3answers
132 views

Simple realtime unique visitor counter with low database stress?

Title basically says it all. Spent a while trying to find an answer with no luck. What's good practice for a realtime unique counter that won't hurt the database under load? PHP, MySQL and jQuery
1
vote
0answers
37 views

How can i determine visitors from coming Turkey or not - asp.net 4.0 - iis 7.5 - c# [closed]

Possible Duplicate: How to get City, Country, and Country Code for a particular IP Address in ASP.NET? How can i determine visitors from coming Turkey or not - asp.net 4.0 - iis 7.5 - c# ...
1
vote
1answer
111 views

Google Analytics - Count unique visits based on distinct custom var instead of session

I'm setting up a website where I have to track unique visitors during a certain period. The problem is that GA uses a cookie to determine the visit count of a user. This means that a computer/browser ...
1
vote
4answers
427 views

need a virtual template member workaround

I need to write a program implementing the visitor design pattern. The problem is that the base visitor class is a template class. This means that BaseVisited::accept() takes a template class as a ...

1 2