LibreOffice Module desktop (master) 1
dp_misc.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#pragma once
21
22#include <sal/config.h>
23
24#include <string_view>
25
26#include <osl/process.h>
27#include <com/sun/star/uno/XComponentContext.hpp>
28#include <com/sun/star/lang/XComponent.hpp>
29#include <com/sun/star/ucb/XCommandEnvironment.hpp>
30#include <dp_misc_api.hxx>
31
32namespace dp_misc {
33
34const char CR = 0x0d;
35const char LF = 0x0a;
36
37
38inline void try_dispose( css::uno::Reference< css::uno::XInterface> const & x )
39{
40 css::uno::Reference< css::lang::XComponent> xComp( x, css::uno::UNO_QUERY );
41 if (xComp.is())
42 xComp->dispose();
43}
44
45
46
47
49OUString expandUnoRcTerm( OUString const & term );
50
52OUString makeRcTerm( OUString const & url );
53
54
56OUString expandUnoRcUrl( OUString const & url );
57
58
59
67 std::u16string_view baseURL, OUString const & relPath );
68
69
76 std::u16string_view baseURL, OUString const & relPath );
77
78
80
81class AbortChannel;
82
84css::uno::Reference< css::uno::XInterface> resolveUnoURL(
85 OUString const & connectString,
86 css::uno::Reference< css::uno::XComponentContext> const & xLocalContext,
87 AbortChannel const * abortChannel = nullptr );
88
89
91
92
94oslProcess raiseProcess( OUString const & appURL,
95 css::uno::Sequence< OUString > const & args );
96
97
98
104void writeConsole(std::u16string_view sText);
105
110void writeConsoleError(std::u16string_view sText);
111
112
119OUString readConsole();
120
126void TRACE(OUString const & sText);
127
133 bool force,
134 css::uno::Reference<
135 css::ucb::XCommandEnvironment> const & xCmdEnv);
136
142 css::uno::Reference< css::uno::XComponentContext >
143 const & ctx);
144
145}
146
147/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define DESKTOP_DEPLOYMENTMISC_DLLPUBLIC
Definition: dp_misc_api.hxx:28
float x
OUString makeURL(std::u16string_view baseURL, OUString const &relPath_)
appends a relative path to a url.
Definition: dp_misc.cxx:253
void syncRepositories(bool force, Reference< ucb::XCommandEnvironment > const &xCmdEnv)
Definition: dp_misc.cxx:491
OUString makeRcTerm(OUString const &url)
Definition: dp_misc.cxx:301
OUString expandUnoRcUrl(OUString const &url)
Definition: dp_misc.cxx:315
OUString readConsole()
reads from the console.
Definition: dp_misc.cxx:473
const char CR
Definition: dp_misc.h:34
void try_dispose(css::uno::Reference< css::uno::XInterface > const &x)
Definition: dp_misc.h:38
void writeConsoleError(std::u16string_view sText)
writes the argument to the console using the error stream.
Definition: dp_misc.cxx:468
bool office_is_running()
Definition: dp_misc.cxx:331
void TRACE(OUString const &sText)
print the text to the console in a debug build.
Definition: dp_misc.cxx:486
Reference< XInterface > resolveUnoURL(OUString const &connectString, Reference< XComponentContext > const &xLocalContext, AbortChannel const *abortChannel)
Definition: dp_misc.cxx:429
OUString generateRandomPipeId()
Definition: dp_misc.cxx:410
OUString expandUnoRcTerm(OUString const &term_)
Definition: dp_misc.cxx:294
void writeConsole(std::u16string_view sText)
writes the argument string to the console.
Definition: dp_misc.cxx:463
oslProcess raiseProcess(OUString const &appURL, Sequence< OUString > const &args)
Definition: dp_misc.cxx:374
const char LF
Definition: dp_misc.h:35
void disposeBridges(Reference< css::uno::XComponentContext > const &ctx)
Definition: dp_misc.cxx:530
OUString makeURLAppendSysPathSegment(std::u16string_view baseURL, OUString const &segment)
appends a relative path to a url.
Definition: dp_misc.cxx:283