summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/Persistence_Test/Ptest.h
blob: 5f6c61df0fbc58ead13dd46b88691a15084fa116 (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
68
69
70
71
72
73
// -*- C++ -*-

//=============================================================================
/**
 *  @file    Ptest.h
 *
 *  This code tests the persistence of the IFR by inserting
 *  IR objects into the repository with one function, and querying the
 *  repository with another, with a repository shutdown in between.
 *
 *  @author Jeff Parsons <parsons@cs.wustl.edu>
 */
//=============================================================================


#if !defined (PTEST_H)
#define PTEST_H

#include "tao/IFR_Client/IFR_BasicC.h"
#include "tao/ORB.h"

/**
 * @class Ptest
 *
 * @brief IFR Persistence test Implementation
 *
 * Class wrapper for code which either populates or queries the
 * Interface Repository. Designed to be used with a Perl script
 * which can start and stop both this process and the repository
 * process in the necessary order.
 */
class Ptest
{
public:
  /// Constructor
  Ptest (void);

  /// Destructor
  ~Ptest (void);

  /// Initialize the ORB and get the IFR object reference.
  int init (int argc,
            ACE_TCHAR *argv[]);

  /// Execute test code.
  int run (void);

  /// Cleanup
  int shutdown (void);

private:
  /// The two IFR tests.
  void populate (void);
  int query (void);

  /// Process the command line arguments.
  int parse_args (int argc,
                  ACE_TCHAR *argv[]);

  /// Flag to output results of IFR queries.
  CORBA::Boolean debug_;

  /// Are we populating a new IFR or querying a persistent one?
  CORBA::Boolean query_;

  /// Storage of the ORB reference.
  CORBA::ORB_var orb_;

  /// Storage of the IFR reference.
  CORBA::Repository_var repo_;
};

#endif /* PTEST_H */