[Libreoffice-commits] .: binaryurp/source
Stephan Bergmann
sbergmann at kemper.freedesktop.org
Wed Aug 15 02:38:14 PDT 2012
binaryurp/source/bridge.cxx | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
New commits:
commit edaf3e8cd146f5dadb73f1aebdf990f8a2656bc3
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Aug 15 11:37:34 2012 +0200
fdo#43433: Binary URP works gracefully with old Java URP
...which did not support protocol properties yet.
Change-Id: Ic5bb346764fb039856e16169d5ae96d01422e7e0
diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx
index 256cb91..8e7d1d2 100644
--- a/binaryurp/source/bridge.cxx
+++ b/binaryurp/source/bridge.cxx
@@ -669,7 +669,24 @@ void Bridge::sendRequestChangeRequest() {
void Bridge::handleRequestChangeReply(
bool exception, BinaryAny const & returnValue)
{
- throwException(exception, returnValue);
+ try {
+ throwException(exception, returnValue);
+ } catch (css::uno::RuntimeException & e) {
+ // Before OOo 2.2, Java URP would throw a RuntimeException when
+ // receiving a requestChange message (see i#35277 "Java URP: Support
+ // Manipulation of Protocol Properties"):
+ if (mode_ != MODE_REQUESTED) {
+ throw;
+ }
+ SAL_WARN(
+ "binaryurp",
+ "requestChange caught RuntimeException \'" << e.Message
+ << "' in state 'requested'");
+ mode_ = MODE_NORMAL;
+ getWriter()->unblock();
+ decrementCalls();
+ return;
+ }
sal_Int32 n = *static_cast< sal_Int32 * >(
returnValue.getValue(
css::uno::TypeDescription(cppu::UnoType< sal_Int32 >::get())));
More information about the Libreoffice-commits
mailing list