Visitor design pattern is a way of separating an algorithm from an object structure on which it operates.

learn more… | top users | synonyms

1
vote
1answer
32 views

Apply Visitor Pattern as an Extensibilty Mechanism for a single class

Let's say in my program I have a class called Robot that inherits from some other class. Until now I have some methods inside Robot like addPart or getCost. Now I'm asked to add a new module of ...
-1
votes
0answers
21 views

HOW do i work with interpreter and visitor pattern in vb.net [closed]

Can anyone here give me some recommendations or a good link to learn more about this pattern. I really need it for my work. Thank you in advance.
0
votes
0answers
11 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 ...
1
vote
1answer
39 views

How to handle collections with the visitor pattern?

I have to parse data from JSON files and insert data into my database. There are three files: countries [ { "id": 1, "name": "United States", "org_ids": [ ...
3
votes
2answers
66 views

Visitor pattern for const and nonconst versions of a tree

I am stuck with a code duplication issue, regarding the visitor pattern for a tree. The current situation is as follows: I have a tree, consisting of two different node classes, i.e. leafs and ...
4
votes
1answer
109 views

Using 'dynamic' in C# to implement Visitor Pattern

I have an application where I am performing an operation on a series of elements and the exact nature of the operation depends on the type of the element being operated upon. For reasons of ...
0
votes
1answer
54 views

Netty.io messageReceived override without instanceof

In netty, MessageEvent (wrapper for messages) has a method Object getMessage() to get the real carried message from the network. Reading the source I noticed they heavily use the instanceof operator ...
-1
votes
0answers
17 views

Site visitors bot

I want to write a bot(like google bot). The bot role is visit sites and write evaluation or copy some text or take a sceenshot or anytihng else. How to start this bot? Is this feasible in PHP? or ...
-1
votes
1answer
115 views

how to check if visitor liked my facebook fanpage. private website not facebook iframe tabs

Is it possible to check if the visitor of my private Website liked my Facebook Fanpage? I found many posts for Facebook Iframe-Tabs but not for private Website owner.
2
votes
4answers
87 views

Returning a value from Visitor pattern

I have a hierarchy as follows: class Element{ public : virtual void Accept(Visitor&) = 0 protected : Element(); int num; }; class ElementA : public ...
0
votes
1answer
50 views

Implementing a double dispatch in C# extensible for both functions and objects to operate on

I'm looking for a way to implement a double dispatch that can be extended for both methods and classes. Until now I used basically three approaches: the traditional procedural approach with a great ...
0
votes
1answer
52 views

Applying the visitor pattern for detecting cycles in a graph

i need to detect if in a directed graph there is a cycle , something likes the topological sort , but i wanna use the visitor pattern.. Do you have some ideas ? I can use the arraylist of nodes , and ...
0
votes
1answer
39 views

pygame - python getting variables with the visiter pattern

I'm trying to use the visiter pattern to get self.coin value from the first class and return it to the method in the second class but its not working, its always returning none... can anyone help? ...
0
votes
0answers
35 views

Visitor Design Pattern construct path

I'm implementing a Visitor on a Tree Structure. This tree structure is implemented to represent folder hierarchy. What I'd like in my visitor is to display the complete path from the root node to the ...
1
vote
1answer
63 views

Communication between visitor and visitee

My current project contains a complex object hierarchy. The following structure is a simplified example of this hierarchy for demonstration purposes: Library Category "Fiction" ...
3
votes
1answer
159 views

Generics overkill in visitor pattern

I am working on a project where I am converting an old java 1.2 code written ten years ago to java 7. That project heavily (over)uses a particular visitor. To keep things conceptually simple, lets say ...
3
votes
1answer
1k views

ANTLR 4 and AST visitors

I'm tring to use ASTs with ANTLR4, with this files: Builder.java import org.antlr.v4.runtime.ANTLRInputStream; import org.antlr.v4.runtime.CharStream; import org.antlr.v4.runtime.CommonTokenStream; ...
1
vote
1answer
38 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
86 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 ...
4
votes
2answers
103 views

Implementing a method with generics relating the return and parameter types specified in an interface that does not do this

I am with a sort of trouble when using java generics in the visitor pattern. My code is something like that: public interface MyInterfaceVisitor<A, B> { public A ...
2
votes
2answers
203 views

Evaluate Tree Expression via Visitor

I have a expression made by composite design pattern: interface TreeExpression{ void accept(Visitor visitor); } abstract class Operator{ TreeExpression childA; TreeExpression childB; ...
-1
votes
2answers
180 views

finde if visitor liked my facebook page [closed]

Hi i'm searching for a way to know if a visitor of my webpage did like my facebook fanpage ? Is there away to know it? It is better if it can be done with javascript but is not a problem if it is in ...
1
vote
1answer
166 views

Using MaxMind or run a local whois to get visitor country code by IP

what is the best method to get visitors country code by IP between the 2 following methods: Using MaxMind geoip database here. Run a local whois and grep for the word country like this $ip = ...
2
votes
2answers
105 views

Implementing Visitor using InstanceOf

I do well master Visitor Pattern. However, I wonder something. Most important motivation to use Visitor Pattern is to add logic involvingo specific Data Models in client side without needing to check ...
1
vote
2answers
270 views

ANTLR4 Visitor subtree check

I have an Antlr4 question. Given the grammar excerpt below. What is the correct approach to testing for the existence of the optional actualParameters subtree within a visitor? I have tried the ...
2
votes
0answers
38 views

How can I find out how many people are on my website with PHP

I have a server and I want to make a control panel that has stats about who is connected to my website currently. How should I do this using PHP or Javascript?
0
votes
2answers
285 views

Save IP and other visitor information in database using PHP

I am trying to store visitor information in database. I need to create a table if it doesn't exist, and then store information. But the information is not getting stored and I need help with the code. ...
1
vote
1answer
151 views

boost::apply_visitor is not a member of [some] class

I have a ShapeType, Point, with some coordinates, (1,2), and I'd like to use apply_visitor in an overloaded operator () to add the coordinates (3,4) to my Point, so that Point ends up being (4,6). ...
1
vote
1answer
611 views

Magento. Save visitor store choice in cookies

I need to check if visitor is first time on website and show block with country choice(stores). Then I need to save visitor choice in cookies(I just think that it is right to save it in cookies). ...
0
votes
2answers
264 views

PHP : store unique visitors of each article by IP address [closed]

I want to know, is it a good idea to store visitor's IP address for each news/article posted ? I mean in term of database size and performance. I really want to keep track the number of unique ...
1
vote
2answers
72 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. ...
0
votes
2answers
148 views

Joomla plugin to show the number of visitors [closed]

I am looking for a Joomla plugin that can help me in showing the number of visitors who have recently visited a specific article in my website.. can anyone can help me ?
2
votes
1answer
143 views

JFrame is not displayed correctly

In my Client/Server Java application, I found out a strange behaviour, that prevents any content to be displayed in a JFrame than the first one (login one). The JFrame is diplayed, but it's ...
1
vote
2answers
77 views

symmetric visitor pattern

I'm using visitor pattern to define a set of operations on some classes. Some operations are commutative, so I end up with duplication in the visitor pattern code. Let's say I have classes A B C, and ...
0
votes
1answer
204 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
141 views

Java source code for testing AST visitor

I'm currently developing an Abstracty Syntax Tree visitor for a lombok.ast tree that should print as plain text, in a given OutputStream object, the structure of my AST. In order to speed up the ...
0
votes
1answer
285 views

Implementing a Visitor Tracking System

For my website I want a track visitor system I found this one HERE But after setting it up, I get an error. Fatal error: Cannot redeclare getBrowserType() (previously declared I also don't know ...
0
votes
1answer
548 views

how to force open new tab / window for javascript?

I want to install supercounter in a page: < !-- BEGIN: Powered by Supercounters.com --> <script type="text/javascript" src="http://widget.supercounters.com/online_t.js"> </script> ...
0
votes
3answers
79 views

What language feature can allow transition from visitor to sequence?

I will use C# syntax since I am familiar with it, but it is not really language-specific. Let's say we want to provide an API to go over a Tree and do something with each Node. Solution 1: void ...
6
votes
1answer
341 views

Visitor Pattern in C++ with multiple visitable parameters

Consider the following hierarchy: class Base { virtual void Method() = 0; virtual void Accept(Visitor *iVisitor) = 0; }; class Derived1: public Base { virtual void Method(){//impl} ...
1
vote
1answer
240 views

Receiving “Query was empty” error when loading log visitor collection in Magento

How does one retrieve a collection of visitors using the Log/Visitor model? I've tried using the following code.... <?php error_reporting(E_ALL); ini_set('display_errors',TRUE); $root = ...
0
votes
1answer
1k views

Using a LINQ ExpressionVisitor to replace primitive parameters with property references in a lambda expression

I'm in the process of writing a data layer for a part of our system which logs information about automated jobs that run every day - name of the job, how long it ran, what the result was, etc. I'm ...
1
vote
1answer
112 views

delete nodes from the java AST of the Java code source

I want to change an AST Java by deleting the fully Qualified names and replace it by the corresponding imports.ça need to change the type of call completions nodes by simple nodes. The problem is that ...
1
vote
3answers
589 views

visitor counter

I have the below code its insert when user open the page and when refresh it,,, I want to update visit table set leaveTime=$time when user leave the page by click any link inside the page which move ...
2
votes
1answer
179 views

Java compiler tree api: NPE

I am trying to visit method body with another treepathscanner, but I dont know, which parameter to pass, because I allways get a NPE in TreePath constructor. @Override public Object ...
1
vote
1answer
250 views

Postorder traversal on a ast.nodevisitor in Python

Is it possible to do a postorder traversal on an instance of ast.NodeVisitor in Python just by manipulating the ast.NodeVisitor.generic_visit()? I did this: class ExpParser(ast.NodeVisitor): def ...
0
votes
2answers
63 views

conversion rate, what should I count as a 'visitor'?

I want to implement visitors tracking on a php site, to estimate the conversion rates. What every site tells me is that we should divide the the number of completed transactions to the number of ...
2
votes
1answer
252 views

NRefactory AST Visitor, no visit method for certain nodes?

We're currently working with NRefactory in a school project, and we noticed some nodes in the AST generated by the demo that we couldn't find a corresponding visit method to. For example: ...
0
votes
1answer
143 views

How to deny service to IP based on the number connections per second or minute from that IP?

This is for DDoS Attack Basically, I need to deny access to the site based on the specific number of connections in a specific time. Like 1 minute or 1 second. If an IP overlaps the maximum ...
0
votes
4answers
717 views

Difference between decorator design pattern and visitor design pattern

I believe to understand the intent of Decorator and Visitor design pattern. Though i can list following differences Decorator works on an object, Visitor works on composite structure, Decorator ...

1 2 3