This file is indexed.

/usr/include/caf/abstract_group.hpp is in libcaf-dev 0.13.2-3.

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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/******************************************************************************
 *                       ____    _    _____                                   *
 *                      / ___|  / \  |  ___|    C++                           *
 *                     | |     / _ \ | |_       Actor                         *
 *                     | |___ / ___ \|  _|      Framework                     *
 *                      \____/_/   \_|_|                                      *
 *                                                                            *
 * Copyright (C) 2011 - 2015                                                  *
 * Dominik Charousset <dominik.charousset (at) haw-hamburg.de>                *
 *                                                                            *
 * Distributed under the terms and conditions of the BSD 3-Clause License or  *
 * (at your option) under the terms and conditions of the Boost Software      *
 * License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE.       *
 *                                                                            *
 * If you did not receive a copy of the license files, see                    *
 * http://opensource.org/licenses/BSD-3-Clause and                            *
 * http://www.boost.org/LICENSE_1_0.txt.                                      *
 ******************************************************************************/

#ifndef CAF_ABSTRACT_GROUP_HPP
#define CAF_ABSTRACT_GROUP_HPP

#include <string>
#include <memory>

#include "caf/actor_addr.hpp"
#include "caf/attachable.hpp"
#include "caf/ref_counted.hpp"
#include "caf/abstract_channel.hpp"

namespace caf {
namespace detail {

class group_manager;
class peer_connection;

} // namespace detail
} // namespace caf

namespace caf {

class group;
class serializer;
class local_actor;
class deserializer;

/**
 * A multicast group.
 */
class abstract_group : public abstract_channel {
 public:
  friend class detail::group_manager;
  friend class detail::peer_connection;
  friend class local_actor;

  ~abstract_group();

  class subscription;

  struct subscription_token {
    intrusive_ptr<abstract_group> group;
    static constexpr size_t token_type = attachable::token::subscription;
  };

  class subscription_predicate {
   public:
    inline subscription_predicate(intrusive_ptr<abstract_group> group)
        : m_group(std::move(group)) {
      // nop
    }
    inline bool operator()(const attachable_ptr& ptr) {
      return ptr->matches(subscription_token{m_group});
    }
   private:
    intrusive_ptr<abstract_group> m_group;
  };

  // needs access to unsubscribe()
  friend class subscription;

  // unsubscribes its channel from the group on destruction
  class subscription : public attachable {
   public:
    subscription(const intrusive_ptr<abstract_group>& g);

    void actor_exited(abstract_actor* self, uint32_t reason) override;

    bool matches(const token& what) override;

    static inline attachable_ptr make(intrusive_ptr<abstract_group> ptr) {
      return attachable_ptr{new subscription(std::move(ptr))};
    }

    const intrusive_ptr<abstract_group>& group() const {
      return m_group;
    }

   private:
    intrusive_ptr<abstract_group> m_group;
  };

  /**
   * Interface for user-defined multicast implementations.
   */
  class module {
   public:
    module(std::string module_name);

    virtual ~module();

    /**
     * Stops all groups from this module.
     */
    virtual void stop() = 0;

    /**
     * Returns the name of this module implementation.
     * @threadsafe
     */
    const std::string& name();

    /**
     * Returns a pointer to the group associated with the name `group_name`.
     * @threadsafe
     */
    virtual group get(const std::string& group_name) = 0;

    virtual group deserialize(deserializer* source) = 0;

   private:
    std::string m_name;
  };

  using module_ptr = module*;
  using unique_module_ptr = std::unique_ptr<module>;

  virtual void serialize(serializer* sink) = 0;

  /**
   * Returns a string representation of the group identifier, e.g.,
   * "224.0.0.1" for IPv4 multicast or a user-defined string for local groups.
   */
  const std::string& identifier() const;

  module_ptr get_module() const;

  /**
   * Returns the name of the module.
   */
  const std::string& module_name() const;

  /**
   * Subscribes `who` to this group and returns a subscription object.
   */
  virtual attachable_ptr subscribe(const actor_addr& who) = 0;

  /**
   * Stops any background actors or threads and IO handles.
   */
  virtual void stop() = 0;

 protected:
  abstract_group(module_ptr module, std::string group_id);
  // called by subscription objects
  virtual void unsubscribe(const actor_addr& who) = 0;
  module_ptr m_module;
  std::string m_identifier;
};

/**
 * A smart pointer type that manages instances of {@link group}.
 * @relates group
 */
using abstract_group_ptr = intrusive_ptr<abstract_group>;

} // namespace caf

#endif // CAF_ABSTRACT_GROUP_HPP