[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] New error code needed for javahl binding. Next try

From: Patrick Mayweg <mayweg_at_qint.de>
Date: 2004-06-07 16:33:37 CEST

Hi,
after the comment by Justin Erenkrantz, I have renamed the exception to
SVN_ERR_BINDING_EXCEPTION_PASSTHRU. The reason for the new error code is
unchanged, but the error code is no longer specific to the javahl binding.
Patrick

[[[
* subversion/include/svn_error_codes.h
   added new error code for passing pending java exception thru subversion.
]]]

Patrick Mayweg wrote:

> Hi,
> the javahl binding needs a new error code. The binding calls
> java-callbacks. During these calls, java exceptions maybe thrown. The
> binding can detect these exceptions. This not catching these
> exceptions. What I want to do is the stop the subversion processing by
> returning an svn_error_t to subversion. When this error is processed
> in the outer javahl binding code, I do not have to throw a new
> exception, but keep the existing exception pending. For that I need a
> new error.
> Patrick
>

Index: subversion/include/svn_error_codes.h
===================================================================
--- subversion/include/svn_error_codes.h (revision 9921)
+++ subversion/include/svn_error_codes.h (working copy)
@@ -853,6 +853,14 @@
               SVN_ERR_MISC_CATEGORY_START + 19,
               "Incompatible library version")
 
+ /* language bindings may catch/detect exception in their language while
+ doing callbacks. To pass these exceptions thru the subversion code
+ unchanged, a special error code is needed. This error code is not
+ user visibible */
+ SVN_ERRDEF (SVN_ERR_BINDING_EXCEPTION_PASSTHRU,
+ SVN_ERR_MISC_CATEGORY_START + 20,
+ "Binding exception has been passed thru")
+
   /* command-line client errors */
 
   SVN_ERRDEF (SVN_ERR_CL_ARG_PARSING_ERROR,

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Jun 7 16:34:31 2004

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.