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