/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc
2 by edam
- further initial development
1
/*
2
 * row.h
3
 *
4
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
 *
6
 * This file is part of sqlite3cc (hereafter referred to as "this program").
7
 * See http://www.waxworlds.org/edam/software/sqlite3cc for more information.
8
 *
9
 * This program is free software: you can redistribute it and/or modify
10
 * it under the terms of the GNU Lesser General Public License as published
11
 * by the Free Software Foundation, either version 3 of the License, or
12
 * (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU Lesser General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU Lesser General Public License
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
 */
22
23
#ifndef SQLITE3CC_ROW_H_
24
#define SQLITE3CC_ROW_H_
25
26
27
#include <sqlite3.h>
28
#include <boost/utility.hpp>
29
#include <boost/lexical_cast.hpp>
30
#include <boost/utility/value_init.hpp>
31
#include <cassert>
32
#include <iostream>
33
34
35
namespace sqlite
36
{
37
38
39
struct _null_t;
40
struct _set_index_t;
9 by edam
- added NEWS
41
class query;
2 by edam
- further initial development
42
43
44
/**
45
 * A result row from a query.
46
 *
47
 * The row is only valid until the next call to step() or reset() on the parent
48
 * query object, or until the parent query object is destructed. This may change
49
 * in future versions.
50
 */
51
class row
52
{
53
//______________________________________________________________________________
54
//                                                                 instantiation
55
protected:
56
9 by edam
- added NEWS
57
	friend class query;
58
2 by edam
- further initial development
59
	/**
9 by edam
- added NEWS
60
	 * Constructor that produces a valid row.
61
	 * @param the handle of the statement (query) that created this row
62
	 * @oaram the result index that is this row
2 by edam
- further initial development
63
	 */
64
	explicit row(
9 by edam
- added NEWS
65
		sqlite3_stmt *handle,
66
		unsigned long long index );
67
68
	/**
69
	 * Constructor that produces an invalid row.
70
	 * @param the handle of the statement (query) that created this row
71
	 */
72
	explicit row();
2 by edam
- further initial development
73
74
//______________________________________________________________________________
75
//                                                              public interface
76
public:
77
78
	/**
79
	 * Determine if this row is valid or not. If it is not valid, there are no
80
	 * more rows in the results of the query.
81
	 */
9 by edam
- added NEWS
82
	inline operator bool() const
83
	{
84
		return _index != std::numeric_limits< unsigned long long >::max();
85
	}
86
87
	/**
88
	 * get the index in to the results that is this row
89
	 * @return index
90
	 */
91
	inline unsigned long long index()
92
	{
93
		return _index;
2 by edam
- further initial development
94
	}
95
96
	/**
97
	 * Ascertain a column's type.
98
	 * @param index column index
99
	 * @return sqlite datatype code
100
	 * @see sqlite3_column_type()
101
	 */
102
	int column_type(
103
		unsigned int index );
104
105
	/**
106
	 * get the number of bytes in the result for a given column.
107
	 * @param index column index
108
	 * @return number of bytes in result
109
	 * @see sqlite3_column_bytes()
110
	 */
111
	unsigned int column_bytes(
112
		unsigned int index );
113
114
	/**
9 by edam
- added NEWS
115
	 * Get a value from the row.
2 by edam
- further initial development
116
	 * @param index column index
117
	 * @param value reference to object to set with the value
118
	 * @see sqlite3_column_*()
119
	 */
120
	template< class T >
121
	void column(
122
		unsigned int index,
123
		T &value )
124
	{
9 by edam
- added NEWS
125
		assert( index <
126
			static_cast< unsigned int >( sqlite3_column_count( _handle ) ) );
2 by edam
- further initial development
127
		const char *text = reinterpret_cast< const char * >(
9 by edam
- added NEWS
128
			sqlite3_column_text( _handle, index ) );
2 by edam
- further initial development
129
		if( text )
130
			value = boost::lexical_cast< T >( text );
131
		else
132
			value = boost::get( boost::value_initialized< T >() );
133
	}
134
135
	/**
9 by edam
- added NEWS
136
	 * Get a value from the row and return it.
137
	 * @param index column index
138
	 * @return the value
139
	 * @see sqlite3_column_*()
140
	 */
141
	template< class T >
142
	T column(
143
		unsigned int index )
144
	{
145
		T value;
146
		column( index, value );
147
		return value;
148
	}
149
150
	/**
2 by edam
- further initial development
151
	 * Stream operator is used to obtain values from a result row, fetching from
152
	 * each column in turn. In addition, the null and set_index() auto-column-
153
	 * getting manipulators can be used.
154
	 * @param value is a variable to store the retrieved data in
155
	 */
156
	template< class T >
157
	row &operator >>(
158
		T &value )
159
	{
160
		column( _column_index, value );
161
		_column_index++;
162
		return *this;
163
	}
164
165
	/**
166
	 * Stream operator for use with set_index().
167
	 */
168
	row &operator >>(
169
		_set_index_t t );
170
171
//______________________________________________________________________________
172
//                                                                implementation
173
protected:
174
9 by edam
- added NEWS
175
	/** the query's handle */
176
	sqlite3_stmt *_handle;
2 by edam
- further initial development
177
178
private:
179
180
	/** index used when auto-column-getting */
181
	unsigned int _column_index;
182
10 by edam
- cleaned up test-main
183
	/** the index of this row */
9 by edam
- added NEWS
184
	unsigned long long _index;
2 by edam
- further initial development
185
186
};
187
188
189
// template specialisations
190
template< >
191
row &row::operator >> < _null_t >(
192
	_null_t & );
193
194
9 by edam
- added NEWS
195
} // namespace sqlite
2 by edam
- further initial development
196
197
198
#endif /* SQLITE3CC_ROW_H_ */