This file is indexed.

/usr/include/mircommon/mir/dispatch/multiplexing_dispatchable.h is in libmircommon-dev 0.31.1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
/*
 * Copyright © 2015 Canonical Ltd.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 2 or 3,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authored by: Christopher James Halse Rogers <christopher.halse.rogers@canonical.com>
 */

#ifndef MIR_DISPATCH_MULTIPLEXING_DISPATCHABLE_H_
#define MIR_DISPATCH_MULTIPLEXING_DISPATCHABLE_H_

#include "mir/dispatch/dispatchable.h"
#include "mir/posix_rw_mutex.h"

#include <functional>
#include <initializer_list>
#include <list>
#include <mutex>

#include <pthread.h>

namespace mir
{
namespace dispatch
{
/**
 * \brief How concurrent dispatch should be handled
 */
enum class DispatchReentrancy
{
    sequential,     /**< The dispatch function is guaranteed not to be called
                     *   while a thread is currently running it.
                     */
    reentrant       /**< The dispatch function may be called on multiple threads
                     *   simultaneously
                     */
};

/**
 * \brief An adaptor that combines multiple Dispatchables into a single Dispatchable
 * \note Instances are fully thread-safe.
 */
class MultiplexingDispatchable final : public Dispatchable
{
public:
    MultiplexingDispatchable();
    MultiplexingDispatchable(std::initializer_list<std::shared_ptr<Dispatchable>> dispatchees);
    virtual ~MultiplexingDispatchable() noexcept;

    MultiplexingDispatchable& operator=(MultiplexingDispatchable const&) = delete;
    MultiplexingDispatchable(MultiplexingDispatchable const&) = delete;

    Fd watch_fd() const override;
    bool dispatch(FdEvents events) override;
    FdEvents relevant_events() const override;

    /**
     * \brief Add a dispatchable to the adaptor
     * \param [in] dispatchee   Dispatchable to add. The Dispatchable's dispatch()
     *                          function will not be called reentrantly.
     */
    void add_watch(std::shared_ptr<Dispatchable> const& dispatchee);
    /**
     * \brief Add a dispatchable to the adaptor, specifying the reentrancy of dispatch()
     */
    void add_watch(std::shared_ptr<Dispatchable> const& dispatchee, DispatchReentrancy reentrancy);

    /**
     * \brief Add a simple callback to the adaptor
     * \param [in] fd       File descriptor to monitor for readability
     * \param [in] callback Callback to fire when \p fd becomes readable.
     *                      This callback is not called reentrantly.
     */
    void add_watch(Fd const& fd, std::function<void()> const& callback);

    /**
     * \brief Remove a watch from the dispatchable
     * \param [in] dispatchee   Dispatchable to remove
     */
    void remove_watch(std::shared_ptr<Dispatchable> const& dispatchee);

    /**
     * \brief Remove a watch by file-descriptor
     * \param [in] fd   File descriptor of watch to remove.
     */
    void remove_watch(Fd const& fd);
private:
    PosixRWMutex lifetime_mutex;
    std::list<std::pair<std::shared_ptr<Dispatchable>, bool>> dispatchee_holder;

    Fd epoll_fd;
};
}
}
#endif // MIR_DISPATCH_MULTIPLEXING_DISPATCHABLE_H_