This file is indexed.

/usr/share/openscenegraph/examples/osguserdata/osguserdata.cpp is in openscenegraph-examples 3.2.0~rc1-4.

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
/* OpenSceneGraph example, osguserdata.
*
*  Permission is hereby granted, free of charge, to any person obtaining a copy
*  of this software and associated documentation files (the "Software"), to deal
*  in the Software without restriction, including without limitation the rights
*  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
*  copies of the Software, and to permit persons to whom the Software is
*  furnished to do so, subject to the following conditions:
*
*  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
*  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
*  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
*  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
*  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
*  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
*  THE SOFTWARE.
*/


#include <osgViewer/Viewer>

#include <osgDB/ReadFile>
#include <osgDB/WriteFile>

#include <osg/io_utils>
#include <osg/ArgumentParser>
#include <osg/UserDataContainer>

#include <osg/ValueObject>

namespace MyNamespace
{

/** Provide an simple example of customizing the default UserDataContainer.*/
class MyUserDataContainer : public osg::DefaultUserDataContainer
{
    public:
        MyUserDataContainer() {}
        MyUserDataContainer(const MyUserDataContainer& udc, const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY):
            DefaultUserDataContainer(udc, copyop) {}

        META_Object(MyNamespace, MyUserDataContainer)

        virtual Object* getUserObject(unsigned int i)
        {
            OSG_NOTICE<<"MyUserDataContainer::getUserObject("<<i<<")"<<std::endl;
            return  osg::DefaultUserDataContainer::getUserObject(i);
        }

        virtual const Object* getUserObject(unsigned int i) const
        {
            OSG_NOTICE<<"MyUserDataContainer::getUserObject("<<i<<") const"<<std::endl;
            return osg::DefaultUserDataContainer::getUserObject(i);
        }


    protected:
        virtual ~MyUserDataContainer() {}
};

}

/** Provide basic example of providing serialization support for the MyUserDataContainer.*/
REGISTER_OBJECT_WRAPPER( MyUserDataContainer,
                         new MyNamespace::MyUserDataContainer,
                         MyNamespace::MyUserDataContainer,
                         "osg::Object osg::UserDataContainer osg::DefaultUserDataContainer MyNamespace::MyUserDataContainer" )
{
}

class MyGetValueVisitor : public osg::ValueObject::GetValueVisitor
{
    public:
        virtual void apply(bool value) { OSG_NOTICE<<" bool "<<value; }
        virtual void apply(char value) { OSG_NOTICE<<" char "<<value; }
        virtual void apply(unsigned char value) { OSG_NOTICE<<" uchar "<<value; }
        virtual void apply(short value) { OSG_NOTICE<<" short "<<value; }
        virtual void apply(unsigned short value) { OSG_NOTICE<<" ushort "<<value; }
        virtual void apply(int value) { OSG_NOTICE<<" int "<<value; }
        virtual void apply(unsigned int value) { OSG_NOTICE<<" uint "<<value; }
        virtual void apply(float value) { OSG_NOTICE<<" float "<<value; }
        virtual void apply(double value) { OSG_NOTICE<<" double "<<value; }
        virtual void apply(const std::string& value) { OSG_NOTICE<<" string "<<value; }
        virtual void apply(const osg::Vec2f& value) { OSG_NOTICE<<" Vec2f "<<value; }
        virtual void apply(const osg::Vec3f& value) { OSG_NOTICE<<" Vec3f "<<value; }
        virtual void apply(const osg::Vec4f& value) { OSG_NOTICE<<" Vec4f "<<value; }
        virtual void apply(const osg::Vec2d& value) { OSG_NOTICE<<" Vec2d "<<value; }
        virtual void apply(const osg::Vec3d& value) { OSG_NOTICE<<" Vec3d "<<value; }
        virtual void apply(const osg::Vec4d& value) { OSG_NOTICE<<" Vec4d "<<value; }
        virtual void apply(const osg::Quat& value) { OSG_NOTICE<<" Quat "<<value; }
        virtual void apply(const osg::Plane& value) { OSG_NOTICE<<" Plane "<<value; }
        virtual void apply(const osg::Matrixf& value) { OSG_NOTICE<<" Matrixf "<<value; }
        virtual void apply(const osg::Matrixd& value) { OSG_NOTICE<<" Matrixd "<<value; }
};

template<typename T>
class GetNumeric : public osg::ValueObject::GetValueVisitor
{
    public:

        GetNumeric():
            _set(false),
            _value(0) {}
        
