Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UCB_COMMANDENVIRONMENT_HPP
2 : #define INCLUDED_COM_SUN_STAR_UCB_COMMANDENVIRONMENT_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/task/XInteractionHandler.hpp"
9 : #include "com/sun/star/ucb/XCommandEnvironment.hpp"
10 : #include "com/sun/star/ucb/XProgressHandler.hpp"
11 : #include "com/sun/star/uno/DeploymentException.hpp"
12 : #include "com/sun/star/uno/Exception.hpp"
13 : #include "com/sun/star/uno/RuntimeException.hpp"
14 : #include "com/sun/star/uno/XComponentContext.hpp"
15 : #include "com/sun/star/uno/Any.hxx"
16 : #include "com/sun/star/uno/Reference.hxx"
17 : #include "com/sun/star/uno/Sequence.hxx"
18 : #include "cppu/unotype.hxx"
19 : #include "rtl/ustring.h"
20 : #include "rtl/ustring.hxx"
21 :
22 : namespace com { namespace sun { namespace star { namespace ucb {
23 :
24 : class CommandEnvironment {
25 : public:
26 3 : static ::com::sun::star::uno::Reference< css::ucb::XCommandEnvironment > create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::task::XInteractionHandler >& InteractionHandler, const ::com::sun::star::uno::Reference< css::ucb::XProgressHandler >& ProgressHandler) {
27 : assert(the_context.is());
28 3 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(2);
29 3 : the_arguments[0] <<= InteractionHandler;
30 3 : the_arguments[1] <<= ProgressHandler;
31 3 : ::com::sun::star::uno::Reference< css::ucb::XCommandEnvironment > the_instance;
32 : try {
33 3 : the_instance = ::com::sun::star::uno::Reference< css::ucb::XCommandEnvironment >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.ucb.CommandEnvironment" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
34 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
35 0 : throw;
36 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
37 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.ucb.CommandEnvironment of type com.sun.star.ucb.XCommandEnvironment: " ) + the_exception.Message, the_context);
38 : }
39 3 : if (!the_instance.is()) {
40 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.ucb.CommandEnvironment of type com.sun.star.ucb.XCommandEnvironment" ), the_context);
41 : }
42 3 : return the_instance;
43 : }
44 :
45 : private:
46 : CommandEnvironment(); // not implemented
47 : CommandEnvironment(CommandEnvironment &); // not implemented
48 : ~CommandEnvironment(); // not implemented
49 : void operator =(CommandEnvironment); // not implemented
50 : };
51 :
52 : } } } }
53 :
54 : #endif // INCLUDED_COM_SUN_STAR_UCB_COMMANDENVIRONMENT_HPP
|