summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/TestAMDI.h
blob: 4db8fe0b0797768dc07a4408c8ebefbec756e68c (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

#ifndef TEST_I_H
#define TEST_I_H

#include <TestAMD.h>
#include <TestCommon.h>

bool
endsWith(const std::string&, const std::string&);

class ThrowerI : public Test::Thrower
{
public:

    ThrowerI();

#ifdef ICE_CPP11_MAPPING
    virtual void shutdown_async(std::function<void ()>,
                                std::function<void (std::exception_ptr)>,
                                const Ice::Current&);

    virtual void supportsUndeclaredExceptions_async(std::function<void (bool)>,
                                                    std::function<void (std::exception_ptr)>,
                                                    const Ice::Current&);

    virtual void supportsAssertException_async(std::function<void (bool)>,
                                               std::function<void (std::exception_ptr)>,
                                               const Ice::Current&);

    virtual void throwAasA_async(int,
                                 std::function<void ()>,
                                 std::function<void (std::exception_ptr)>,
                                 const Ice::Current&);

    virtual void throwAorDasAorD_async(int,
                                       std::function<void ()>,
                                       std::function<void (std::exception_ptr)>,
                                       const Ice::Current&);

    virtual void throwBasA_async(int, int,
                                 std::function<void ()>,
                                 std::function<void (std::exception_ptr)>,
                                 const Ice::Current&);

    virtual void throwCasA_async(int, int, int,
                                 std::function<void ()>,
                                 std::function<void (std::exception_ptr)>,
                                 const Ice::Current&);

    virtual void throwBasB_async(int, int,
                                 std::function<void ()>,
                                 std::function<void (std::exception_ptr)>,
                                 const Ice::Current&);

    virtual void throwCasB_async(int, int, int,
                                 std::function<void ()>,
                                 std::function<void (std::exception_ptr)>,
                                 const Ice::Current&);

    virtual void throwCasC_async(int, int, int,
                                 std::function<void ()>,
                                 std::function<void (std::exception_ptr)>,
                                 const Ice::Current&);

    virtual void throwModA_async(int, int,
                                 std::function<void ()>,
                                 std::function<void (std::exception_ptr)>,
                                 const Ice::Current&);

    virtual void throwUndeclaredA_async(int,
                                        std::function<void ()>,
                                        std::function<void (std::exception_ptr)>,
                                        const Ice::Current&);

    virtual void throwUndeclaredB_async(int, int,
                                        std::function<void ()>,
                                        std::function<void (std::exception_ptr)>,
                                        const Ice::Current&);

    virtual void throwUndeclaredC_async(int, int, int,
                                        std::function<void ()>,
                                        std::function<void (std::exception_ptr)>,
                                        const Ice::Current&);

    virtual void throwLocalException_async(std::function<void ()>,
                                           std::function<void (std::exception_ptr)>,
                                           const Ice::Current&);

    virtual void throwNonIceException_async(std::function<void ()>,
                                            std::function<void (std::exception_ptr)>,
                                            const Ice::Current&);

    virtual void throwAssertException_async(std::function<void ()>,
                                            std::function<void (std::exception_ptr)>,
                                            const Ice::Current&);

    virtual void throwMemoryLimitException_async(ICE_IN(Ice::ByteSeq),
                                                 std::function<void (const Ice::ByteSeq&)>,
                                                 std::function<void (std::exception_ptr)>,
                                                 const Ice::Current&);

    virtual void throwLocalExceptionIdempotent_async(std::function<void ()>,
                                                     std::function<void (std::exception_ptr)>,
                                                     const Ice::Current&);

    virtual void throwAfterResponse_async(std::function<void ()>,
                                          std::function<void (std::exception_ptr)>,
                                          const Ice::Current&);

    virtual void throwAfterException_async(std::function<void ()>,
                                           std::function<void (std::exception_ptr)>,
                                           const Ice::Current&);
    
    virtual void throwE_async(std::function<void ()>,
                              std::function<void (std::exception_ptr)>,
                              const Ice::Current&);

    virtual void throwF_async(std::function<void ()>,
                              std::function<void (std::exception_ptr)>,
                              const Ice::Current&);

    virtual void throwG_async(std::function<void ()>,
                              std::function<void (std::exception_ptr)>,
                              const Ice::Current&);

    virtual void throwH_async(std::function<void ()>,
                              std::function<void (std::exception_ptr)>,
                              const Ice::Current&);
#else
    virtual void shutdown_async(const Test::AMD_Thrower_shutdownPtr&,
                                const Ice::Current&);
    virtual void supportsUndeclaredExceptions_async(const Test::AMD_Thrower_supportsUndeclaredExceptionsPtr&,
                                                    const Ice::Current&);
    virtual void supportsAssertException_async(const Test::AMD_Thrower_supportsAssertExceptionPtr&,
                                               const Ice::Current&);

    virtual void throwAasA_async(const Test::AMD_Thrower_throwAasAPtr&,
                                 Ice::Int, const Ice::Current&);
    virtual void throwAorDasAorD_async(const Test::AMD_Thrower_throwAorDasAorDPtr&,
                                       Ice::Int, const Ice::Current&);
    virtual void throwBasA_async(const Test::AMD_Thrower_throwBasAPtr&,
                                 Ice::Int, Ice::Int, const Ice::Current&);
    virtual void throwCasA_async(const Test::AMD_Thrower_throwCasAPtr&,
                                 Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);
    virtual void throwBasB_async(const Test::AMD_Thrower_throwBasBPtr&,
                                 Ice::Int, Ice::Int, const Ice::Current&);
    virtual void throwCasB_async(const Test::AMD_Thrower_throwCasBPtr&,
                                 Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);
    virtual void throwCasC_async(const Test::AMD_Thrower_throwCasCPtr&,
                                 Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);

    virtual void throwModA_async(const Test::AMD_Thrower_throwModAPtr&,
                                 Ice::Int, Ice::Int, const Ice::Current&);

    virtual void throwUndeclaredA_async(const Test::AMD_Thrower_throwUndeclaredAPtr&,
                                        Ice::Int, const Ice::Current&);
    virtual void throwUndeclaredB_async(const Test::AMD_Thrower_throwUndeclaredBPtr&,
                                        Ice::Int, Ice::Int, const Ice::Current&);
    virtual void throwUndeclaredC_async(const Test::AMD_Thrower_throwUndeclaredCPtr&,
                                        Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);
    virtual void throwLocalException_async(const Test::AMD_Thrower_throwLocalExceptionPtr&,
                                           const Ice::Current&);
    virtual void throwNonIceException_async(const Test::AMD_Thrower_throwNonIceExceptionPtr&,
                                            const Ice::Current&);
    virtual void throwAssertException_async(const Test::AMD_Thrower_throwAssertExceptionPtr&,
                                            const Ice::Current&);
    virtual void throwMemoryLimitException_async(const Test::AMD_Thrower_throwMemoryLimitExceptionPtr&,
                                                 const Ice::ByteSeq&, const Ice::Current&);

    virtual void throwLocalExceptionIdempotent_async(const Test::AMD_Thrower_throwLocalExceptionIdempotentPtr&,
                                                     const Ice::Current&);

    virtual void throwAfterResponse_async(const Test::AMD_Thrower_throwAfterResponsePtr&, const Ice::Current&);
    virtual void throwAfterException_async(const Test::AMD_Thrower_throwAfterExceptionPtr&, const Ice::Current&);
    
    virtual void throwE_async(const Test::AMD_Thrower_throwEPtr&, const Ice::Current&);
    virtual void throwF_async(const Test::AMD_Thrower_throwFPtr&, const Ice::Current&);
    virtual void throwG_async(const Test::AMD_Thrower_throwGPtr&, const Ice::Current&);
    virtual void throwH_async(const Test::AMD_Thrower_throwHPtr&, const Ice::Current&);
#endif
};

#endif