LibreOffice Module desktop (master) 1
unopkg_shared.h
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 <com/sun/star/uno/XComponentContext.hpp>
21#include <com/sun/star/ucb/XCommandEnvironment.hpp>
22#include <com/sun/star/deployment/XPackage.hpp>
23#include <osl/diagnose.h>
24#include <rtl/ustring.hxx>
25
26#include <utility>
27#include <vector>
28
29#define APP_NAME "unopkg"
30
31namespace unopkg {
32
34{
35 char const * m_name;
36 sal_uInt32 m_name_length;
39};
40
42{
43 explicit LockFileException(OUString sMessage) :
44 Message(std::move(sMessage)) {}
45
46 OUString Message;
47};
48
49
50OUString toString( OptionInfo const * info );
51
52
54 OptionInfo const * list,
55 OUString const & opt );
56
57
58bool isOption( OptionInfo const * option_info, sal_uInt32 * pIndex );
59
60
61bool readArgument(
62 OUString * pValue, OptionInfo const * option_info,
63 sal_uInt32 * pIndex );
64
65
66inline bool readOption(
67 bool * flag, OptionInfo const * option_info, sal_uInt32 * pIndex )
68{
69 if (isOption( option_info, pIndex )) {
70 OSL_ASSERT( flag != nullptr );
71 *flag = true;
72 return true;
73 }
74 return false;
75}
76
77
81bool isBootstrapVariable(sal_uInt32 * pIndex);
82
83OUString const & getExecutableDir();
84
85
86OUString const & getProcessWorkingDir();
87
88
89OUString makeAbsoluteFileUrl(
90 OUString const & sys_path, OUString const & base_url );
91
92
93
94
95css::uno::Reference<css::ucb::XCommandEnvironment> createCmdEnv(
96 css::uno::Reference<css::uno::XComponentContext> const & xContext,
97 bool option_force_overwrite,
98 bool option_verbose,
99 bool option_suppressLicense);
100
102 std::vector<
103 css::uno::Reference<css::deployment::XPackage> > const & allExtensions,
104 std::vector<bool> const & vecUnaccepted,
105 css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv,
106 sal_Int32 level = 0 );
107
108
109
110
111css::uno::Reference<css::uno::XComponentContext> getUNO(
112 bool verbose, bool bGui, const OUString& sTempDir,
113 css::uno::Reference<css::uno::XComponentContext> & out_LocalComponentContext);
114
115}
116
117
118
119/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static uno::Reference< css::uno::XComponentContext > xContext
Definition: init.cxx:2642
Reference< XCommandEnvironment > createCmdEnv(Reference< XComponentContext > const &xContext, bool option_force_overwrite, bool option_verbose, bool option_suppress_license)
Reference< XComponentContext > getUNO(bool verbose, bool bGui, const OUString &sTempDir, Reference< XComponentContext > &out_localContext)
OUString toString(OptionInfo const *info)
Definition: unopkg_misc.cxx:55
bool isOption(OptionInfo const *option_info, sal_uInt32 *pIndex)
Definition: unopkg_misc.cxx:91
bool readOption(bool *flag, OptionInfo const *option_info, sal_uInt32 *pIndex)
Definition: unopkg_shared.h:66
OUString const & getProcessWorkingDir()
bool readArgument(OUString *pValue, OptionInfo const *option_info, sal_uInt32 *pIndex)
OUString const & getExecutableDir()
void printf_packages(std::vector< Reference< deployment::XPackage > > const &allExtensions, std::vector< bool > const &vecUnaccepted, Reference< XCommandEnvironment > const &xCmdEnv, sal_Int32 level)
bool isBootstrapVariable(sal_uInt32 *pIndex)
checks if an argument is a bootstrap variable.
OptionInfo const * getOptionInfo(OptionInfo const *list, OUString const &opt)
Definition: unopkg_misc.cxx:70
OUString makeAbsoluteFileUrl(OUString const &sys_path, OUString const &base_url)
OUString sMessage
LockFileException(OUString sMessage)
Definition: unopkg_shared.h:43
sal_uInt32 m_name_length
Definition: unopkg_shared.h:36
char const * m_name
Definition: unopkg_shared.h:35
sal_Unicode m_short_option
Definition: unopkg_shared.h:37
sal_uInt16 sal_Unicode