This file is indexed.

/usr/include/class_loader/meta_object.h is in libclass-loader-dev 0.3.8-1build2.

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
/*
 * Copyright (c) 2012, Willow Garage, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *     * Neither the name of the Willow Garage, Inc. nor the names of its
 *       contributors may be used to endorse or promote products derived from
 *       this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

// Note: This header defines a simplication of Poco::MetaObject
// that allows us to tag MetaObjects with an associated library name.

#ifndef CLASS_LOADER__META_OBJECT_H_
#define CLASS_LOADER__META_OBJECT_H_

#include <console_bridge/console.h>
#include <typeinfo>
#include <string>
#include <vector>

#include "class_loader/console_bridge_compatibility.h"

namespace class_loader
{

class ClassLoader;  // Forward declaration

namespace class_loader_private
{

typedef std::vector<class_loader::ClassLoader *> ClassLoaderVector;

/**
 * @class AbstractMetaObjectBase
 * @brief A base class for MetaObjects that excludes a polymorphic type parameter. Subclasses are class templates though.
 */
class AbstractMetaObjectBase
{
public:
  /**
   * @brief Constructor for the class
   */
  AbstractMetaObjectBase(const std::string & class_name, const std::string & base_class_name);
  /**
   * @brief Destructor for the class. THIS MUST NOT BE VIRTUAL AND OVERRIDDEN BY
   * TEMPLATE SUBCLASSES, OTHERWISE THEY WILL PULL IN A REDUNDANT METAOBJECT
   * DESTRUCTOR OUTSIDE OF libclass_loader WITHIN THE PLUGIN LIBRARY! T
   */
  ~AbstractMetaObjectBase();

  /**
   * @brief Gets the literal name of the class.
   * @return The literal name of the class as a C-string.
   */
  std::string className() const;

  /**
   * @brief gets the base class for the class this factory represents
   */
  std::string baseClassName() const;
  /**
   * @brief Gets the name of the class as typeid(BASE_CLASS).name() would return it
   */
  std::string typeidBaseClassName() const;

  /**
   * @brief Gets the path to the library associated with this factory
   * @return Library path as a std::string
   */
  std::string getAssociatedLibraryPath();

  /**
   * @brief Sets the path to the library associated with this factory
   */
  void setAssociatedLibraryPath(std::string library_path);

  /**
   * @brief Associates a ClassLoader owner with this factory,
   * @param loader Handle to the owning ClassLoader.
   */
  void addOwningClassLoader(ClassLoader * loader);

  /**
   * @brief Removes a ClassLoader that is an owner of this factory
   * @param loader Handle to the owning ClassLoader.
   */
  void removeOwningClassLoader(const ClassLoader * loader);

  /**
   * @brief Indicates if the factory is within the usable scope of a ClassLoader
   * @param loader Handle to the owning ClassLoader.
   */
  bool isOwnedBy(const ClassLoader * loader);

  /**
   * @brief Indicates if the factory is within the usable scope of any ClassLoader
   */
  bool isOwnedByAnybody();

  /**
   * A vector of class loaders that own this metaobject
   */
  ClassLoaderVector getAssociatedClassLoaders();

protected:
  /**
   * This is needed to make base class polymorphic (i.e. have a vtable)
   */
  virtual void dummyMethod() {}

protected:
  ClassLoaderVector associated_class_loaders_;
  std::string associated_library_path_;
  std::string base_class_name_;
  std::string class_name_;
  std::string typeid_base_class_name_;
};

/**
 * @class AbstractMetaObject
 * @brief Abstract base class for factories where polymorphic type variable indicates base class for plugin interface.
 * @parm B The base class interface for the plugin
 */
template<class B>
class AbstractMetaObject : public AbstractMetaObjectBase
{
public:
  /**
   * @brief A constructor for this class
   * @param name The literal name of the class.
   */
  AbstractMetaObject(const std::string & class_name, const std::string & base_class_name)
  : AbstractMetaObjectBase(class_name, base_class_name)
  {
    AbstractMetaObjectBase::typeid_base_class_name_ = std::string(typeid(B).name());
  }

  /**
   * @brief Defines the factory interface that the MetaObject must implement.
   * @return A pointer of parametric type B to a newly created object.
   */
  virtual B * create() const = 0;
  /// Create a new instance of a class.
  /// Cannot be used for singletons.

private:
  AbstractMetaObject();
  AbstractMetaObject(const AbstractMetaObject &);
  AbstractMetaObject & operator=(const AbstractMetaObject &);
};

/**
 * @class MetaObject
 * @brief The actual factory.
 * @parm C The derived class (the actual plugin)
 * @parm B The base class interface for the plugin
 */
template<class C, class B>
class MetaObject : public AbstractMetaObject<B>
{
public:
  /**
   * @brief Constructor for the class
   */
  MetaObject(const std::string & class_name, const std::string & base_class_name)
  : AbstractMetaObject<B>(class_name, base_class_name)
  {
  }

  /**
   * @brief The factory interface to generate an object. The object has type C in reality, though a pointer of the base class type is returned.
   * @return A pointer to a newly created plugin with the base class type (type parameter B)
   */
  B * create() const
  {
    return new C;
  }
};

}  // namespace class_loader_private
}  // namespace class_loader

#endif  // CLASS_LOADER__META_OBJECT_H_