This file is indexed.

/usr/include/SurgSim/Framework/Scene.h is in libopensurgsim-dev 0.7.0-5.

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
// This file is a part of the OpenSurgSim project.
// Copyright 2013-2016, SimQuest Solutions Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef SURGSIM_FRAMEWORK_SCENE_H
#define SURGSIM_FRAMEWORK_SCENE_H

#include <boost/thread/mutex.hpp>
#include <memory>
#include <string>
#include <vector>

#include "SurgSim/DataStructures/Groups.h"
#include "SurgSim/Framework/SceneElement.h"


namespace YAML
{
class Node;
}

namespace SurgSim
{
namespace Framework
{

class Logger;
class Runtime;

/// Scene. Basic Container for SceneElements
class Scene : public std::enable_shared_from_this<Scene>
{
public:

	/// Constructor.
	/// \param runtime The runtime to be used.
	explicit Scene(std::weak_ptr<Runtime> runtime);

	/// Destructor
	~Scene();

	/// Adds a scene element to the Scene, the SceneElement will have its initialize() function called.
	/// \param element The element.
	void addSceneElement(std::shared_ptr<SceneElement> element);

	/// Removes a scene element from the Scene
	/// \param element The element.
	void removeSceneElement(std::shared_ptr<SceneElement> element);

	/// Invokes addSceneElement() for each element in the list.
	/// \param elements the list of elements to be added.
	void addSceneElements(std::vector<std::shared_ptr<SceneElement>> elements);

	/// Gets all the scene elements in the scene.
	/// \return	The scene elements.
	const std::vector<std::shared_ptr<SceneElement>>& getSceneElements() const;

	/// Retrieve a SceneElement for this scene with the given name.
	/// \return A SceneElement with given name; Empty share_ptr<> will be returned if no such SceneElement found.
	const std::shared_ptr<SceneElement> getSceneElement(const std::string& name) const;

	/// Look through the scene to find a component of a named element
	/// \param elementName The name of the element to find
	/// \param componentName The name of the component to find
	/// \return the component that was found, nullptr if no component was found
	std::shared_ptr<Component> getComponent(const std::string& elementName, const std::string& componentName) const;

	/// Gets the runtime.
	/// \return runtime The runtime for this scene.
	std::shared_ptr<Runtime> getRuntime();

	/// Convert to a YAML::Node
	/// \return A node with all the public data of this instance
	YAML::Node encode() const;

	/// Pull data from a YAML::Node.
	/// \param node the node to decode.
	/// \return true if the decoding succeeded and the node was formatted correctly, false otherwise
	bool decode(const YAML::Node& node);

	/// \return the groups of the scene
	SurgSim::DataStructures::Groups<std::string, std::shared_ptr<SceneElement>>& getGroups();

private:

	/// Get a shared pointer to Scene.
	/// \return The shared pointer.
	std::shared_ptr<Scene> getSharedPtr();
	std::weak_ptr<Runtime> m_runtime;

	std::vector<std::shared_ptr<SceneElement>> m_elements;

	// Used in a const function, need to declare mutable
	mutable boost::mutex m_sceneElementsMutex;

	SurgSim::DataStructures::Groups<std::string, std::shared_ptr<SceneElement>> m_groups;

	std::shared_ptr<Framework::Logger> m_logger;
};

}; // namespace Framework
}; // namespace SurgSim

#endif // SURGSIM_FRAMEWORK_SCENE_H