summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Naming_Service/Naming_Service.h
blob: bcb8da6ca7ddb7cffe40991abb471bfd97a0d367 (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
67
// $Id$

// ============================================================================
//
// = LIBRARY
//    orbsvcs/Naming_Service/Naming_Service
//
// = FILENAME
//    Naming_Service.h
//
// = DESCRIPTION
//      This class implements the functionality of a Naming_Service.
//
// = AUTHORS
//    Nagarajan Surendran (naga@cs.wustl.edu)
//
// ============================================================================

#if !defined (_NAMING_SERVICE_H)
#define _NAMING_SERVICE_H

#include "tao/TAO.h"
#include "orbsvcs/Naming/Naming_Utils.h"

class Naming_Service
{
  // = TITLE
  //   Defines a class that encapsulates the implementation of a
  //   naming service.
  //
  // = DESCRIPTION
  //   This class makes use of the TAO_Naming_Server and
  //   TAO_ORB_Manager class to implement the Naming_Service.
public:
  Naming_Service (void);
  // Default Constructor.

  Naming_Service (int argc, char *argv[]);
  // Constructor taking the command-line arguments.

  int init (int argc, char *argv[]);
  // Initialize the Naming Service with the arguments.

  int run (CORBA_Environment& env);
  // Run the Naming_Service.

  ~Naming_Service (void);
  // Destructor.
	
private:
  int parse_args (int argc, char *argv[]);
  // parses the arguments.

  TAO_ORB_Manager orb_manager_;
  // The ORB manager.

  TAO_Naming_Server my_naming_server_;
  // Naming Server instance.

  FILE *ior_output_file_;
  // File to output the Naming Service IOR.

  const char *pid_file_name_;
  // File to output the process id.
};

#endif /* _NAMING_SERVICE_H */