1*2722ceddSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*2722ceddSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*2722ceddSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*2722ceddSAndrew Rist * distributed with this work for additional information 6*2722ceddSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*2722ceddSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*2722ceddSAndrew Rist * "License"); you may not use this file except in compliance 9*2722ceddSAndrew Rist * with the License. You may obtain a copy of the License at 10*2722ceddSAndrew Rist * 11*2722ceddSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*2722ceddSAndrew Rist * 13*2722ceddSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*2722ceddSAndrew Rist * software distributed under the License is distributed on an 15*2722ceddSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*2722ceddSAndrew Rist * KIND, either express or implied. See the License for the 17*2722ceddSAndrew Rist * specific language governing permissions and limitations 18*2722ceddSAndrew Rist * under the License. 19*2722ceddSAndrew Rist * 20*2722ceddSAndrew Rist *************************************************************/ 21*2722ceddSAndrew Rist 22*2722ceddSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_desktop.hxx" 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include "dp_misc.h" 28cdf0e10cSrcweir #include "dp_platform.hxx" 29cdf0e10cSrcweir #include "rtl/ustring.hxx" 30cdf0e10cSrcweir #include "rtl/ustrbuf.hxx" 31cdf0e10cSrcweir #include "rtl/instance.hxx" 32cdf0e10cSrcweir #include "rtl/bootstrap.hxx" 33cdf0e10cSrcweir 34cdf0e10cSrcweir #define PLATFORM_ALL "all" 35cdf0e10cSrcweir #define PLATFORM_WIN_X86 "windows_x86" 36cdf0e10cSrcweir #define PLATFORM_LINUX_X86 "linux_x86" 37cdf0e10cSrcweir #define PLATFORM_LINUX_X86_64 "linux_x86_64" 38cdf0e10cSrcweir #define PLATFORM_KFREEBSD_X86 "kfreebsd_x86" 39cdf0e10cSrcweir #define PLATFORM_KFREEBSD_X86_64 "kfreebsd_x86_64" 40cdf0e10cSrcweir #define PLATFORM_LINUX_SPARC "linux_sparc" 41cdf0e10cSrcweir #define PLATFORM_LINUX_POWERPC "linux_powerpc" 42cdf0e10cSrcweir #define PLATFORM_LINUX_POWERPC64 "linux_powerpc64" 43cdf0e10cSrcweir #define PLATFORM_LINUX_ARM_EABI "linux_arm_eabi" 44cdf0e10cSrcweir #define PLATFORM_LINUX_ARM_OABI "linux_arm_oabi" 45cdf0e10cSrcweir #define PLATFORM_LINUX_MIPS_EL "linux_mips_el" 46cdf0e10cSrcweir #define PLATFORM_LINUX_MIPS_EB "linux_mips_eb" 47cdf0e10cSrcweir #define PLATFORM_LINUX_IA64 "linux_ia64" 48cdf0e10cSrcweir #define PLATFORM_LINUX_M68K "linux_m68k" 49cdf0e10cSrcweir #define PLATFORM_LINUX_S390 "linux_s390" 50cdf0e10cSrcweir #define PLATFORM_LINUX_S390x "linux_s390x" 51cdf0e10cSrcweir #define PLATFORM_LINUX_HPPA "linux_hppa" 52cdf0e10cSrcweir #define PLATFORM_LINUX_ALPHA "linux_alpha" 53cdf0e10cSrcweir 54cdf0e10cSrcweir 55cdf0e10cSrcweir 56cdf0e10cSrcweir #define PLATFORM_SOLARIS_SPARC "solaris_sparc" 57cdf0e10cSrcweir #define PLATFORM_SOLARIS_SPARC64 "solaris_sparc64" 58cdf0e10cSrcweir #define PLATFORM_SOLARIS_X86 "solaris_x86" 59cdf0e10cSrcweir #define PLATFORM_FREEBSD_X86 "freebsd_x86" 60cdf0e10cSrcweir #define PLATFORM_FREEBSD_X86_64 "freebsd_x86_64" 61cdf0e10cSrcweir #define PLATFORM_MACOSX_X86 "macosx_x86" 62cdf0e10cSrcweir #define PLATFORM_MACOSX_PPC "macosx_powerpc" 63cdf0e10cSrcweir #define PLATFORM_OS2_X86 "os2_x86" 64cdf0e10cSrcweir 65cdf0e10cSrcweir 66cdf0e10cSrcweir 67cdf0e10cSrcweir 68cdf0e10cSrcweir 69cdf0e10cSrcweir 70cdf0e10cSrcweir 71cdf0e10cSrcweir 72cdf0e10cSrcweir 73cdf0e10cSrcweir #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) 74cdf0e10cSrcweir using ::rtl::OUString; 75cdf0e10cSrcweir namespace css = ::com::sun::star; 76cdf0e10cSrcweir 77cdf0e10cSrcweir namespace dp_misc 78cdf0e10cSrcweir { 79cdf0e10cSrcweir namespace 80cdf0e10cSrcweir { 81cdf0e10cSrcweir struct StrOperatingSystem : 82cdf0e10cSrcweir public rtl::StaticWithInit<const OUString, StrOperatingSystem> { 83cdf0e10cSrcweir const OUString operator () () { 84cdf0e10cSrcweir OUString os( RTL_CONSTASCII_USTRINGPARAM("$_OS") ); 85cdf0e10cSrcweir ::rtl::Bootstrap::expandMacros( os ); 86cdf0e10cSrcweir return os; 87cdf0e10cSrcweir } 88cdf0e10cSrcweir }; 89cdf0e10cSrcweir 90cdf0e10cSrcweir struct StrCPU : 91cdf0e10cSrcweir public rtl::StaticWithInit<const OUString, StrCPU> { 92cdf0e10cSrcweir const OUString operator () () { 93cdf0e10cSrcweir OUString arch( RTL_CONSTASCII_USTRINGPARAM("$_ARCH") ); 94cdf0e10cSrcweir ::rtl::Bootstrap::expandMacros( arch ); 95cdf0e10cSrcweir return arch; 96cdf0e10cSrcweir } 97cdf0e10cSrcweir }; 98cdf0e10cSrcweir 99cdf0e10cSrcweir 100cdf0e10cSrcweir struct StrPlatform : public rtl::StaticWithInit< 101cdf0e10cSrcweir const OUString, StrPlatform> { 102cdf0e10cSrcweir const OUString operator () () { 103cdf0e10cSrcweir ::rtl::OUStringBuffer buf; 104cdf0e10cSrcweir buf.append( StrOperatingSystem::get() ); 105cdf0e10cSrcweir buf.append( static_cast<sal_Unicode>('_') ); 106cdf0e10cSrcweir OUString arch( RTL_CONSTASCII_USTRINGPARAM("$_ARCH") ); 107cdf0e10cSrcweir ::rtl::Bootstrap::expandMacros( arch ); 108cdf0e10cSrcweir buf.append( arch ); 109cdf0e10cSrcweir return buf.makeStringAndClear(); 110cdf0e10cSrcweir } 111cdf0e10cSrcweir }; 112cdf0e10cSrcweir 113cdf0e10cSrcweir bool checkOSandCPU(OUString const & os, OUString const & cpu) 114cdf0e10cSrcweir { 115cdf0e10cSrcweir return os.equals(StrOperatingSystem::get()) 116cdf0e10cSrcweir && cpu.equals(StrCPU::get()); 117cdf0e10cSrcweir } 118cdf0e10cSrcweir 119cdf0e10cSrcweir bool isValidPlatform(OUString const & token ) 120cdf0e10cSrcweir { 121cdf0e10cSrcweir bool ret = false; 122cdf0e10cSrcweir if (token.equals(OUSTR(PLATFORM_ALL))) 123cdf0e10cSrcweir ret = true; 124cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_WIN_X86))) 125cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Windows"), OUSTR("x86")); 126cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_X86))) 127cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("x86")); 128cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_X86_64))) 129cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("X86_64")); 130cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_KFREEBSD_X86))) 131cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("kFreeBSD"), OUSTR("x86")); 132cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_KFREEBSD_X86_64))) 133cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("kFreeBSD"), OUSTR("X86_64")); 134cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_SPARC))) 135cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("SPARC")); 136cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_POWERPC))) 137cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("PowerPC")); 138cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_POWERPC64))) 139cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("PowerPC_64")); 140cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_ARM_EABI))) 141cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("ARM_EABI")); 142cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_ARM_OABI))) 143cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("ARM_OABI")); 144cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_MIPS_EL))) 145cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("MIPS_EL")); 146cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_MIPS_EB))) 147cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("MIPS_EB")); 148cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_IA64))) 149cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("IA64")); 150cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_M68K))) 151cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("M68K")); 152cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_S390))) 153cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("S390")); 154cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_S390x))) 155cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("S390x")); 156cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_HPPA))) 157cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("HPPA")); 158cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_LINUX_ALPHA))) 159cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Linux"), OUSTR("ALPHA")); 160cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_SOLARIS_SPARC))) 161cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Solaris"), OUSTR("SPARC")); 162cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_SOLARIS_SPARC64))) 163cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Solaris"), OUSTR("SPARC64")); 164cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_SOLARIS_X86))) 165cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("Solaris"), OUSTR("x86")); 166cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_FREEBSD_X86))) 167cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("FreeBSD"), OUSTR("x86")); 168cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_FREEBSD_X86_64))) 169cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("FreeBSD"), OUSTR("X86_64")); 170cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_MACOSX_X86))) 171cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("MacOSX"), OUSTR("x86")); 172cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_MACOSX_PPC))) 173cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("MacOSX"), OUSTR("PowerPC")); 174cdf0e10cSrcweir else if (token.equals(OUSTR(PLATFORM_OS2_X86))) 175cdf0e10cSrcweir ret = checkOSandCPU(OUSTR("OS2"), OUSTR("x86")); 176cdf0e10cSrcweir else 177cdf0e10cSrcweir { 178cdf0e10cSrcweir OSL_ENSURE(0, "Extension Manager: The extension supports an unknown platform. " 179cdf0e10cSrcweir "Check the platform element in the descripion.xml"); 180cdf0e10cSrcweir ret = false; 181cdf0e10cSrcweir } 182cdf0e10cSrcweir return ret; 183cdf0e10cSrcweir } 184cdf0e10cSrcweir 185cdf0e10cSrcweir } // anon namespace 186cdf0e10cSrcweir //============================================================================= 187cdf0e10cSrcweir 188cdf0e10cSrcweir OUString const & getPlatformString() 189cdf0e10cSrcweir { 190cdf0e10cSrcweir return StrPlatform::get(); 191cdf0e10cSrcweir } 192cdf0e10cSrcweir 193cdf0e10cSrcweir bool platform_fits( OUString const & platform_string ) 194cdf0e10cSrcweir { 195cdf0e10cSrcweir sal_Int32 index = 0; 196cdf0e10cSrcweir for (;;) 197cdf0e10cSrcweir { 198cdf0e10cSrcweir const OUString token( 199cdf0e10cSrcweir platform_string.getToken( 0, ',', index ).trim() ); 200cdf0e10cSrcweir // check if this platform: 201cdf0e10cSrcweir if (token.equalsIgnoreAsciiCase( StrPlatform::get() ) || 202cdf0e10cSrcweir (token.indexOf( '_' ) < 0 && /* check OS part only */ 203cdf0e10cSrcweir token.equalsIgnoreAsciiCase( StrOperatingSystem::get() ))) 204cdf0e10cSrcweir { 205cdf0e10cSrcweir return true; 206cdf0e10cSrcweir } 207cdf0e10cSrcweir if (index < 0) 208cdf0e10cSrcweir break; 209cdf0e10cSrcweir } 210cdf0e10cSrcweir return false; 211cdf0e10cSrcweir } 212cdf0e10cSrcweir 213cdf0e10cSrcweir bool hasValidPlatform( css::uno::Sequence<OUString> const & platformStrings) 214cdf0e10cSrcweir { 215cdf0e10cSrcweir bool ret = false; 216cdf0e10cSrcweir for (sal_Int32 i = 0; i < platformStrings.getLength(); i++) 217cdf0e10cSrcweir { 218cdf0e10cSrcweir if (isValidPlatform(platformStrings[i])) 219cdf0e10cSrcweir { 220cdf0e10cSrcweir ret = true; 221cdf0e10cSrcweir break; 222cdf0e10cSrcweir } 223cdf0e10cSrcweir } 224cdf0e10cSrcweir return ret; 225cdf0e10cSrcweir } 226cdf0e10cSrcweir 227cdf0e10cSrcweir } 228cdf0e10cSrcweir 229