summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Upcall_Wrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/Upcall_Wrapper.cpp')
-rw-r--r--TAO/tao/PortableServer/Upcall_Wrapper.cpp45
1 files changed, 13 insertions, 32 deletions
diff --git a/TAO/tao/PortableServer/Upcall_Wrapper.cpp b/TAO/tao/PortableServer/Upcall_Wrapper.cpp
index 076911b755e..8d865765f1d 100644
--- a/TAO/tao/PortableServer/Upcall_Wrapper.cpp
+++ b/TAO/tao/PortableServer/Upcall_Wrapper.cpp
@@ -3,6 +3,7 @@
#include "tao/PortableServer/Upcall_Wrapper.h"
#include "tao/PortableServer/Upcall_Command.h"
#include "tao/PortableServer/DII_Arguments_Converter.h"
+#include "tao/SystemException.h"
#if TAO_HAS_INTERCEPTORS == 1
# include "tao/ServerRequestInterceptor_Adapter.h"
@@ -44,10 +45,7 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
if (dii_arguments_converter != 0)
{
- dii_arguments_converter->convert (server_request,
- args,
- nargs
- );
+ dii_arguments_converter->convert (server_request, args, nargs);
}
else
throw ::CORBA::NO_IMPLEMENT ();
@@ -55,10 +53,7 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
if (server_request.incoming ())
{
- this->pre_upcall (*server_request.incoming (),
- args,
- nargs
- );
+ this->pre_upcall (*server_request.incoming (), args, nargs);
}
#if TAO_HAS_INTERCEPTORS == 1
@@ -103,8 +98,7 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
the_nargs,
servant_upcall,
exceptions,
- nexceptions
- );
+ nexceptions);
}
// Don't bother performing the upcall if an interceptor caused a
@@ -114,9 +108,7 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
{
if (interceptor_adapter != 0)
{
- interceptor_adapter->execute_command (server_request,
- command
- );
+ interceptor_adapter->execute_command (server_request, command);
}
else
#endif /* TAO_HAS_INTERCEPTORS */
@@ -124,7 +116,6 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
// The actual upcall.
command.execute ();
}
-
#if TAO_HAS_INTERCEPTORS == 1
}
}
@@ -155,8 +146,7 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
the_nargs,
servant_upcall,
exceptions,
- nexceptions
- );
+ nexceptions);
}
}
}
@@ -178,11 +168,9 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
the_nargs,
servant_upcall,
exceptions,
- nexceptions
- );
+ nexceptions);
- status =
- server_request.reply_status ();
+ status = server_request.reply_status ();
}
if (status == PortableInterceptor::SYSTEM_EXCEPTION
@@ -208,10 +196,7 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
{
if (server_request.outgoing ())
{
- this->post_upcall (*server_request.outgoing (),
- args,
- nargs
- );
+ this->post_upcall (*server_request.outgoing (), args, nargs);
}
}
}
@@ -219,8 +204,7 @@ TAO::Upcall_Wrapper::upcall (TAO_ServerRequest & server_request,
void
TAO::Upcall_Wrapper::pre_upcall (TAO_InputCDR & cdr,
TAO::Argument * const * args,
- size_t nargs
- )
+ size_t nargs)
{
// Demarshal the operation "in" and "inout" arguments, if any.
@@ -237,8 +221,7 @@ TAO::Upcall_Wrapper::pre_upcall (TAO_InputCDR & cdr,
{
if (!(*i)->demarshal (cdr))
{
- TAO_InputCDR::throw_skel_exception (errno
- );
+ TAO_InputCDR::throw_skel_exception (errno);
}
}
}
@@ -246,8 +229,7 @@ TAO::Upcall_Wrapper::pre_upcall (TAO_InputCDR & cdr,
void
TAO::Upcall_Wrapper::post_upcall (TAO_OutputCDR & cdr,
TAO::Argument * const * args,
- size_t nargs
- )
+ size_t nargs)
{
// Marshal the operation "inout" and "out" arguments and return
// value, if any.
@@ -259,8 +241,7 @@ TAO::Upcall_Wrapper::post_upcall (TAO_OutputCDR & cdr,
{
if (!(*i)->marshal (cdr))
{
- TAO_OutputCDR::throw_skel_exception (errno
- );
+ TAO_OutputCDR::throw_skel_exception (errno);
}
}