Coverage Report

Created: 2025-12-08 09:28

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/desktop/source/deployment/inc/dp_interact.h
Line
Count
Source
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 <config_options.h>
23
#include <rtl/ref.hxx>
24
#include <cppuhelper/implbase.hxx>
25
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
26
#include <com/sun/star/task/XAbortChannel.hpp>
27
#include <utility>
28
#include "dp_misc_api.hxx"
29
30
namespace dp_misc
31
{
32
33
inline void progressUpdate(
34
    OUString const & status,
35
    css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv )
36
0
{
37
0
    if (xCmdEnv.is()) {
38
0
        css::uno::Reference<css::ucb::XProgressHandler> xProgressHandler(
39
0
            xCmdEnv->getProgressHandler() );
40
0
        if (xProgressHandler.is()) {
41
0
            xProgressHandler->update( css::uno::Any(status) );
42
0
        }
43
0
    }
44
0
}
45
46
47
class ProgressLevel
48
{
49
    css::uno::Reference<css::ucb::XProgressHandler> m_xProgressHandler;
50
51
public:
52
    inline ~ProgressLevel();
53
    inline ProgressLevel(
54
        css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv,
55
        OUString const & status );
56
57
    inline void update( OUString const & status ) const;
58
    inline void update( css::uno::Any const & status ) const;
59
};
60
61
62
inline ProgressLevel::ProgressLevel(
63
    css::uno::Reference< css::ucb::XCommandEnvironment > const & xCmdEnv,
64
    OUString const & status )
65
0
{
66
0
    if (xCmdEnv.is())
67
0
        m_xProgressHandler = xCmdEnv->getProgressHandler();
68
0
    if (m_xProgressHandler.is())
69
0
        m_xProgressHandler->push( css::uno::Any(status) );
70
0
}
71
72
73
inline ProgressLevel::~ProgressLevel()
74
0
{
75
0
    if (m_xProgressHandler.is())
76
0
        m_xProgressHandler->pop();
77
0
}
78
79
80
inline void ProgressLevel::update( OUString const & status ) const
81
0
{
82
0
    if (m_xProgressHandler.is())
83
0
        m_xProgressHandler->update( css::uno::Any(status) );
84
0
}
85
86
87
inline void ProgressLevel::update( css::uno::Any const & status ) const
88
0
{
89
0
    if (m_xProgressHandler.is())
90
0
        m_xProgressHandler->update( status );
91
0
}
92
93
94
95
/** @return true if ia handler is present and any selection has been chosen
96
 */
97
DESKTOP_DEPLOYMENTMISC_DLLPUBLIC bool interactContinuation(
98
    css::uno::Any const & request,
99
    css::uno::Type const & continuation,
100
    css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv,
101
    bool * pcont, bool * pabort );
102
103
104
105
106
class UNLESS_MERGELIBS(DESKTOP_DEPLOYMENTMISC_DLLPUBLIC) AbortChannel :
107
    public ::cppu::WeakImplHelper<css::task::XAbortChannel>
108
{
109
    bool m_aborted;
110
    css::uno::Reference<css::task::XAbortChannel> m_xNext;
111
112
public:
113
0
    AbortChannel() : m_aborted( false ) {}
114
    static AbortChannel * get(
115
        css::uno::Reference<css::task::XAbortChannel> const & xAbortChannel )
116
0
        { return static_cast<AbortChannel *>(xAbortChannel.get()); }
117
118
0
    bool isAborted() const { return m_aborted; }
119
120
    // XAbortChannel
121
    virtual void SAL_CALL sendAbort() override;
122
123
    class SAL_DLLPRIVATE Chain
124
    {
125
        const ::rtl::Reference<AbortChannel> m_abortChannel;
126
    public:
127
        Chain(
128
            ::rtl::Reference<AbortChannel> abortChannel,
129
            css::uno::Reference<css::task::XAbortChannel> const & xNext )
130
0
            : m_abortChannel(std::move( abortChannel ))
131
0
            { if (m_abortChannel.is()) m_abortChannel->m_xNext = xNext; }
132
        ~Chain()
133
0
            { if (m_abortChannel.is()) m_abortChannel->m_xNext.clear(); }
134
    };
135
    friend class Chain;
136
};
137
138
}
139
140
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */