1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
26 #include <rtl/process.h>
27 #include <cppuhelper/bootstrap.hxx>
29 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
30 #include <com/sun/star/uno/XComponentContext.hpp>
32 using namespace ::cppu
;
33 using namespace ::com::sun::star::lang
;
34 using namespace ::com::sun::star::uno
;
39 sal_Bool result
= sal_True
;
42 Reference
<XComponentContext
> xComponentContext
= defaultBootstrap_InitialComponentContext();
44 Reference
<XMultiServiceFactory
> smgr(xComponentContext
->getServiceManager(), UNO_QUERY
);
46 for(sal_uInt32 i
= 0; i
< rtl_getAppCommandArgCount(); ++ i
) {
49 rtl_getAppCommandArg(i
, &arg
.pData
);
52 Reference
<XInterface
> xInterface
= smgr
->createInstance(arg
);
53 SAL_INFO("cppuhelper", "got the " << arg
<< " service " << xInterface
.get());
55 result
= result
&& (xInterface
.get() != 0);
59 catch(Exception
& exception
) {
60 OString message
= OUStringToOString(exception
.Message
, RTL_TEXTENCODING_ASCII_US
);
62 fprintf(stderr
, "an exception occurred: %s\n", message
.getStr());
65 SAL_INFO("extensions", "---------------------------------- " << result
);
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */