1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #ifndef __FRAMEWORK_LOADSTATE_H_ 29*cdf0e10cSrcweir #define __FRAMEWORK_LOADSTATE_H_ 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 32*cdf0e10cSrcweir // includes 33*cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir #include <com/sun/star/ucb/InteractiveIOException.hpp> 36*cdf0e10cSrcweir #include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp> 37*cdf0e10cSrcweir 38*cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 39*cdf0e10cSrcweir // namespace 40*cdf0e10cSrcweir //_________________________________________________________________________________________________________________ 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir namespace framework{ 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir //_______________________________________________________________________ 45*cdf0e10cSrcweir /** 46*cdf0e10cSrcweir These enum values specify all possible results of a load request. 47*cdf0e10cSrcweir It doesn't matter, if this load operation used dispatch() or loadComponentFromURL(). 48*cdf0e10cSrcweir The meaning is everytime the same. 49*cdf0e10cSrcweir */ 50*cdf0e10cSrcweir enum ELoadState 51*cdf0e10cSrcweir { 52*cdf0e10cSrcweir E_UNSPECIFIED = 0, // indicates the operation was not already started 53*cdf0e10cSrcweir E_SUCCESS = 1, // the load request was successfull 54*cdf0e10cSrcweir E_IOERROR = 2, // there was an io error internaly 55*cdf0e10cSrcweir E_INTERACTION = 3, // there was an interaction, which couldn't be handled (doesn't include IO interactions => see E_IOERROR before) 56*cdf0e10cSrcweir E_FAILED = 4 // for unknown or unspecified errors 57*cdf0e10cSrcweir }; 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir //_______________________________________________________________________ 60*cdf0e10cSrcweir /** 61*cdf0e10cSrcweir Helper, which provides some functionality to identify the reason for 62*cdf0e10cSrcweir a failed load request and can describe it. 63*cdf0e10cSrcweir */ 64*cdf0e10cSrcweir class LoadStateHelper 65*cdf0e10cSrcweir { 66*cdf0e10cSrcweir public: 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir //_________________________________ 69*cdf0e10cSrcweir /** 70*cdf0e10cSrcweir @short checks if the given interaction request was an io error 71*cdf0e10cSrcweir @descr This information can be used to throw 72*cdf0e10cSrcweir a suitable IOException. (e.g. loadComponentFromURL()) 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir @param aRequest 75*cdf0e10cSrcweir the original interaction request, which may produced 76*cdf0e10cSrcweir the failed load request 77*cdf0e10cSrcweir 78*cdf0e10cSrcweir @param rReason 79*cdf0e10cSrcweir in case this Method returns <sal_True/> the referred string object 80*cdf0e10cSrcweir will be used to set the original message of the 81*cdf0e10cSrcweir aborted io exception on it. 82*cdf0e10cSrcweir If method returns <sal_False/> rReason was not used. 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir @return [boolean] 85*cdf0e10cSrcweir <sal_True/> in case it was an IO error 86*cdf0e10cSrcweir <sal_False/> in case it wasn't an IO error or interaction was not used 87*cdf0e10cSrcweir */ 88*cdf0e10cSrcweir static sal_Bool wasIOError( const css::uno::Any& aRequest , 89*cdf0e10cSrcweir rtl::OUString& rReason ) 90*cdf0e10cSrcweir { 91*cdf0e10cSrcweir if ( ! aRequest.hasValue() ) 92*cdf0e10cSrcweir return sal_False; 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir css::ucb::InteractiveIOException exIOInteractive ; 95*cdf0e10cSrcweir css::ucb::InteractiveAugmentedIOException exIOAugmented ; 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir if (aRequest>>=exIOInteractive) 98*cdf0e10cSrcweir { 99*cdf0e10cSrcweir rReason = exIOInteractive.Message; 100*cdf0e10cSrcweir return sal_True; 101*cdf0e10cSrcweir } 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir if (aRequest>>=exIOAugmented) 104*cdf0e10cSrcweir { 105*cdf0e10cSrcweir rReason = exIOAugmented.Message; 106*cdf0e10cSrcweir return sal_True; 107*cdf0e10cSrcweir } 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir return sal_False; 110*cdf0e10cSrcweir } 111*cdf0e10cSrcweir }; 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir } // namespace framework 114*cdf0e10cSrcweir 115*cdf0e10cSrcweir #endif // #ifndef __FRAMEWORK_LOADSTATE_H_ 116