File: URL_Visitor_Factory.h

package info (click to toggle)
ace 8.0.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 46,932 kB
  • sloc: cpp: 341,621; perl: 31,868; sh: 1,963; python: 529; yacc: 511; xml: 330; lex: 158; lisp: 116; makefile: 85; csh: 20; ansic: 19; tcl: 5
file content (74 lines) | stat: -rw-r--r-- 1,893 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    URL_Visitor_Factory.h
 *
 *  @author Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
 */
//=============================================================================


#ifndef _URL_VISITOR_FACTORY_H
#define _URL_VISITOR_FACTORY_H

#include "URL_Visitor.h"
#include "Command_Processor.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

/**
 * @class URL_Visitor_Factory
 *
 * @brief Abstract base class that creates URL visitors.
 *
 * Subclasses define each of the Factory Methods to
 * make the right objects, which all "vary" together.
 */
class URL_Visitor_Factory
{
public:
  /// Destructor.
  virtual ~URL_Visitor_Factory ();

  /// Factory Method that makes the appropriate type of <URL_Visitor>.
  virtual URL_Visitor *make_visitor () = 0;

  /// Factory Method that makes the appropriate type of
  /// <Command_Processor>.
  virtual Command_Processor *make_command_processor () = 0;
};

/**
 * @class URL_Validation_Visitor_Factory
 *
 * @brief Create a URL visitor that validates URL links.
 */
class URL_Validation_Visitor_Factory : public URL_Visitor_Factory
{
public:
  /// Factory Method that makes a <URL_Validation_Visitor>.
  virtual URL_Visitor *make_visitor ();

  /// Factory Method that makes a <FIFO_Command_Processor>.
  virtual Command_Processor *make_command_processor ();
};

/**
 * @class URL_Download_Visitor_Factory
 *
 * @brief Create a URL visitor that downloads URL links.
 */
class URL_Download_Visitor_Factory : public URL_Visitor_Factory
{
public:
  /// Factory Method that makes a <URL_Download_Visitor>.
  virtual URL_Visitor *make_visitor ();

  /// Factory Method that makes a <FIFO_Command_Processor>.
  virtual Command_Processor *make_command_processor ();
};

#endif /* _URL_VISITOR_FACTORY_H */