This file is indexed.

/usr/include/votca/tools/parsexml.h is in libvotca-tools-dev 1.2.4-1.1.

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
/*
 * Copyright 2009-2011 The VOTCA Development Team (http://www.votca.org)
 *
 * 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 _PARSEXML_H
#define _PARSEXML_H

#include <string>
#include <stack>
#include <map>
#include <list>

namespace votca { namespace tools {
    
using namespace std;

/**
    \brief XML SAX parser (wrapper for expat)

    This class is a wrapper for the expat SAX interface. Parsing the xml file
    is done via callback functions (Element handlers).

    The class implements contains a stupid implementation for functors to
    handle callbacks to memeber functions but there is lots of room for improvement.
    So far only callbacks for start element handlers is implemented. The extension
    to EndElement handler (to signal if an element is close) is similar and straight
    forward. So far it was not needed and was therefore not done.
 
  */
class ParseXML {
public:
    /// constructor
    ParseXML() {}
    /// destructor
    ~ParseXML() {}

    /**
     * \brief open an XML file and start parsing it
     * @param _filename file to read
     *
     * This functions opens a file and parses the nodes of an XML file.
     * Make sure to set the corresponding element handler before to redirect
     * element handling.
     */
    void Open(const string &_filename);

    /**
     * \brief Set handler for next element (only member functions possible)
     * @param object instance of class which for callback
     * @param fkt member function for callback
     *
     * This function always has to be called after processing an element to
     * say what is coming next. Optionally call IgnoreElement
     */
    template<typename T>
    void NextHandler(T *object, void (T::*fkt)(const string &, map<string, string> &));

    /**
     * \brief Ignore the content of this elements and all of its childs
     */
    void IgnoreChilds();
    
private:
    // virtual void ParseRoot(const string &el, map<string, string> &attr);
    void ParseIgnore(const string &el, map<string, string> &attr);

    
    /// end element callback for xml parser
    void StartElemHndl(const string &el, map<string, string> &attr);
    /// end element callback for xml parser
    void EndElemHndl(const string &el);


    class Functor {
    public:
        Functor() {}
        virtual void operator()(const string &, map<string, string> &) = 0;
    };

    template<typename T>
    class FunctorMember : public Functor {
    public:
        typedef void (T::*fkt_t)(const string &, map<string, string> &);

        FunctorMember(T* cls, fkt_t fkt) : _cls(cls), _fkt(fkt) {}
        
        void operator()(const string &el, map<string, string> & attr) {
            (_cls->*_fkt)(el, attr);
        }
        
    private:
        T* _cls;
        fkt_t _fkt;
    };

    stack<Functor *> _stack_handler;
    Functor *_handler;

    friend void start_hndl(void *data, const char *el, const char **attr);
    friend void end_hndl(void *data, const char *el);
};

inline void ParseXML::IgnoreChilds()
{
    NextHandler(this, &ParseXML::ParseIgnore);
}

template<typename T>
inline void ParseXML::NextHandler(T *object, void (T::*fkt)(const string &, map<string, string> &))
{
    _handler = dynamic_cast<Functor*>(new FunctorMember<T>(object, fkt));
    _stack_handler.push(_handler);
}

}}

#endif