Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/local/include/xapian-1.5/xapian/ |
Upload File : |
/** @file
* @brief Class for iterating over document values.
*/
/* Copyright (C) 2008,2009,2010,2011,2012,2013,2014,2015 Olly Betts
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef XAPIAN_INCLUDED_VALUEITERATOR_H
#define XAPIAN_INCLUDED_VALUEITERATOR_H
#if !defined XAPIAN_IN_XAPIAN_H && !defined XAPIAN_LIB_BUILD
# error Never use <xapian/valueiterator.h> directly; include <xapian.h> instead.
#endif
#include <iterator>
#include <string>
#include <xapian/attributes.h>
#include <xapian/derefwrapper.h>
#include <xapian/types.h>
#include <xapian/visibility.h>
namespace Xapian {
/// Class for iterating over document values.
class XAPIAN_VISIBILITY_DEFAULT ValueIterator {
void decref();
public:
/// Class representing the ValueIterator internals.
class Internal;
/// @private @internal Reference counted internals.
Internal * internal;
/** @private @internal Wrap an existing Internal. */
XAPIAN_VISIBILITY_INTERNAL
explicit ValueIterator(Internal *internal_);
/// Copy constructor.
ValueIterator(const ValueIterator & o);
/// Assignment.
ValueIterator & operator=(const ValueIterator & o);
/// Move constructor.
ValueIterator(ValueIterator && o)
: internal(o.internal) {
o.internal = nullptr;
}
/// Move assignment operator.
ValueIterator & operator=(ValueIterator && o) {
if (this != &o) {
if (internal) decref();
internal = o.internal;
o.internal = nullptr;
}
return *this;
}
/** Default constructor.
*
* Creates an uninitialised iterator, which can't be used before being
* assigned to, but is sometimes syntactically convenient.
*/
ValueIterator() noexcept
: internal(0) { }
/// Destructor.
~ValueIterator() {
if (internal) decref();
}
/// Return the value at the current position.
std::string operator*() const;
/// Advance the iterator to the next position.
ValueIterator & operator++();
/// Advance the iterator to the next position (postfix version).
DerefWrapper_<std::string> operator++(int) {
const std::string & value(**this);
operator++();
return DerefWrapper_<std::string>(value);
}
/** Return the docid at the current position.
*
* If we're iterating over values of a document, this method will throw
* Xapian::InvalidOperationError.
*/
Xapian::docid get_docid() const;
/** Return the value slot number for the current position.
*
* If the iterator is over all values in a slot, this returns that slot's
* number. If the iterator is over the values in a particular document,
* it returns the number of each slot in turn.
*/
Xapian::valueno get_valueno() const;
/** Advance the iterator to document id or value slot @a docid_or_slot.
*
* If this iterator is over values in a document, then this method
* advances the iterator to value slot @a docid_or_slot, or the first slot
* after it if there is no value in slot @a slot.
*
* If this iterator is over values in a particular slot, then this
* method advances the iterator to document id @a docid_or_slot, or the
* first document id after it if there is no value in the slot we're
* iterating over for document @a docid_or_slot.
*
* Note: The "two-faced" nature of this method is due to how C++
* overloading works. Xapian::docid and Xapian::valueno are both typedefs
* for the same unsigned integer type, so overloading can't distinguish
* them.
*
* @param docid_or_slot The docid/slot to advance to.
*/
void skip_to(Xapian::docid docid_or_slot);
/** Check if the specified docid occurs.
*
* The caller is required to ensure that the specified document id
* @a did actually exists in the database.
*
* This method acts like skip_to() if that can be done at little extra
* cost, in which case it then returns true. This is how
* glass databases behave because they store values in streams which allow
* for an efficient implementation of skip_to().
*
* Otherwise it simply checks if a particular docid is present. If it
* is, it returns true. If it isn't, it returns false, and leaves the
* position unspecified (and hence the result of calling methods which
* depend on the current position, such as get_docid(), are also
* unspecified). In this state, next() will advance to the first matching
* position after document @a did, and skip_to() will act as it would if
* the position was the first matching position after document @a did.
*
* Currently the inmemory and remote backends behave in the
* latter way because they don't support streamed values and so skip_to()
* must check each document it skips over which is significantly slower.
*
* @param docid The document id to check.
*/
#ifndef check
bool check(Xapian::docid docid);
#else
// The AssertMacros.h header in the OS X SDK currently defines a check
// macro. Apple have deprecated check() in favour of __Check() and
// plan to remove check() in a "future release", but for now prevent
// expansion of check by adding parentheses in the method prototype:
// https://www.opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h
//
// We do this conditionally, as these parentheses trip up SWIG's
// parser:
// https://github.com/swig/swig/issues/45
bool (check)(Xapian::docid docid);
#endif
/// Return a string describing this object.
std::string get_description() const;
/** @private @internal ValueIterator is what the C++ STL calls an
* input_iterator.
*
* The following typedefs allow std::iterator_traits<> to work so that
* this iterator can be used with the STL.
*
* These are deliberately hidden from the Doxygen-generated docs, as the
* machinery here isn't interesting to API users. They just need to know
* that Xapian iterator classes are compatible with the STL.
*/
// @{
/// @private
typedef std::input_iterator_tag iterator_category;
/// @private
typedef std::string value_type;
/// @private
typedef Xapian::doccount_diff difference_type;
/// @private
typedef std::string * pointer;
/// @private
typedef std::string & reference;
// @}
};
/// Equality test for ValueIterator objects.
inline bool
operator==(const ValueIterator& a, const ValueIterator& b) noexcept
{
// Use a pointer comparison - this ensures both that (a == a) and correct
// handling of end iterators (which we ensure have NULL internals).
return a.internal == b.internal;
}
/// Inequality test for ValueIterator objects.
inline bool
operator!=(const ValueIterator& a, const ValueIterator& b) noexcept
{
return !(a == b);
}
}
#endif // XAPIAN_INCLUDED_VALUEITERATOR_H