Add Marathi autocorrect
[LibreOffice.git] / desktop / source / pkgchk / unopkg / unopkg_shared.h
blobac83226290936ef6e52089d20dc8688f70e1b556
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 .
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>
26 #include <utility>
27 #include <vector>
29 #define APP_NAME "unopkg"
31 namespace unopkg {
33 struct OptionInfo
35 char const * m_name;
36 sal_uInt32 m_name_length;
37 sal_Unicode m_short_option;
38 bool m_has_argument;
41 struct LockFileException
43 explicit LockFileException(OUString sMessage) :
44 Message(std::move(sMessage)) {}
46 OUString Message;
50 OUString toString( OptionInfo const * info );
53 OptionInfo const * getOptionInfo(
54 OptionInfo const * list,
55 OUString const & opt );
58 bool isOption( OptionInfo const * option_info, sal_uInt32 * pIndex );
61 bool readArgument(
62 OUString * pValue, OptionInfo const * option_info,
63 sal_uInt32 * pIndex );
66 inline bool readOption(
67 bool * flag, OptionInfo const * option_info, sal_uInt32 * pIndex )
69 if (isOption( option_info, pIndex )) {
70 assert(flag != nullptr);
71 *flag = true;
72 return true;
74 return false;
78 /** checks if an argument is a bootstrap variable. These start with -env:. For example
79 -env:UNO_JAVA_JFW_USER_DATA=file:///d:/user
81 bool isBootstrapVariable(sal_uInt32 * pIndex);
83 OUString const & getExecutableDir();
86 OUString const & getProcessWorkingDir();
89 OUString makeAbsoluteFileUrl(
90 OUString const & sys_path, OUString const & base_url );
95 css::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);
101 void printf_packages(
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 );
111 css::uno::Reference<css::uno::XComponentContext> getUNO(
112 bool verbose, bool bGui, const OUString& sTempDir,
113 css::uno::Reference<css::uno::XComponentContext> & out_LocalComponentContext);
119 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */