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 #if ! defined INCLUDED_DP_MISC_H 29*cdf0e10cSrcweir #define INCLUDED_DP_MISC_H 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include "rtl/ustrbuf.hxx" 32*cdf0e10cSrcweir #include "rtl/instance.hxx" 33*cdf0e10cSrcweir #include "osl/mutex.hxx" 34*cdf0e10cSrcweir #include "osl/process.h" 35*cdf0e10cSrcweir #include "com/sun/star/uno/XComponentContext.hpp" 36*cdf0e10cSrcweir #include "com/sun/star/lang/XComponent.hpp" 37*cdf0e10cSrcweir #include "com/sun/star/lang/DisposedException.hpp" 38*cdf0e10cSrcweir #include "com/sun/star/deployment/XPackageRegistry.hpp" 39*cdf0e10cSrcweir #include "com/sun/star/ucb/XCommandEnvironment.hpp" 40*cdf0e10cSrcweir #include "com/sun/star/awt/XWindow.hpp" 41*cdf0e10cSrcweir #include "dp_misc_api.hxx" 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) 44*cdf0e10cSrcweir #define ARLEN(x) (sizeof (x) / sizeof *(x)) 45*cdf0e10cSrcweir 46*cdf0e10cSrcweir namespace dp_misc { 47*cdf0e10cSrcweir 48*cdf0e10cSrcweir const sal_Char CR = 0x0d; 49*cdf0e10cSrcweir const sal_Char LF = 0x0a; 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir //============================================================================== 52*cdf0e10cSrcweir class MutexHolder 53*cdf0e10cSrcweir { 54*cdf0e10cSrcweir mutable ::osl::Mutex m_mutex; 55*cdf0e10cSrcweir protected: 56*cdf0e10cSrcweir inline ::osl::Mutex & getMutex() const { return m_mutex; } 57*cdf0e10cSrcweir }; 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir //============================================================================== 60*cdf0e10cSrcweir inline void try_dispose( ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> const & x ) 61*cdf0e10cSrcweir { 62*cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent> xComp( x, ::com::sun::star::uno::UNO_QUERY ); 63*cdf0e10cSrcweir if (xComp.is()) 64*cdf0e10cSrcweir xComp->dispose(); 65*cdf0e10cSrcweir } 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir //############################################################################## 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir //============================================================================== 70*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 71*cdf0e10cSrcweir ::rtl::OUString expandUnoRcTerm( ::rtl::OUString const & term ); 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 74*cdf0e10cSrcweir ::rtl::OUString makeRcTerm( ::rtl::OUString const & url ); 75*cdf0e10cSrcweir 76*cdf0e10cSrcweir //============================================================================== 77*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 78*cdf0e10cSrcweir ::rtl::OUString expandUnoRcUrl( ::rtl::OUString const & url ); 79*cdf0e10cSrcweir 80*cdf0e10cSrcweir //============================================================================== 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir /** appends a relative path to a url. 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir The relative path must already be correctly encoded for use in an URL. 85*cdf0e10cSrcweir If the URL starts with vnd.sun.star.expand then the relative path will 86*cdf0e10cSrcweir be again encoded for use in an "expand" URL. 87*cdf0e10cSrcweir */ 88*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC ::rtl::OUString makeURL( 89*cdf0e10cSrcweir ::rtl::OUString const & baseURL, ::rtl::OUString const & relPath ); 90*cdf0e10cSrcweir 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir /** appends a relative path to a url. 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir This is the same as makeURL, but the relative Path must me a segment 95*cdf0e10cSrcweir of an system path. 96*cdf0e10cSrcweir */ 97*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC ::rtl::OUString makeURLAppendSysPathSegment( 98*cdf0e10cSrcweir ::rtl::OUString const & baseURL, ::rtl::OUString const & relPath ); 99*cdf0e10cSrcweir 100*cdf0e10cSrcweir //============================================================================== 101*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC ::rtl::OUString generateRandomPipeId(); 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir class AbortChannel; 104*cdf0e10cSrcweir //============================================================================== 105*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 106*cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> resolveUnoURL( 107*cdf0e10cSrcweir ::rtl::OUString const & connectString, 108*cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext> const & xLocalContext, 109*cdf0e10cSrcweir AbortChannel * abortChannel = 0 ); 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir //============================================================================== 112*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC bool office_is_running(); 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir //============================================================================== 115*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 116*cdf0e10cSrcweir oslProcess raiseProcess( ::rtl::OUString const & appURL, 117*cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::rtl::OUString > const & args ); 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir //============================================================================== 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir /** writes the argument string to the console. 122*cdf0e10cSrcweir On Linux/Unix/etc. it converts the UTF16 string to an ANSI string using 123*cdf0e10cSrcweir osl_getThreadTextEncoding() as target encoding. On Windows it uses WriteFile 124*cdf0e10cSrcweir with the standard out stream. unopkg.com reads the data and prints them out using 125*cdf0e10cSrcweir WriteConsoleW. 126*cdf0e10cSrcweir */ 127*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 128*cdf0e10cSrcweir void writeConsole(::rtl::OUString const & sText); 129*cdf0e10cSrcweir 130*cdf0e10cSrcweir /** writes the argument string to the console. 131*cdf0e10cSrcweir On Linux/Unix/etc. the string is passed into fprintf without any conversion. 132*cdf0e10cSrcweir On Windows the string is converted to UTF16 assuming the argument is UTF8 133*cdf0e10cSrcweir encoded. The UTF16 string is written to stdout with WriteFile. unopkg.com 134*cdf0e10cSrcweir reads the data and prints them out using WriteConsoleW. 135*cdf0e10cSrcweir */ 136*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 137*cdf0e10cSrcweir void writeConsole(::rtl::OString const & sText); 138*cdf0e10cSrcweir 139*cdf0e10cSrcweir /** writes the argument to the console using the error stream. 140*cdf0e10cSrcweir Otherwise the same as writeConsole. 141*cdf0e10cSrcweir */ 142*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 143*cdf0e10cSrcweir void writeConsoleError(::rtl::OUString const & sText); 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir /** writes the argument to the console using the error stream. 147*cdf0e10cSrcweir Otherwise the same as writeConsole. 148*cdf0e10cSrcweir */ 149*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 150*cdf0e10cSrcweir void writeConsoleError(::rtl::OString const & sText); 151*cdf0e10cSrcweir 152*cdf0e10cSrcweir 153*cdf0e10cSrcweir /** reads from the console. 154*cdf0e10cSrcweir On Linux/Unix/etc. it uses fgets to read char values and converts them to OUString 155*cdf0e10cSrcweir using osl_getThreadTextEncoding as target encoding. The returned string has a maximum 156*cdf0e10cSrcweir size of 1024 and does NOT include leading and trailing white space(applied OUString::trim()) 157*cdf0e10cSrcweir */ 158*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 159*cdf0e10cSrcweir ::rtl::OUString readConsole(); 160*cdf0e10cSrcweir 161*cdf0e10cSrcweir /** print the text to the console in a debug build. 162*cdf0e10cSrcweir The argument is forwarded to writeConsole. The function does not add new line. 163*cdf0e10cSrcweir The code is only executed if OSL_DEBUG_LEVEL > 1 164*cdf0e10cSrcweir */ 165*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 166*cdf0e10cSrcweir void TRACE(::rtl::OUString const & sText); 167*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 168*cdf0e10cSrcweir void TRACE(::rtl::OString const & sText); 169*cdf0e10cSrcweir 170*cdf0e10cSrcweir /** registers or revokes shared or bundled extensions which have been 171*cdf0e10cSrcweir recently added or removed. 172*cdf0e10cSrcweir */ 173*cdf0e10cSrcweir DESKTOP_DEPLOYMENTMISC_DLLPUBLIC 174*cdf0e10cSrcweir void syncRepositories(::com::sun::star::uno::Reference< 175*cdf0e10cSrcweir ::com::sun::star::ucb::XCommandEnvironment> const & xCmdEnv); 176*cdf0e10cSrcweir 177*cdf0e10cSrcweir } 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir #endif 180