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 .
20 #include <cppuhelper/servicefactory.hxx>
21 #include <cppuhelper/bootstrap.hxx>
23 #include <com/sun/star/lang/XInitialization.hpp>
26 #include <com/sun/star/ucb/UniversalContentBroker.hpp>
27 #include <com/sun/star/deployment/UpdateInformationProvider.hpp>
30 #include <osl/process.h>
31 #include <sal/log.hxx>
34 namespace deployment
= css::deployment
;
35 namespace lang
= css::lang
;
36 namespace uno
= css::uno
;
37 namespace xml
= css::xml
;
45 if( osl_getCommandArgCount() != 1 )
47 fprintf(stderr
, "Usage: updatefeedtest <url>\n");
51 // create the initial component context
52 uno::Reference
< uno::XComponentContext
> rComponentContext
= cppu::defaultBootstrap_InitialComponentContext();
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
);
58 // retrieve the update information provider
59 uno::Reference
< deployment::XUpdateInformationProvider
> rUpdateInformationProvider
=
60 deployment::UpdateInformationProvider::create( rComponentContext
);
62 uno::Sequence
< OUString
> theURLs(1);
63 osl_getCommandArg( 0, &theURLs
[0].pData
);
64 // theURLs[0] = "http://localhost/~olli/atomfeed.xml";
66 OUString aExtension
= "MyExtension";
70 uno::Sequence
< uno::Reference
< xml::dom::XElement
> > theUpdateInfo
=
71 rUpdateInformationProvider
->getUpdateInformation( theURLs
, aExtension
);
73 catch( const uno::Exception
& )
75 TOOLS_WARN_EXCEPTION("extensions.update", "");
79 SAL_WARN("extensions.update", "exception of undetermined type caught" );
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */