This file is indexed.

/usr/include/caf/send.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/******************************************************************************
 *                       ____    _    _____                                   *
 *                      / ___|  / \  |  ___|    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_SEND_HPP
#define CAF_SEND_HPP

#include "caf/actor.hpp"
#include "caf/channel.hpp"
#include "caf/message.hpp"
#include "caf/actor_cast.hpp"
#include "caf/actor_addr.hpp"
#include "caf/message_id.hpp"
#include "caf/message_priority.hpp"
#include "caf/typed_actor.hpp"
#include "caf/system_messages.hpp"
#include "caf/check_typed_input.hpp"

namespace caf {

/**
 * Sends `to` a message under the identity of `from` with priority `prio`.
 */
template <class... Ts>
void send_as(const actor& from, message_priority prio,
             const channel& to, Ts&&... xs) {
  if (!to) {
    return;
  }
  message_id mid;
  to->enqueue(from.address(),
              prio == message_priority::high ? mid.with_high_priority() : mid,
              make_message(std::forward<Ts>(xs)...), nullptr);
}

/**
 * Sends `to` a message under the identity of `from`.
 */
template <class... Ts>
void send_as(const actor& from, const channel& to, Ts&&... xs) {
  send_as(from, message_priority::normal, to, std::forward<Ts>(xs)...);
}

/**
 * Sends `to` a message under the identity of `from` with priority `prio`.
 */
template <class... Sigs, class... Ts>
void send_as(const actor& from, message_priority prio,
             const typed_actor<Sigs...>& to, Ts&&... xs) {
  using token =
    detail::type_list<
      typename detail::implicit_conversions<
        typename std::decay<Ts>::type
      >::type...>;
  token tk;
  check_typed_input(to, tk);
  send_as(from, prio, actor_cast<channel>(to), std::forward<Ts>(xs)...);
}

/**
 * Sends `to` a message under the identity of `from`.
 */
template <class... Sigs, class... Ts>
void send_as(const actor& from, const typed_actor<Sigs...>& to, Ts&&... xs) {
  using token =
    detail::type_list<
      typename detail::implicit_conversions<
        typename std::decay<Ts>::type
      >::type...>;
  token tk;
  check_typed_input(to, tk);
  send_as(from, message_priority::normal,
          actor_cast<channel>(to), std::forward<Ts>(xs)...);
}

/**
 * Anonymously sends `to` a message with priority `prio`.
 */
template <class... Ts>
void anon_send(message_priority prio, const channel& to, Ts&&... xs) {
  send_as(invalid_actor, prio, to, std::forward<Ts>(xs)...);
}

/**
 * Anonymously sends `to` a message.
 */
template <class... Ts>
void anon_send(const channel& to, Ts&&... xs) {
  send_as(invalid_actor, message_priority::normal, to, std::forward<Ts>(xs)...);
}

/**
 * Anonymously sends `to` a message with priority `prio`.
 */
template <class... Sigs, class... Ts>
void anon_send(message_priority prio, const typed_actor<Sigs...>& to,
               Ts&&... xs) {
  using token =
    detail::type_list<
      typename detail::implicit_conversions<
        typename std::decay<Ts>::type
      >::type...>;
  token tk;
  check_typed_input(to, tk);
  anon_send(prio, actor_cast<channel>(to), std::forward<Ts>(xs)...);
}

/**
 * Anonymously sends `to` a message.
 */
template <class... Sigs, class... Ts>
void anon_send(const typed_actor<Sigs...>& to, Ts&&... xs) {
  using token =
    detail::type_list<
      typename detail::implicit_conversions<
        typename std::decay<Ts>::type
      >::type...>;
  token tk;
  check_typed_input(to, tk);
  anon_send(message_priority::normal, actor_cast<channel>(to),
            std::forward<Ts>(xs)...);
}

/**
 * Anonymously sends `to` an exit message.
 */
inline void anon_send_exit(const actor_addr& to, uint32_t reason) {
  if (!to){
    return;
  }
  auto ptr = actor_cast<actor>(to);
  ptr->enqueue(invalid_actor_addr, message_id{}.with_high_priority(),
               make_message(exit_msg{invalid_actor_addr, reason}), nullptr);
}

/**
 * Anonymously sends `to` an exit message.
 */
template <class ActorHandle>
void anon_send_exit(const ActorHandle& to, uint32_t reason) {
  anon_send_exit(to.address(), reason);
}

// <backward_compatibility version="0.9">
inline void send_tuple_as(const actor& from, const channel& to,
                          message msg) CAF_DEPRECATED;

inline void send_tuple_as(const actor& from, const channel& to,
                          message_priority prio, message msg) CAF_DEPRECATED;

inline void anon_send_tuple(const channel& to, message msg) CAF_DEPRECATED;

inline void anon_send_tuple(const channel& to, message_priority prio,
                            message msg) CAF_DEPRECATED;

inline void send_tuple_as(const actor& from, const channel& to, message msg) {
  send_as(from, to, std::move(msg));
}

inline void send_tuple_as(const actor& from, const channel& to,
                          message_priority prio, message msg) {
  send_as(from, prio, to, std::move(msg));
}

inline void anon_send_tuple(const channel& to, message msg) {
  send_as(invalid_actor, to, std::move(msg));
}

inline void anon_send_tuple(const channel& to, message_priority prio,
                            message msg) {
  send_as(invalid_actor, prio, to, std::move(msg));
}
// </backward_compatibility>

} // namespace caf

#endif // CAF_SEND_HPP