summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/RepositoryManager/URL_Parser.h
blob: 0dfef0262ad8a27142a71c8e8d4f93bc37eba3fe (plain)
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

/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    URL_Parser.h
 *
 *  $Id$
 *
 *  Parses a URL into its logical chunks
 *
 *  @author Stoyan Paunov
 */
//=============================================================================


#ifndef URL_PARSER_H
#define URL_PARSER_H

#include "ace/Get_Opt.h"
#include "ace/ARGV.h"
#include "ace/Singleton.h"  //for ACE_Singleton
#include "ace/Null_Mutex.h" //for ACE_Null_Mutex

// Forward declaration
class URL_Parser;

typedef ACE_Singleton <URL_Parser, ACE_Null_Mutex> TheURL_Parser;

class URL_Parser
{
public:

  friend class ACE_Singleton <URL_Parser, ACE_Null_Mutex>;

  /// Parses commandline arguments
  bool parse_args (int argc, ACE_TCHAR *argv[]);

  /// Return false on failure
  bool parseURL (char* url);

  void Error (void);

  /// Hostname to connect to
  ACE_TCHAR *hostname_;

  /// Port number to use
  u_short port_;

  /// Filename to upload/download
  ACE_TCHAR *filename_;

  /// Turns on verbosity
  bool debug_;

  /// destructor
  ~URL_Parser (void);

protected:
  /// protected constructor, singleton
  URL_Parser (void);
};



#endif /* URL_PARSER_H */