1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_UCBHELPER_CANCELCOMMANDEXECUTION_HXX
21 #define INCLUDED_UCBHELPER_CANCELCOMMANDEXECUTION_HXX
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <com/sun/star/uno/Exception.hpp>
25 #include <com/sun/star/ucb/IOErrorCode.hpp>
26 #include <com/sun/star/ucb/XCommandProcessor.hpp>
27 #include <ucbhelper/ucbhelperdllapi.h>
29 namespace com
{ namespace sun
{ namespace star
{
30 namespace uno
{ class Any
; }
31 namespace ucb
{ class XCommandEnvironment
; }
38 /** Cancel the execution of a command by throwing the appropriate exception.
39 If an Interaction Handler is given with the command environment and the
40 handler handles the exception by selecting the supplied continuation,
41 then this function will put the original exception supplied into a
42 css::ucb::CommandFailedException and throw the
43 CommandFailedException. If no handler was given or the handler was not
44 able to handle the exception, then the given exception will be thrown
47 NOTE THAT THIS FUNCTION NEVER RETURNS! IT ALWAYS THROWS AN EXCEPTION!
49 @param rException is the exception describing the error to handle.
51 @param xEnv is the command environment that may contain an Interaction
52 Handler to use before throwing the appropriate exception.
54 @throws css::uno::Exception
56 UCBHELPER_DLLPUBLIC
void cancelCommandExecution( const css::uno::Any
& rException
,
57 const css::uno::Reference
<
58 css::ucb::XCommandEnvironment
> &
61 /** Cancel the execution of a command by throwing the appropriate exception.
62 If an Interaction Handler is given with the command environment and the
63 handler handles the exception by selecting the supplied continuation,
64 then this function will put the original exception supplied into a
65 css::ucb::CommandFailedException and throw the
66 CommandFailedException. If no handler was given or the handler was not
67 able to handle the exception, then the given exception will be thrown
70 NOTE THAT THIS FUNCTION NEVER RETURNS! IT ALWAYS THROWS AN EXCEPTION!
72 @param eError is an IO error code.
74 @param rArgs is a sequence containing the arguments to pass along with
75 the exception. Each IO error code can be combined with one or
76 more additional arguments. Refer to com/sun/star/ucb/IOErroprCode.idl
79 @param xEnv is the command environment that may contain an Interaction
80 Handler to use before throwing the appropriate exception.
82 @param rMessage is a text containing additional error information.
83 Used as debugging aid only. Passed to the member 'Message' of the
84 uno::Exception thrown by this function.
86 @param xContext is the command processor executing the command to cancel.
87 Used as debugging aid only. Passed to the member 'Context' of the
88 uno::Exception thrown by this function.
90 @throws css::uno::Exception
92 UCBHELPER_DLLPUBLIC
void cancelCommandExecution( const css::ucb::IOErrorCode eError
,
93 const css::uno::Sequence
< css::uno::Any
> & rArgs
,
94 const css::uno::Reference
< css::ucb::XCommandEnvironment
> & xEnv
,
95 const OUString
& rMessage
= OUString(),
96 const css::uno::Reference
< css::ucb::XCommandProcessor
> & xContext
= nullptr );
99 #endif // INCLUDED_UCBHELPER_CANCELCOMMANDEXECUTION_HXX
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */