This file is indexed.

/usr/include/xmltooling/io/GenericRequest.h is in libxmltooling-dev 1.6.4-1ubuntu2.

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
/**
 * Licensed to the University Corporation for Advanced Internet
 * Development, Inc. (UCAID) under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 *
 * UCAID licenses this file to you 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.
 */

/**
 * @file xmltooling/io/GenericRequest.h
 *
 * Interface to generic protocol requests that transport XML messages.
 */

#ifndef __xmltooling_genreq_h__
#define __xmltooling_genreq_h__

#include <xmltooling/unicode.h>

#include <map>
#include <string>
#include <vector>

#ifndef XMLTOOLING_NO_XMLSEC
# include <xsec/enc/XSECCryptoX509.hpp>
#endif

namespace xmltooling {

#if defined (_MSC_VER)
    #pragma warning( push )
    #pragma warning( disable : 4251 )
#endif

    /**
     * Interface to generic protocol requests that transport XML messages.
     *
     * <p>This interface need not be threadsafe.
     */
    class XMLTOOL_API GenericRequest {
        MAKE_NONCOPYABLE(GenericRequest);
    protected:
        GenericRequest();
    public:
        virtual ~GenericRequest();

        /**
         * Returns the URL scheme of the request (http, https, ftp, ldap, etc.)
         *
         * @return the URL scheme
         */
        virtual const char* getScheme() const=0;

        /**
         * Returns true iff the request is over a confidential channel.
         *
         * @return confidential channel indicator
         */
        virtual bool isSecure() const=0;

        /**
         * Returns hostname of service that received request.
         *
         * @return hostname of service
         */
        virtual const char* getHostname() const=0;

        /**
         * Returns incoming port.
         *
         * @return  incoming port
         */
        virtual int getPort() const=0;

        /**
         * Returns true iff the request port is the default port for the request protocol.
         *
         * @return  default port indicator
         */
        virtual bool isDefaultPort() const;

        /**
         * Returns the MIME type of the request, if known.
         *
         * @return the MIME type, or an empty string
         */
        virtual std::string getContentType() const=0;

        /**
         * Returns the length of the request body, if known.
         *
         * @return the content length, or -1 if unknown
         */
        virtual long getContentLength() const=0;

        /**
         * Returns the raw request body.
         *
         * @return the request body, or nullptr
         */
        virtual const char* getRequestBody() const=0;

        /**
         * Returns a decoded named parameter value from the request.
         * If a parameter has multiple values, only one will be returned.
         *
         * @param name  the name of the parameter to return
         * @return a single parameter value or nullptr
         */
        virtual const char* getParameter(const char* name) const=0;

        /**
         * Returns all of the decoded values of a named parameter from the request.
         * All values found will be returned.
         *
         * @param name      the name of the parameter to return
         * @param values    a vector in which to return pointers to the decoded values
         * @return  the number of values returned
         */
        virtual std::vector<const char*>::size_type getParameters(
            const char* name, std::vector<const char*>& values
            ) const=0;

        /**
         * Returns the transport-authenticated identity associated with the request,
         * if authentication is solely handled by the transport.
         *
         * @return the authenticated username or an empty string
         */
        virtual std::string getRemoteUser() const=0;

        /**
         * Gets the authentication type associated with the request.
         *
         * @return  the authentication type or nullptr
         */
        virtual std::string getAuthType() const {
            return "";
        }

        /**
         * Returns the IP address of the client.
         *
         * @return the client's IP address
         */
        virtual std::string getRemoteAddr() const=0;

        /**
         * Returns the chain of certificates sent by the client.
         * They are not guaranteed to be valid according to any particular definition.
         *
         * @return the client's certificate chain
         */
        virtual const
#ifndef XMLTOOLING_NO_XMLSEC
            std::vector<XSECCryptoX509*>&
#else
            std::vector<std::string>&
#endif
            getClientCertificates() const=0;

        /**
         * Converts a relative URL into an absolute one based on the properties of the request.
         *
         * @param url   input URL to convert, will be modified in place
         */
        virtual void absolutize(std::string& url) const;

        /**
         * Returns a language range to use in selecting language-specific
         * content for this request.
         * <p>The syntax is that of the HTTP 1.1 Accept-Language header, even
         * if the underlying request is not HTTP.
         *
         * @return an HTTP 1.1 syntax language range specifier
         */
        virtual std::string getLanguageRange() const {
            return "";
        }

        /**
         * Initializes the language matching process; call this method to begin the
         * matching process by calling the matchLang method.
         * <p>The language matching process is not thread-safe and must be externally
         * syncronized.
         *
         * @return  true iff language matching is possible
         */
        bool startLangMatching() const;

        /**
         * Continues the language matching process; additional calls to matchLang can
         * be done as long as this method returns true.
         * <p>The language matching process is not thread-safe and must be externally
         * syncronized.
         *
         * @return  true iff more ranges are available to match against
         */
        bool continueLangMatching() const;

        /**
         * Matches a language tag against the currently active range.
         * <p>The language matching process is not thread-safe and must be externally
         * syncronized.
         * 
         * @param tag   a language tag (e.g., an xml:lang value)
         * @return  true iff the tag matches the active range
         */
        bool matchLang(const XMLCh* tag) const;

        /**
         * Establish default handling of language ranges.
         * 
         * @param langFromClient    honor client's language preferences if any
         * @param defaultRange      priority list of space-delimited language tags to use by default
         */
        static void setLangDefaults(bool langFromClient, const XMLCh* defaultRange);

    private:
        typedef std::multimap< float,std::vector<xstring> > langrange_t;
        mutable langrange_t m_langRange;
        mutable langrange_t::const_reverse_iterator m_langRangeIter;
        static langrange_t m_defaultRange;
        static bool m_langFromClient;
    };

#if defined (_MSC_VER)
    #pragma warning( pop )
#endif

};

#endif /* __xmltooling_genreq_h__ */