LibreOffice Module extensions (master) 1
updatefeedtest.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <cppuhelper/servicefactory.hxx>
22
23#include <com/sun/star/lang/XInitialization.hpp>
24
25
26#include <com/sun/star/ucb/UniversalContentBroker.hpp>
27#include <com/sun/star/deployment/UpdateInformationProvider.hpp>
28
29#include <sal/main.h>
30#include <osl/process.h>
31#include <sal/log.hxx>
32#include <stdio.h>
33
34namespace deployment = ::com::sun::star::deployment;
35namespace lang = ::com::sun::star::lang;
36namespace uno = ::com::sun::star::uno;
37namespace xml = ::com::sun::star::xml;
38
39
41{
42 (void) argv;
43 (void) argc;
44
45 if( osl_getCommandArgCount() != 1 )
46 {
47 fprintf(stderr, "Usage: updatefeedtest <url>\n");
48 return -1;
49 }
50
51 // create the initial component context
52 uno::Reference< uno::XComponentContext > rComponentContext = cppu::defaultBootstrap_InitialComponentContext();
53
54 // initialize UCB (for backwards compatibility, in case some code still uses
55 // plain createInstance w/o args directly to obtain an instance):
56 ucb::UniversalContentBroker::create(rComponentContext);
57
58 // retrieve the update information provider
59 uno::Reference< deployment::XUpdateInformationProvider > rUpdateInformationProvider =
60 deployment::UpdateInformationProvider::create( rComponentContext );
61
62 uno::Sequence< OUString > theURLs(1);
63 osl_getCommandArg( 0, &theURLs[0].pData );
64 // theURLs[0] = "http://localhost/~olli/atomfeed.xml";
65
66 OUString aExtension = "MyExtension";
67
68 try
69 {
70 uno::Sequence< uno::Reference< xml::dom::XElement > > theUpdateInfo =
71 rUpdateInformationProvider->getUpdateInformation( theURLs, aExtension );
72 }
73 catch( const uno::Exception & )
74 {
75 TOOLS_WARN_EXCEPTION("extensions.update", "");
76 }
77 catch( ... )
78 {
79 SAL_WARN("extensions.update", "exception of undetermined type caught" );
80 }
81
82
83 return 0;
84}
85
86/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define TOOLS_WARN_EXCEPTION(area, stream)
#define SAL_WARN(area, stream)
std::unique_ptr< sal_Int32[]> pData
CPPUHELPER_DLLPUBLIC css::uno::Reference< css::uno::XComponentContext > SAL_CALL defaultBootstrap_InitialComponentContext()
SAL_IMPLEMENT_MAIN()