summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/RepositoryManager/URL_Parser.h
blob: 54f9db42877eb5025a8ae347326a62c64a3da8e0 (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

/* -*- 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:

  /// 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
  int debug_;

  URL_Parser (void);
  // protected constructor, singleton

  //destructor
  ~URL_Parser (void);
};



#endif /* URL_PARSER_H */