Line data Source code
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 "dp_misc.h"
21 : #include "com/sun/star/uno/Exception.hpp"
22 : #include "com/sun/star/uno/XComponentContext.hpp"
23 : #include "com/sun/star/ucb/XCommandEnvironment.hpp"
24 : #include "com/sun/star/deployment/XPackage.hpp"
25 : #include "tools/resmgr.hxx"
26 : #include "rtl/ustring.hxx"
27 : #include "unotools/configmgr.hxx"
28 :
29 : #define APP_NAME "unopkg"
30 :
31 : namespace unopkg {
32 :
33 0 : inline ::com::sun::star::lang::Locale toLocale( ::rtl::OUString const & slang )
34 : {
35 0 : ::com::sun::star::lang::Locale locale;
36 0 : sal_Int32 nIndex = 0;
37 0 : locale.Language = slang.getToken( 0, '-', nIndex );
38 0 : locale.Country = slang.getToken( 0, '-', nIndex );
39 0 : locale.Variant = slang.getToken( 0, '-', nIndex );
40 0 : return locale;
41 : }
42 :
43 : struct DeploymentResMgr : public rtl::StaticWithInit< ResMgr *, DeploymentResMgr >
44 : {
45 0 : ResMgr * operator () () {
46 : return ResMgr::CreateResMgr(
47 0 : "deployment", toLocale( utl::ConfigManager::getLocale() ) );
48 : }
49 : };
50 :
51 : struct OptionInfo
52 : {
53 : char const * m_name;
54 : sal_uInt32 m_name_length;
55 : sal_Unicode m_short_option;
56 : bool m_has_argument;
57 : };
58 :
59 0 : struct LockFileException : public css::uno::Exception
60 : {
61 0 : LockFileException(::rtl::OUString const & sMessage) :
62 0 : css::uno::Exception(sMessage, css::uno::Reference< css::uno::XInterface > ()) {}
63 : };
64 :
65 : //==============================================================================
66 : ::rtl::OUString toString( OptionInfo const * info );
67 :
68 : //==============================================================================
69 : OptionInfo const * getOptionInfo(
70 : OptionInfo const * list,
71 : ::rtl::OUString const & opt, sal_Unicode copt = '\0' );
72 :
73 : //==============================================================================
74 : bool isOption( OptionInfo const * option_info, sal_uInt32 * pIndex );
75 :
76 : //==============================================================================
77 : bool readArgument(
78 : ::rtl::OUString * pValue, OptionInfo const * option_info,
79 : sal_uInt32 * pIndex );
80 :
81 : //==============================================================================
82 0 : inline bool readOption(
83 : bool * flag, OptionInfo const * option_info, sal_uInt32 * pIndex )
84 : {
85 0 : if (isOption( option_info, pIndex )) {
86 : OSL_ASSERT( flag != 0 );
87 0 : *flag = true;
88 0 : return true;
89 : }
90 0 : return false;
91 : }
92 : //==============================================================================
93 :
94 : /** checks if an argument is a bootstrap variable. These start with -env:. For example
95 : -env:UNO_JAVA_JFW_USER_DATA=file:///d:/user
96 : */
97 : bool isBootstrapVariable(sal_uInt32 * pIndex);
98 : //==============================================================================
99 : ::rtl::OUString const & getExecutableDir();
100 :
101 : //==============================================================================
102 : ::rtl::OUString const & getProcessWorkingDir();
103 :
104 : //==============================================================================
105 : ::rtl::OUString makeAbsoluteFileUrl(
106 : ::rtl::OUString const & sys_path, ::rtl::OUString const & base_url,
107 : bool throw_exc = true );
108 :
109 : //##############################################################################
110 :
111 : //==============================================================================
112 : css::uno::Reference<css::ucb::XCommandEnvironment> createCmdEnv(
113 : css::uno::Reference<css::uno::XComponentContext> const & xContext,
114 : ::rtl::OUString const & logFile,
115 : bool option_force_overwrite,
116 : bool option_verbose,
117 : bool option_suppressLicense);
118 : //==============================================================================
119 : void printf_packages(
120 : ::std::vector<
121 : css::uno::Reference<css::deployment::XPackage> > const & allExtensions,
122 : ::std::vector<bool> const & vecUnaccepted,
123 : css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv,
124 : sal_Int32 level = 0 );
125 :
126 : //##############################################################################
127 :
128 : //==============================================================================
129 : css::uno::Reference<css::uno::XComponentContext> getUNO(
130 : bool verbose, bool shared, bool bGui,
131 : css::uno::Reference<css::uno::XComponentContext> & out_LocalComponentContext);
132 :
133 : }
134 :
135 :
136 :
137 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|