1*46dbaceeSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*46dbaceeSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*46dbaceeSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*46dbaceeSAndrew Rist * distributed with this work for additional information 6*46dbaceeSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*46dbaceeSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*46dbaceeSAndrew Rist * "License"); you may not use this file except in compliance 9*46dbaceeSAndrew Rist * with the License. You may obtain a copy of the License at 10*46dbaceeSAndrew Rist * 11*46dbaceeSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*46dbaceeSAndrew Rist * 13*46dbaceeSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*46dbaceeSAndrew Rist * software distributed under the License is distributed on an 15*46dbaceeSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*46dbaceeSAndrew Rist * KIND, either express or implied. See the License for the 17*46dbaceeSAndrew Rist * specific language governing permissions and limitations 18*46dbaceeSAndrew Rist * under the License. 19*46dbaceeSAndrew Rist * 20*46dbaceeSAndrew Rist *************************************************************/ 21*46dbaceeSAndrew Rist 22*46dbaceeSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir 26cdf0e10cSrcweir 27cdf0e10cSrcweir #ifndef EXTENSIONS_OOOIMPROVEMENT_ONLOGROTATEJOB_HXX 28cdf0e10cSrcweir #define EXTENSIONS_OOOIMPROVEMENT_ONLOGROTATEJOB_HXX 29cdf0e10cSrcweir 30cdf0e10cSrcweir #include <com/sun/star/task/XAsyncJob.hpp> 31cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp> 32cdf0e10cSrcweir #include <com/sun/star/uno/XComponentContext.hpp> 33cdf0e10cSrcweir #include <cppuhelper/implbase2.hxx> 34cdf0e10cSrcweir 35cdf0e10cSrcweir 36cdf0e10cSrcweir namespace oooimprovement 37cdf0e10cSrcweir { 38cdf0e10cSrcweir #ifdef css 39cdf0e10cSrcweir #error css defined globally 40cdf0e10cSrcweir #endif 41cdf0e10cSrcweir #define css ::com::sun::star 42cdf0e10cSrcweir class OnLogRotateJob : public ::cppu::WeakImplHelper2< 43cdf0e10cSrcweir ::com::sun::star::task::XAsyncJob, 44cdf0e10cSrcweir ::com::sun::star::lang::XServiceInfo> 45cdf0e10cSrcweir { 46cdf0e10cSrcweir public: 47cdf0e10cSrcweir // XServiceInfo - static version 48cdf0e10cSrcweir static ::rtl::OUString SAL_CALL getImplementationName_static(); 49cdf0e10cSrcweir static ::com::sun::star::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames_static(); 50cdf0e10cSrcweir static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> SAL_CALL Create( 51cdf0e10cSrcweir const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& context); 52cdf0e10cSrcweir 53cdf0e10cSrcweir static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> SAL_CALL Create( 54cdf0e10cSrcweir const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory>& sf); 55cdf0e10cSrcweir 56cdf0e10cSrcweir protected: 57cdf0e10cSrcweir OnLogRotateJob(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& context); 58cdf0e10cSrcweir OnLogRotateJob(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory>& sm); 59cdf0e10cSrcweir virtual ~OnLogRotateJob(); 60cdf0e10cSrcweir 61cdf0e10cSrcweir // XAsyncJob 62cdf0e10cSrcweir virtual void SAL_CALL executeAsync( 63cdf0e10cSrcweir const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue>& args, 64cdf0e10cSrcweir const ::com::sun::star::uno::Reference< ::com::sun::star::task::XJobListener>& listener) 65cdf0e10cSrcweir throw(::com::sun::star::uno::RuntimeException); 66cdf0e10cSrcweir 67cdf0e10cSrcweir // XServiceInfo 68cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL getImplementationName() 69cdf0e10cSrcweir throw(::com::sun::star::uno::RuntimeException); 70cdf0e10cSrcweir virtual sal_Bool SAL_CALL supportsService(const ::rtl::OUString& service_name) 71cdf0e10cSrcweir throw(::com::sun::star::uno::RuntimeException); 72cdf0e10cSrcweir virtual ::com::sun::star::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames() 73cdf0e10cSrcweir throw(::com::sun::star::uno::RuntimeException); 74cdf0e10cSrcweir 75cdf0e10cSrcweir private: 76cdf0e10cSrcweir const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory> m_ServiceFactory; 77cdf0e10cSrcweir }; 78cdf0e10cSrcweir #undef css 79cdf0e10cSrcweir } 80cdf0e10cSrcweir #endif 81