summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Trading/Offer_Exporter.h
blob: c827677e18a63cd25b5596b3f86fa91b4747ad0d (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// $Id$

// ========================================================================
//
// = FILE  
//     Offer_Exporter.h
//
// = DESCRIPTION
//    Class that tests the Trading Service's Register Interface
//
// = AUTHOR
//     Seth Widoff <sbw1@cs.wustl.edu>
//
// ======================================================================= 

#ifndef TAO_OFFER_EXPORTER_H
#define TAO_OFFER_EXPORTER_H

#include "TT_Info.h"
#include "orbsvcs/Trader/Dynamic_Property.h"

class TAO_Offer_Exporter
{
public:

  TAO_Offer_Exporter (PortableServer::POA_ptr poa,
		      CosTrading::Register_ptr register_if,
		      CORBA::Environment& env)
    TAO_THROW_SPEC ((CORBA::SystemException));

  ~TAO_Offer_Exporter (void);
  
  void export_offers (CORBA::Environment& env)
    TAO_THROW_SPEC ((CORBA::SystemException, 
		     CosTrading::Register::InvalidObjectRef, 
		     CosTrading::IllegalServiceType, 
		     CosTrading::UnknownServiceType, 
		     CosTrading::Register::InterfaceTypeMismatch, 
		     CosTrading::IllegalPropertyName, 
		     CosTrading::PropertyTypeMismatch, 
		     CosTrading::ReadonlyDynamicProperty, 
		     CosTrading::MissingMandatoryProperty, 
		     CosTrading::DuplicatePropertyName));

  void withdraw_offers (CORBA::Environment& env)
    TAO_THROW_SPEC ((CORBA::SystemException, 
		     CosTrading::IllegalOfferId, 
		     CosTrading::UnknownOfferId, 
		     CosTrading::Register::ProxyOfferId));

  void describe_offers (CORBA::Environment& env)
    TAO_THROW_SPEC ((CORBA::SystemException, 
		     CosTrading::IllegalOfferId, 
		     CosTrading::UnknownOfferId, 
		     CosTrading::Register::ProxyOfferId));

  void modify_offers (CORBA::Environment& env)
    TAO_THROW_SPEC ((CORBA::SystemException, 
		     CosTrading::NotImplemented, 
		     CosTrading::IllegalOfferId, 
		     CosTrading::UnknownOfferId, 
		     CosTrading::Register::ProxyOfferId, 
		     CosTrading::IllegalPropertyName, 
		     CosTrading::Register::UnknownPropertyName, 
		     CosTrading::PropertyTypeMismatch, 
		     CosTrading::ReadonlyDynamicProperty, 
		     CosTrading::Register::MandatoryProperty, 
		     CosTrading::Register::ReadonlyProperty, 
		     CosTrading::DuplicatePropertyName));

  void withdraw_offers_using_constraints (CORBA::Environment& env)
    TAO_THROW_SPEC ((CORBA::SystemException, 
		     CosTrading::IllegalServiceType, 
		     CosTrading::UnknownServiceType, 
		     CosTrading::IllegalConstraint, 
		     CosTrading::Register::NoMatchingOffers));  
  
private:

  CosTrading::OfferIdSeq* grab_offerids (CORBA::Environment& env)
    TAO_THROW_SPEC ((CORBA::SystemException,
		     CosTrading::NotImplemented));

  void create_offers (void);

  CosTrading::Register_var register_;
  CosTrading::Admin_var admin_;
  
  TT_Info::Printer printer_[NUM_OFFERS];
  TT_Info::Plotter plotter_[NUM_OFFERS];
  TT_Info::File_System fs_[NUM_OFFERS];
  
  TAO_DP_Dispatcher dp_plotters_[NUM_OFFERS];
  TAO_DP_Dispatcher dp_printers_[NUM_OFFERS];
  TAO_DP_Dispatcher dp_fs_[NUM_OFFERS];
  
  CosTrading::PropertySeq props_plotters_[NUM_OFFERS];
  CosTrading::PropertySeq props_printers_[NUM_OFFERS];
  CosTrading::PropertySeq props_fs_[NUM_OFFERS];
};

#endif /* TAO_OFFER_EXPORTER_H */