        virtual void apply(bool value) { _value = value; _set = true; }
        virtual void apply(char value) { _value = value; _set = true;  }
        virtual void apply(unsigned char value) { _value = value; _set = true;  }
        virtual void apply(short value) { _value = value; _set = true;  }
        virtual void apply(unsigned short value) { _value = value; _set = true;  }
        virtual void apply(int value) { _value = value; _set = true;  }
        virtual void apply(unsigned int value) { _value = value; _set = true;  }
        virtual void apply(float value) { _value = value; _set = true;  }
        virtual void apply(double value) { _value = value; _set = true; }

        bool    _set;
        T       _value;
};

template<typename T>
T getNumeric(osg::Object* object)
{
    osg::ValueObject* bvo = dynamic_cast<osg::ValueObject*>(object);
    if (bvo)
    {
        GetNumeric<T> gn;
        if (bvo->get(gn) && gn._set) return gn._value;
    }
    return T(0);
}

void testResults(osg::Node* node)
{
    int j = 0;
    if (node->getUserValue("Int value",j))
    {
        OSG_NOTICE<<"Int value="<<j<<std::endl;
    }
    else
    {
        OSG_NOTICE<<"Int value not found"<<std::endl;
    }

    std::string readString;
    if (node->getUserValue("Status",readString))
    {
        OSG_NOTICE<<"Status="<<readString<<std::endl;
    }
    else
    {
        OSG_NOTICE<<"Status not found"<<std::endl;
    }

    float height=0.0f;
    if (node->getUserValue("Height",height))
    {
        OSG_NOTICE<<"Height="<<height<<std::endl;
    }
    else
    {
        OSG_NOTICE<<"Height not found"<<std::endl;
    }

    osg::UserDataContainer* udc = node->getUserDataContainer();
    if (udc)
    {
        OSG_NOTICE<<"udc->getNumUserObjects()="<<udc->getNumUserObjects()<<std::endl;
        for(unsigned int i=0; i<udc->getNumUserObjects(); ++i)
        {
            MyGetValueVisitor mgvv;
            osg::Object* userObject = udc->getUserObject(i);
            osg::ValueObject* valueObject = dynamic_cast<osg::ValueObject*>(userObject);
            OSG_NOTICE<<"userObject="<<userObject<<", className="<<userObject->className()<<", getName()="<<userObject->getName()<<" valueObject="<<valueObject<<" getNumeric "<<getNumeric<float>(userObject)<<" ";
            if (valueObject) valueObject->get(mgvv);
            OSG_NOTICE<<std::endl;
        }
    }
    
    OSG_NOTICE<<std::endl<<std::endl;
}


int main(int argc, char** argv)
{
    osg::ArgumentParser arguments(&argc, argv);
    
    osg::ref_ptr<osg::Group> node = new osg::Group;

    if (arguments.read("--MyUserDataContainer") || arguments.read("--mydc"))
    {
        node->setUserDataContainer(new MyNamespace::MyUserDataContainer);
    }
    
    int i = 10;
    node->setUserValue("Int value",i);

    std::string testString("All seems fine");
    node->setUserValue("Status",testString);

    node->setUserValue("Height",float(1.4));

    osg::ref_ptr<osg::Drawable> drawable = new osg::Geometry;
    drawable->setName("myDrawable");
    node->getOrCreateUserDataContainer()->addUserObject(drawable.get());

    node->setUserValue("fred",12);
    node->setUserValue("john",1.1);
    node->setUserValue("david",1.9f);
    node->setUserValue("char",char(65));
    node->setUserValue("matrixd",osg::Matrixd::translate(1.0,2.0,3.0));
    node->setUserValue("flag-on",true);
    node->setUserValue("flag-off",false);

    OSG_NOTICE<<"Testing results for values set directly on scene graph"<<std::endl;
    testResults(node.get());

    {
        osgDB::writeNodeFile(*node, "results.osgt");

        osg::ref_ptr<osg::Node> from_osgt = osgDB::readNodeFile("results.osgt");
        if (from_osgt.valid())
        {
            OSG_NOTICE<<std::endl<<"Testing results for values from scene graph read from .osgt file"<<std::endl;
            testResults(from_osgt.get());
        }
    }
    
    {
        osgDB::writeNodeFile(*node, "results.osgb");

        osg::ref_ptr<osg::Node> from_osgb = osgDB::readNodeFile("results.osgb");
        if (from_osgb.valid())
        {
            OSG_NOTICE<<std::endl<<"Testing results for values from scene graph read from .osgb file"<<std::endl;
            testResults(from_osgb.get());
        }
    }

    {
        osgDB::writeNodeFile(*node, "results.osgx");

        osg::ref_ptr<osg::Node> from_osgx = osgDB::readNodeFile("results.osgx");
        if (from_osgx.valid())
        {
            OSG_NOTICE<<std::endl<<"Testing results for values from scene graph read from .osgx file"<<std::endl;
            testResults(from_osgx.get());
        }
    }
    return 0;
}