Bump version to 4.3-4
[LibreOffice.git] / cppuhelper / test / testdefaultbootstrapping.cxx
bloba61c5d930c9dc21c005c88a29052d2a55d3bb315
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
21 #include <sal/main.h>
25 #include <cstdio>
27 #include <rtl/process.h>
28 #include <cppuhelper/bootstrap.hxx>
30 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
31 #include <com/sun/star/uno/XComponentContext.hpp>
33 using namespace ::cppu;
34 using namespace ::com::sun::star::lang;
35 using namespace ::com::sun::star::uno;
36 using namespace ::rtl;
39 SAL_IMPLEMENT_MAIN()
41 sal_Bool result = sal_True;
43 try {
44 Reference<XComponentContext> xComponentContext = defaultBootstrap_InitialComponentContext();
46 Reference<XMultiServiceFactory> smgr(xComponentContext->getServiceManager(), UNO_QUERY);
48 for(sal_uInt32 i = 0; i < rtl_getAppCommandArgCount(); ++ i) {
49 OUString arg;
51 rtl_getAppCommandArg(i, &arg.pData);
52 if (!arg.isEmpty())
54 Reference<XInterface> xInterface = smgr->createInstance(arg);
55 OString tmp = OUStringToOString(arg, RTL_TEXTENCODING_ASCII_US);
56 #if OSL_DEBUG_LEVEL > 1
57 fprintf(stderr, "got the %s service %p\n", tmp.getStr(), xInterface.get());
58 #endif
60 result = result && (xInterface.get() != 0);
64 catch(Exception & exception) {
65 OString message = OUStringToOString(exception.Message, RTL_TEXTENCODING_ASCII_US);
67 fprintf(stderr, "an exception occurred: %s\n", message.getStr());
70 #if OSL_DEBUG_LEVEL > 1
71 OSL_TRACE("---------------------------------- %i", result);
72 #endif
74 return result;
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */