This file is indexed.

/usr/include/caf/message.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
/******************************************************************************
 *                       ____    _    _____                                   *
 *                      / ___|  / \  |  ___|    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_MESSAGE_HPP
#define CAF_MESSAGE_HPP

#include <tuple>
#include <type_traits>

#include "caf/atom.hpp"
#include "caf/config.hpp"
#include "caf/from_string.hpp"
#include "caf/make_counted.hpp"
#include "caf/skip_message.hpp"

#include "caf/detail/int_list.hpp"
#include "caf/detail/comparable.hpp"
#include "caf/detail/apply_args.hpp"
#include "caf/detail/type_traits.hpp"

#include "caf/detail/tuple_vals.hpp"
#include "caf/detail/message_data.hpp"
#include "caf/detail/implicit_conversions.hpp"

namespace caf {
class message_handler;

/**
 * Describes a fixed-length, copy-on-write, type-erased
 * tuple with elements of any type.
 */
class message {
 public:
  /**
   * Creates an empty message.
   */
  message() = default;

  /**
   * Move constructor.
   */
  message(message&&);

  /**
   * Copy constructor.
   */
  message(const message&) = default;

  /**
   * Move assignment.
   */
  message& operator=(message&&);

  /**
   * Copy assignment.
   */
  message& operator=(const message&) = default;

  /**
   * Returns the size of this message.
   */
  inline size_t size() const {
    return m_vals ? m_vals->size() : 0;
  }

  /**
   * Creates a new message with all but the first n values.
   */
  message drop(size_t n) const;

  /**
   * Creates a new message with all but the last n values.
   */
  message drop_right(size_t n) const;

  /**
   * Creates a new message from the first n values.
   */
  inline message take(size_t n) const {
    return n >= size() ? *this : drop_right(size() - n);
  }

  /**
   * Creates a new message from the last n values.
   */
  inline message take_right(size_t n) const {
    return n >= size() ? *this : drop(size() - n);
  }

  /**
   * Creates a new message of size `n` starting at the element at position `p`.
   */
  message slice(size_t p, size_t n) const;

  /**
   * Concatinate messages
   */
  template <class... Ts>
  static message concat(const Ts&... xs) {
    return concat_impl({xs.vals()...});
  }

  /**
   * Returns a mutable pointer to the element at position `p`.
   */
  void* mutable_at(size_t p);

  /**
   * Returns a const pointer to the element at position `p`.
   */
  const void* at(size_t p) const;

  /**
   * Returns the uniform type name for the element at position `p`.
   */
  const char* uniform_name_at(size_t p) const;

  /**
   * Returns @c true if `*this == other, otherwise false.
   */
  bool equals(const message& other) const;

  /**
   * Returns true if `size() == 0, otherwise false.
   */
  inline bool empty() const {
    return size() == 0;
  }

  /**
   * Returns the value at position `p` as const reference of type `T`.
   */
  template <class T>
  const T& get_as(size_t p) const {
    CAF_ASSERT(match_element(p, detail::type_nr<T>::value, &typeid(T)));
    return *reinterpret_cast<const T*>(at(p));
  }

  /**
   * Returns the value at position `p` as mutable reference of type `T`.
   */
  template <class T>
  T& get_as_mutable(size_t p) {
    CAF_ASSERT(match_element(p, detail::type_nr<T>::value, &typeid(T)));
    return *reinterpret_cast<T*>(mutable_at(p));
  }

  /**
   * Returns `handler(*this)`.
   */
  optional<message> apply(message_handler handler);

  /**
   * Filters this message by applying slices of it to `handler` and  returns
   * the remaining elements of this operation. Slices are generated in the
   * sequence `[0, size)`, `[0, size-1)`, `...` , `[1, size-1)`, `...`,
   * `[size-1, size)`. Whenever a slice matches, it is removed from the message
   * and the next slice starts at the *same* index on the reduced message.
   *
   * For example:
   *
   * ~~~
   * auto msg = make_message(1, 2.f, 3.f, 4);
   * // extract float and integer pairs
   * auto msg2 = msg.extract({
   *   [](float, float) { },
   *   [](int, int) { }
   * });
   * assert(msg2 == make_message(1, 4));
   * ~~~
   *
   * Step-by-step explanation:
   * - Slice 1: `(1, 2.f, 3.f, 4)`, no match
   * - Slice 2: `(1, 2.f, 3.f)`, no match
   * - Slice 3: `(1, 2.f)`, no match
   * - Slice 4: `(1)`, no match
   * - Slice 5: `(2.f, 3.f, 4)`, no match
   * - Slice 6: `(2.f, 3.f)`, *match*; new message is `(1, 4)`
   * - Slice 7: `(4)`, no match
   *
   * Slice 7 is `(4)`, i.e., does not contain the first element, because the
   * match on slice 6 occurred at index position 1. The function `extract`
   * iterates a message only once, from left to right.
   */
  message extract(message_handler handler) const;

  /**
   * Stores the name of a command line option ("<long name>[,<short name>]")
   * along with a description and a callback.
   */
  struct cli_arg {

    /**
     * Full name of this CLI argument using format "<long name>[,<short name>]"
     */
    std::string name;

    /**
     * Desciption of this CLI argument for the auto-generated help text.
     */
    std::string text;

    /**
     * Auto-generated helptext for this item.
     */
    std::string helptext;

    /**
     * Returns `true` on a match, `false` otherwise.
     */
    std::function<bool (const std::string&)> fun;

    /**
     * Creates a CLI argument without data.
     */
    cli_arg(std::string name, std::string text);

    /**
     * Creates a CLI argument storing its matched argument in `dest`.
     */
    cli_arg(std::string name, std::string text, std::string& dest);

    /**
     * Creates a CLI argument appending matched arguments to `dest`.
     */
    cli_arg(std::string name, std::string text, std::vector<std::string>& dest);

    /**
     * Creates a CLI argument for converting from strings,
     * storing its matched argument in `dest`.
     */
    template <class T>
    cli_arg(std::string name, std::string text, T& dest);

    /**
     * Creates a CLI argument for converting from strings,
     * appending matched arguments to `dest`.
     */
    template <class T>
    cli_arg(std::string name, std::string text, std::vector<T>& dest);
  };

  struct cli_res;

  using help_factory = std::function<std::string (const std::vector<cli_arg>&)>;

  /**
   * A simplistic interface for using `extract` to parse command line options.
   * Usage example:
   *
   * ~~~
   * int main(int argc, char** argv) {
   *   uint16_t port;
   *   string host = "localhost";
   *   auto res = message_builder(argv + 1, argv + argc).extract_opts({
   *     {"port,p", "set port", port},
   *     {"host,H", "set host (default: localhost)", host},
   *     {"verbose,v", "enable verbose mode"}
   *   });
   *   if (res.opts.count("help") > 0) {
   *     // CLI arguments contained "-h", "--help", or "-?" (builtin);
   *     // note: the help text has already been printed to stdout
   *     return 0;
   *   }
   *   if (!res.remainder.empty()) {
   *     // ... extract did not consume all CLI arguments ...
   *   }
   *   if (res.opts.count("verbose") > 0) {
   *     // ... enable verbose mode ...
   *   }
   *   // ...
   * }
   * ~~~
   * @param xs List of argument descriptors.
   * @param f Optional factory function to generate help text
   *          (overrides the default generator).
   * @returns A struct containing remainder
   *          (i.e. unmatched elements), a set containing the names of all
   *          used arguments, and the generated help text.
   * @throws std::invalid_argument if no name or more than one long name is set
   */
  cli_res extract_opts(std::vector<cli_arg> xs, help_factory f = nullptr) const;

  /**
   * Queries whether the element at position `p` is of type `T`.
   */
  template <class T>
  bool match_element(size_t p) const {
    const std::type_info* rtti = nullptr;
    if (detail::type_nr<T>::value == 0) {
      rtti = &typeid(T);
    }
    return match_element(p, detail::type_nr<T>::value, rtti);
  }

  /**
   * Queries whether the types of this message are `Ts...`.
   */
  template <class... Ts>
  bool match_elements() const {
    std::integral_constant<size_t, 0> p0;
    detail::type_list<Ts...> tlist;
    return size() == sizeof...(Ts) && match_elements_impl(p0, tlist);
  }

  /** @cond PRIVATE */

  using raw_ptr = detail::message_data*;

  using data_ptr = detail::message_data::cow_ptr;

  explicit message(const data_ptr& vals);

  inline data_ptr& vals() {
    return m_vals;
  }

  inline const data_ptr& vals() const {
    return m_vals;
  }

  inline const data_ptr& cvals() const {
    return m_vals;
  }

  inline uint32_t type_token() const {
    return m_vals ? m_vals->type_token() : 0xFFFFFFFF;
  }

  inline void force_detach() {
    m_vals.detach();
  }

  void reset(raw_ptr new_ptr = nullptr, bool add_ref = true);

  void swap(message& other);

  inline std::string tuple_type_names() const {
    return m_vals->tuple_type_names();
  }

  struct move_from_tuple_helper {
    template <class... Ts>
    inline message operator()(Ts&... xs) {
      return make_message(std::move(xs)...);
    }
  };

  template <class... Ts>
  inline message move_from_tuple(std::tuple<Ts...>&& tup) {
    move_from_tuple_helper f;
    return detail::apply_args(f, detail::get_indices(tup), tup);
  }

  bool match_element(size_t p, uint16_t tnr, const std::type_info* rtti) const;

  template <class T, class... Ts>
  bool match_elements(detail::type_list<T, Ts...> list) const {
    std::integral_constant<size_t, 0> p0;
    return size() == (sizeof...(Ts) + 1) && match_elements_impl(p0, list);
  }

  /** @endcond */

 private:
  template <size_t P>
  bool match_elements_impl(std::integral_constant<size_t, P>,
                           detail::type_list<>) const {
    return true; // end of recursion
  }

  template <size_t P, class T, class... Ts>
  bool match_elements_impl(std::integral_constant<size_t, P>,
                           detail::type_list<T, Ts...>) const {
    std::integral_constant<size_t, P + 1> next_p;
    detail::type_list<Ts...> next_list;
    return match_element<T>(P) && match_elements_impl(next_p, next_list);
  }

  message extract_impl(size_t start, message_handler handler) const;

  static message concat_impl(std::initializer_list<data_ptr> ptrs);

  data_ptr m_vals;
};

/**
 * Stores the result of `message::extract_opts`.
 */
struct message::cli_res {
  /**
   * Stores the remaining (unmatched) arguments.
   */
  message remainder;

  /**
   * Stores the names of all active options.
   */
  std::set<std::string> opts;

  /**
   * Stores the automatically generated help text.
   */
  std::string helptext;
};

/**
 * @relates message
 */
inline bool operator==(const message& lhs, const message& rhs) {
  return lhs.equals(rhs);
}

/**
 * @relates message
 */
inline bool operator!=(const message& lhs, const message& rhs) {
  return !(lhs == rhs);
}

/**
 * @relates message
 */
inline message operator+(const message& lhs, const message& rhs) {
  return message::concat(lhs, rhs);
}

/**
 * Unboxes atom constants, i.e., converts `atom_constant<V>` to `V`.
 * @relates message
 */
template <class T>
struct unbox_message_element {
  using type = T;
};

template <atom_value V>
struct unbox_message_element<atom_constant<V>> {
  using type = atom_value;
};

/**
 * Returns a new `message` containing the values `(x, xs...)`.
 * @relates message
 */
template <class V, class... Ts>
typename std::enable_if<
  !std::is_same<message, typename std::decay<V>::type>::value
  || (sizeof...(Ts) > 0),
  message
>::type
make_message(V&& x, Ts&&... xs) {
  using storage
    = detail::tuple_vals<typename unbox_message_element<
                           typename detail::strip_and_convert<V>::type
                         >::type,
                         typename unbox_message_element<
                           typename detail::strip_and_convert<Ts>::type
                         >::type...>;
  auto ptr = make_counted<storage>(std::forward<V>(x), std::forward<Ts>(xs)...);
  return message{detail::message_data::cow_ptr{std::move(ptr)}};
}

/**
 * Returns a copy of @p other.
 * @relates message
 */
inline message make_message(message other) {
  return std::move(other);
}

/******************************************************************************
 *                  template member function implementations                  *
 ******************************************************************************/

template <class T>
message::cli_arg::cli_arg(std::string nstr, std::string tstr, T& arg)
    : name(std::move(nstr)),
      text(std::move(tstr)) {
  fun = [&arg](const std::string& str) -> bool {
    auto res = from_string<T>(str);
    if (!res) {
      return false;
    }
    arg = *res;
    return true;
  };
}

template <class T>
message::cli_arg::cli_arg(std::string nstr, std::string tstr, std::vector<T>& arg)
    : name(std::move(nstr)),
      text(std::move(tstr)) {
  fun = [&arg](const std::string& str) -> bool {
    auto res = from_string<T>(str);
    if (!res) {
      return false;
    }
    arg.push_back(*res);
    return true;
  };
}

} // namespace caf

#endif // CAF_MESSAGE_HPP