2013-09-30 05:03:11 +00:00
|
|
|
/*!
|
|
|
|
Rust-Postgres is a pure-Rust frontend for the popular PostgreSQL database. It
|
|
|
|
exposes a high level interface in the vein of JDBC or Go's `database/sql`
|
|
|
|
package.
|
|
|
|
|
|
|
|
```rust
|
|
|
|
extern mod postgres;
|
2013-10-01 07:01:54 +00:00
|
|
|
extern mod extra;
|
|
|
|
|
|
|
|
use extra::time;
|
|
|
|
use extra::time::Timespec;
|
2013-09-30 05:03:11 +00:00
|
|
|
|
2013-10-01 07:01:54 +00:00
|
|
|
use postgres::{PostgresConnection, PostgresStatement};
|
2013-09-30 05:03:11 +00:00
|
|
|
use postgres::types::ToSql;
|
|
|
|
|
|
|
|
struct Person {
|
|
|
|
id: i32,
|
|
|
|
name: ~str,
|
2013-10-01 07:01:54 +00:00
|
|
|
time_created: Timespec,
|
2013-09-30 05:03:11 +00:00
|
|
|
data: Option<~[u8]>
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let conn = PostgresConnection::connect("postgres://postgres@localhost");
|
|
|
|
|
|
|
|
conn.update("CREATE TABLE person (
|
2013-10-01 07:01:54 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
name VARCHAR NOT NULL,
|
|
|
|
time_created TIMESTAMP NOT NULL,
|
|
|
|
data BYTEA
|
2013-09-30 05:03:11 +00:00
|
|
|
)", []);
|
|
|
|
let me = Person {
|
|
|
|
id: 0,
|
|
|
|
name: ~"Steven",
|
2013-10-01 07:01:54 +00:00
|
|
|
time_created: time::get_time(),
|
2013-09-30 05:03:11 +00:00
|
|
|
data: None
|
|
|
|
};
|
2013-10-01 07:01:54 +00:00
|
|
|
conn.update("INSERT INTO person (name, time_created, data)
|
2013-09-30 05:03:11 +00:00
|
|
|
VALUES ($1, $2, $3)",
|
2013-10-01 07:01:54 +00:00
|
|
|
[&me.name as &ToSql, &me.time_created as &ToSql,
|
2013-09-30 05:03:11 +00:00
|
|
|
&me.data as &ToSql]);
|
|
|
|
|
2013-10-01 07:01:54 +00:00
|
|
|
let stmt = conn.prepare("SELECT id, name, time_created, data FROM person");
|
2013-09-30 05:03:11 +00:00
|
|
|
for row in stmt.query([]) {
|
|
|
|
let person = Person {
|
|
|
|
id: row[0],
|
|
|
|
name: row[1],
|
2013-10-01 07:01:54 +00:00
|
|
|
time_created: row[2],
|
2013-09-30 05:03:11 +00:00
|
|
|
data: row[3]
|
|
|
|
};
|
2013-10-01 07:01:54 +00:00
|
|
|
println!("Found person {}", person.name);
|
2013-09-30 05:03:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
*/
|
|
|
|
|
2013-09-29 03:36:04 +00:00
|
|
|
#[desc="A native PostgreSQL driver"];
|
|
|
|
#[license="MIT"];
|
2013-09-03 02:08:37 +00:00
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
// Needed for rustdoc-ng
|
2013-09-30 03:00:27 +00:00
|
|
|
#[link(name="postgres", vers="0.1")];
|
2013-09-30 02:12:20 +00:00
|
|
|
|
2013-10-04 06:21:27 +00:00
|
|
|
#[doc(html_root_url="http://docs.octayn.net/postgres")];
|
|
|
|
|
2013-09-30 02:47:30 +00:00
|
|
|
#[warn(missing_doc)];
|
|
|
|
|
2013-08-22 05:52:15 +00:00
|
|
|
extern mod extra;
|
2013-08-04 02:17:32 +00:00
|
|
|
|
2013-09-04 05:42:24 +00:00
|
|
|
use extra::container::Deque;
|
2013-08-26 05:08:37 +00:00
|
|
|
use extra::digest::Digest;
|
2013-09-04 05:42:24 +00:00
|
|
|
use extra::ringbuf::RingBuf;
|
2013-08-26 05:08:37 +00:00
|
|
|
use extra::md5::Md5;
|
2013-08-27 04:19:24 +00:00
|
|
|
use extra::url::{UserInfo, Url};
|
2013-08-22 05:52:15 +00:00
|
|
|
use std::cell::Cell;
|
2013-08-28 06:23:36 +00:00
|
|
|
use std::hashmap::HashMap;
|
2013-09-09 05:40:08 +00:00
|
|
|
use std::rt::io::{Writer, io_error, Decorator};
|
2013-09-14 20:03:38 +00:00
|
|
|
use std::rt::io::buffered::BufferedStream;
|
2013-09-08 21:26:34 +00:00
|
|
|
use std::rt::io::net;
|
2013-09-28 18:14:06 +00:00
|
|
|
use std::rt::io::net::ip::{Port, SocketAddr};
|
2013-08-22 05:52:15 +00:00
|
|
|
use std::rt::io::net::tcp::TcpStream;
|
2013-09-16 05:35:30 +00:00
|
|
|
use std::task;
|
2013-09-20 04:06:45 +00:00
|
|
|
use std::util;
|
2013-08-04 02:17:32 +00:00
|
|
|
|
2013-09-15 04:37:20 +00:00
|
|
|
use error::hack::PostgresSqlState;
|
2013-09-09 05:40:08 +00:00
|
|
|
use message::{BackendMessage,
|
2013-09-12 05:02:32 +00:00
|
|
|
AuthenticationOk,
|
|
|
|
AuthenticationKerberosV5,
|
2013-09-09 05:40:08 +00:00
|
|
|
AuthenticationCleartextPassword,
|
|
|
|
AuthenticationMD5Password,
|
2013-09-12 05:02:32 +00:00
|
|
|
AuthenticationSCMCredential,
|
|
|
|
AuthenticationGSS,
|
|
|
|
AuthenticationSSPI,
|
2013-09-09 05:40:08 +00:00
|
|
|
BackendKeyData,
|
|
|
|
BindComplete,
|
|
|
|
CommandComplete,
|
|
|
|
DataRow,
|
|
|
|
EmptyQueryResponse,
|
|
|
|
ErrorResponse,
|
|
|
|
NoData,
|
|
|
|
NoticeResponse,
|
|
|
|
ParameterDescription,
|
|
|
|
ParameterStatus,
|
|
|
|
ParseComplete,
|
|
|
|
PortalSuspended,
|
|
|
|
ReadyForQuery,
|
|
|
|
RowDescription};
|
|
|
|
use message::{FrontendMessage,
|
|
|
|
Bind,
|
|
|
|
Close,
|
|
|
|
Describe,
|
|
|
|
Execute,
|
|
|
|
Parse,
|
|
|
|
PasswordMessage,
|
|
|
|
Query,
|
|
|
|
StartupMessage,
|
|
|
|
Sync,
|
|
|
|
Terminate};
|
|
|
|
use message::{RowDescriptionEntry, WriteMessage, ReadMessage};
|
2013-09-05 04:26:43 +00:00
|
|
|
use types::{PostgresType, ToSql, FromSql};
|
2013-07-25 07:10:18 +00:00
|
|
|
|
2013-09-17 05:48:34 +00:00
|
|
|
pub mod error;
|
|
|
|
pub mod pool;
|
2013-08-22 05:52:15 +00:00
|
|
|
mod message;
|
2013-09-17 05:48:34 +00:00
|
|
|
pub mod types;
|
2013-07-25 07:10:18 +00:00
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Trait for types that can handle Postgres notice messages
|
2013-09-12 02:57:26 +00:00
|
|
|
pub trait PostgresNoticeHandler {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Handle a Postgres notice message
|
2013-09-12 02:57:26 +00:00
|
|
|
fn handle(&mut self, notice: PostgresDbError);
|
|
|
|
}
|
|
|
|
|
2013-09-30 05:22:10 +00:00
|
|
|
/// A notice handler which logs at the `info` level.
|
2013-09-30 02:12:20 +00:00
|
|
|
///
|
|
|
|
/// This is the default handler used by a `PostgresConnection`.
|
2013-09-12 02:57:26 +00:00
|
|
|
pub struct DefaultNoticeHandler;
|
|
|
|
|
|
|
|
impl PostgresNoticeHandler for DefaultNoticeHandler {
|
|
|
|
fn handle(&mut self, notice: PostgresDbError) {
|
|
|
|
info2!("{}: {}", notice.severity, notice.message);
|
|
|
|
}
|
2013-08-28 06:23:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Reasons a new Postgres connection could fail
|
2013-08-27 04:19:24 +00:00
|
|
|
#[deriving(ToStr)]
|
|
|
|
pub enum PostgresConnectError {
|
2013-10-04 05:13:58 +00:00
|
|
|
/// The provided URL could not be parsed
|
2013-08-27 04:19:24 +00:00
|
|
|
InvalidUrl,
|
2013-10-04 05:13:58 +00:00
|
|
|
|
|
|
|
/// The URL was missing a user
|
2013-08-27 04:19:24 +00:00
|
|
|
MissingUser,
|
2013-10-04 05:13:58 +00:00
|
|
|
|
|
|
|
/// DNS lookup failed
|
2013-09-08 21:26:34 +00:00
|
|
|
DnsError,
|
2013-10-04 05:13:58 +00:00
|
|
|
|
|
|
|
/// There was an error opening a socket to the server
|
2013-09-08 21:26:34 +00:00
|
|
|
SocketError,
|
2013-10-04 05:13:58 +00:00
|
|
|
|
|
|
|
/// An error from the Postgres server itself
|
2013-08-27 05:06:53 +00:00
|
|
|
DbError(PostgresDbError),
|
2013-10-04 05:13:58 +00:00
|
|
|
|
|
|
|
/// A password was required but not provided in the URL
|
2013-08-27 04:19:24 +00:00
|
|
|
MissingPassword,
|
2013-10-04 05:13:58 +00:00
|
|
|
|
|
|
|
/// The Postgres server requested an authentication method not supported
|
|
|
|
/// by the driver
|
2013-08-27 04:19:24 +00:00
|
|
|
UnsupportedAuthentication
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Represents the position of an error in a query
|
2013-08-27 05:06:53 +00:00
|
|
|
#[deriving(ToStr)]
|
2013-08-29 04:24:43 +00:00
|
|
|
pub enum PostgresErrorPosition {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A position in the original query
|
2013-08-29 04:24:43 +00:00
|
|
|
Position(uint),
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A position in an internally generated query
|
2013-08-29 04:24:43 +00:00
|
|
|
InternalPosition {
|
2013-10-04 05:13:58 +00:00
|
|
|
/// The byte position
|
2013-08-29 04:24:43 +00:00
|
|
|
position: uint,
|
2013-10-04 05:13:58 +00:00
|
|
|
/// A query generated by the Postgres server
|
2013-08-29 04:24:43 +00:00
|
|
|
query: ~str
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Encapsulates a Postgres error or notice.
|
2013-08-29 04:24:43 +00:00
|
|
|
#[deriving(ToStr)]
|
|
|
|
pub struct PostgresDbError {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The field contents are ERROR, FATAL, or PANIC (in an error message),
|
|
|
|
/// or WARNING, NOTICE, DEBUG, INFO, or LOG (in a notice message), or a
|
|
|
|
/// localized translation of one of these.
|
2013-08-29 04:24:43 +00:00
|
|
|
severity: ~str,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The SQLSTATE code for the error.
|
2013-09-15 04:37:20 +00:00
|
|
|
code: PostgresSqlState,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The primary human-readable error message. This should be accurate but
|
|
|
|
/// terse (typically one line).
|
2013-08-29 04:24:43 +00:00
|
|
|
message: ~str,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// An optional secondary error message carrying more detail about the
|
|
|
|
/// problem. Might run to multiple lines.
|
2013-09-15 04:37:20 +00:00
|
|
|
detail: Option<~str>,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// An optional suggestion what to do about the problem. This is intended
|
|
|
|
/// to differ from Detail in that it offers advice (potentially
|
|
|
|
/// inappropriate) rather than hard facts. Might run to multiple lines.
|
2013-09-15 04:37:20 +00:00
|
|
|
hint: Option<~str>,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// An optional error cursor position into either the original query string
|
|
|
|
/// or an internally generated query.
|
2013-08-29 04:24:43 +00:00
|
|
|
position: Option<PostgresErrorPosition>,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// An indication of the context in which the error occurred. Presently
|
|
|
|
/// this includes a call stack traceback of active procedural language
|
|
|
|
/// functions and internally-generated queries. The trace is one entry per
|
|
|
|
/// line, most recent first.
|
2013-08-29 04:24:43 +00:00
|
|
|
where: Option<~str>,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The file name of the source-code location where the error was reported.
|
2013-08-29 04:24:43 +00:00
|
|
|
file: ~str,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The line number of the source-code location where the error was
|
|
|
|
/// reported.
|
2013-08-29 04:24:43 +00:00
|
|
|
line: uint,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The name of the source-code routine reporting the error.
|
2013-08-29 04:24:43 +00:00
|
|
|
routine: ~str
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PostgresDbError {
|
|
|
|
fn new(fields: ~[(u8, ~str)]) -> PostgresDbError {
|
|
|
|
// move_rev_iter is more efficient than move_iter
|
|
|
|
let mut map: HashMap<u8, ~str> = fields.move_rev_iter().collect();
|
|
|
|
PostgresDbError {
|
|
|
|
severity: map.pop(&('S' as u8)).unwrap(),
|
2013-09-15 04:37:20 +00:00
|
|
|
code: FromStr::from_str(map.pop(&('C' as u8)).unwrap()).unwrap(),
|
2013-08-29 04:24:43 +00:00
|
|
|
message: map.pop(&('M' as u8)).unwrap(),
|
2013-09-15 04:37:20 +00:00
|
|
|
detail: map.pop(&('D' as u8)),
|
|
|
|
hint: map.pop(&('H' as u8)),
|
2013-08-29 04:24:43 +00:00
|
|
|
position: match map.pop(&('P' as u8)) {
|
|
|
|
Some(pos) => Some(Position(FromStr::from_str(pos).unwrap())),
|
|
|
|
None => match map.pop(&('p' as u8)) {
|
|
|
|
Some(pos) => Some(InternalPosition {
|
|
|
|
position: FromStr::from_str(pos).unwrap(),
|
|
|
|
query: map.pop(&('q' as u8)).unwrap()
|
|
|
|
}),
|
|
|
|
None => None
|
|
|
|
}
|
|
|
|
},
|
|
|
|
where: map.pop(&('W' as u8)),
|
|
|
|
file: map.pop(&('F' as u8)).unwrap(),
|
|
|
|
line: FromStr::from_str(map.pop(&('L' as u8)).unwrap()).unwrap(),
|
|
|
|
routine: map.pop(&('R' as u8)).unwrap()
|
|
|
|
}
|
|
|
|
}
|
2013-09-15 05:56:52 +00:00
|
|
|
|
|
|
|
fn pretty_error(&self, query: &str) -> ~str {
|
|
|
|
match self.position {
|
|
|
|
Some(Position(pos)) =>
|
|
|
|
format!("{}: {} at position {} in\n{}", self.severity,
|
|
|
|
self.message, pos, query),
|
|
|
|
Some(InternalPosition { position, query: ref inner_query }) =>
|
|
|
|
format!("{}: {} at position {} in\n{} called from\n{}",
|
|
|
|
self.severity, self.message, position, *inner_query,
|
|
|
|
query),
|
|
|
|
None => format!("{}: {} in\n{}", self.severity, self.message,
|
|
|
|
query)
|
|
|
|
}
|
|
|
|
}
|
2013-08-29 04:24:43 +00:00
|
|
|
}
|
2013-08-27 05:06:53 +00:00
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
struct InnerPostgresConnection {
|
|
|
|
stream: BufferedStream<TcpStream>,
|
|
|
|
next_stmt_id: int,
|
|
|
|
notice_handler: ~PostgresNoticeHandler
|
2013-08-29 06:19:53 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
impl Drop for InnerPostgresConnection {
|
2013-09-18 05:06:47 +00:00
|
|
|
fn drop(&mut self) {
|
2013-08-29 06:19:53 +00:00
|
|
|
do io_error::cond.trap(|_| {}).inside {
|
2013-09-14 20:03:38 +00:00
|
|
|
self.write_messages([&Terminate]);
|
2013-08-29 06:19:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
impl InnerPostgresConnection {
|
|
|
|
fn try_connect(url: &str) -> Result<InnerPostgresConnection,
|
|
|
|
PostgresConnectError> {
|
2013-08-27 04:19:24 +00:00
|
|
|
let Url {
|
|
|
|
host,
|
|
|
|
port,
|
|
|
|
user,
|
|
|
|
path,
|
|
|
|
query: args,
|
|
|
|
_
|
|
|
|
}: Url = match FromStr::from_str(url) {
|
|
|
|
Some(url) => url,
|
|
|
|
None => return Err(InvalidUrl)
|
|
|
|
};
|
|
|
|
let user = match user {
|
|
|
|
Some(user) => user,
|
|
|
|
None => return Err(MissingUser)
|
|
|
|
};
|
|
|
|
let mut args = args;
|
|
|
|
|
2013-09-08 21:26:34 +00:00
|
|
|
let port = match port {
|
|
|
|
Some(port) => FromStr::from_str(port).unwrap(),
|
|
|
|
None => 5432
|
|
|
|
};
|
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
let stream = match InnerPostgresConnection::open_socket(host, port) {
|
2013-09-08 21:26:34 +00:00
|
|
|
Ok(stream) => stream,
|
|
|
|
Err(err) => return Err(err)
|
2013-08-27 04:19:24 +00:00
|
|
|
};
|
2013-08-22 05:52:15 +00:00
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
let mut conn = InnerPostgresConnection {
|
|
|
|
stream: BufferedStream::new(stream),
|
|
|
|
next_stmt_id: 0,
|
|
|
|
notice_handler: ~DefaultNoticeHandler as ~PostgresNoticeHandler
|
2013-08-18 03:42:40 +00:00
|
|
|
};
|
|
|
|
|
2013-09-06 03:49:19 +00:00
|
|
|
args.push((~"client_encoding", ~"UTF8"));
|
2013-09-09 04:33:41 +00:00
|
|
|
// Postgres uses the value of TimeZone as the time zone for TIMESTAMP
|
|
|
|
// WITH TIME ZONE values. Timespec converts to GMT internally.
|
|
|
|
args.push((~"TimeZone", ~"GMT"));
|
2013-08-27 05:06:53 +00:00
|
|
|
// We have to clone here since we need the user again for auth
|
2013-08-27 04:19:24 +00:00
|
|
|
args.push((~"user", user.user.clone()));
|
|
|
|
if !path.is_empty() {
|
|
|
|
args.push((~"database", path));
|
2013-08-04 02:17:32 +00:00
|
|
|
}
|
2013-09-14 20:03:38 +00:00
|
|
|
conn.write_messages([&StartupMessage {
|
2013-09-09 05:40:08 +00:00
|
|
|
version: message::PROTOCOL_VERSION,
|
2013-08-29 03:25:15 +00:00
|
|
|
parameters: args.as_slice()
|
2013-09-14 20:03:38 +00:00
|
|
|
}]);
|
2013-08-26 05:08:37 +00:00
|
|
|
|
2013-08-27 04:19:24 +00:00
|
|
|
match conn.handle_auth(user) {
|
|
|
|
Some(err) => return Err(err),
|
|
|
|
None => ()
|
|
|
|
}
|
2013-08-04 02:17:32 +00:00
|
|
|
|
2013-08-22 05:52:15 +00:00
|
|
|
loop {
|
2013-09-09 03:35:24 +00:00
|
|
|
match conn.read_message() {
|
2013-08-29 04:24:43 +00:00
|
|
|
BackendKeyData {_} => (),
|
2013-09-09 03:35:24 +00:00
|
|
|
ReadyForQuery {_} => break,
|
|
|
|
_ => fail!()
|
|
|
|
}
|
2013-08-05 00:48:48 +00:00
|
|
|
}
|
2013-08-23 05:24:14 +00:00
|
|
|
|
2013-08-27 04:19:24 +00:00
|
|
|
Ok(conn)
|
2013-08-05 00:48:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-28 18:14:06 +00:00
|
|
|
fn open_socket(host: &str, port: Port)
|
2013-09-08 21:26:34 +00:00
|
|
|
-> Result<TcpStream, PostgresConnectError> {
|
|
|
|
let addrs = do io_error::cond.trap(|_| {}).inside {
|
|
|
|
net::get_host_addresses(host)
|
|
|
|
};
|
|
|
|
let addrs = match addrs {
|
|
|
|
Some(addrs) => addrs,
|
|
|
|
None => return Err(DnsError)
|
|
|
|
};
|
|
|
|
|
|
|
|
for addr in addrs.iter() {
|
|
|
|
let socket = do io_error::cond.trap(|_| {}).inside {
|
|
|
|
TcpStream::connect(SocketAddr { ip: *addr, port: port })
|
|
|
|
};
|
|
|
|
match socket {
|
|
|
|
Some(socket) => return Ok(socket),
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(SocketError)
|
|
|
|
}
|
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
fn write_messages(&mut self, messages: &[&FrontendMessage]) {
|
|
|
|
for &message in messages.iter() {
|
|
|
|
self.stream.write_message(message);
|
2013-07-25 07:10:18 +00:00
|
|
|
}
|
2013-09-20 04:06:45 +00:00
|
|
|
self.stream.flush();
|
2013-08-22 06:41:26 +00:00
|
|
|
}
|
2013-08-04 02:17:32 +00:00
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
fn read_message(&mut self) -> BackendMessage {
|
2013-09-09 03:35:24 +00:00
|
|
|
loop {
|
2013-09-20 04:06:45 +00:00
|
|
|
match self.stream.read_message() {
|
|
|
|
NoticeResponse { fields } =>
|
|
|
|
self.notice_handler.handle(PostgresDbError::new(fields)),
|
2013-09-09 03:35:24 +00:00
|
|
|
ParameterStatus { parameter, value } =>
|
2013-09-12 02:57:26 +00:00
|
|
|
debug!("Parameter %s = %s", parameter, value),
|
2013-09-09 03:35:24 +00:00
|
|
|
msg => return msg
|
|
|
|
}
|
2013-08-04 05:21:16 +00:00
|
|
|
}
|
2013-08-22 06:41:26 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
fn handle_auth(&mut self, user: UserInfo) -> Option<PostgresConnectError> {
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.read_message() {
|
2013-08-27 04:19:24 +00:00
|
|
|
AuthenticationOk => return None,
|
|
|
|
AuthenticationCleartextPassword => {
|
|
|
|
let pass = match user.pass {
|
|
|
|
Some(pass) => pass,
|
|
|
|
None => return Some(MissingPassword)
|
|
|
|
};
|
2013-09-14 20:03:38 +00:00
|
|
|
self.write_messages([&PasswordMessage { password: pass }]);
|
2013-09-09 03:35:24 +00:00
|
|
|
}
|
2013-08-29 03:25:15 +00:00
|
|
|
AuthenticationMD5Password { salt } => {
|
2013-08-27 04:19:24 +00:00
|
|
|
let UserInfo { user, pass } = user;
|
|
|
|
let pass = match pass {
|
|
|
|
Some(pass) => pass,
|
|
|
|
None => return Some(MissingPassword)
|
|
|
|
};
|
|
|
|
let input = pass + user;
|
|
|
|
let mut md5 = Md5::new();
|
|
|
|
md5.input_str(input);
|
|
|
|
let output = md5.result_str();
|
|
|
|
md5.reset();
|
|
|
|
md5.input_str(output);
|
2013-08-27 05:06:53 +00:00
|
|
|
md5.input(salt);
|
2013-08-27 04:19:24 +00:00
|
|
|
let output = "md5" + md5.result_str();
|
2013-09-14 20:03:38 +00:00
|
|
|
self.write_messages([&PasswordMessage {
|
2013-08-29 03:25:15 +00:00
|
|
|
password: output.as_slice()
|
2013-09-14 20:03:38 +00:00
|
|
|
}]);
|
2013-09-04 03:07:10 +00:00
|
|
|
}
|
2013-09-12 05:02:32 +00:00
|
|
|
AuthenticationKerberosV5
|
|
|
|
| AuthenticationSCMCredential
|
|
|
|
| AuthenticationGSS
|
|
|
|
| AuthenticationSSPI => return Some(UnsupportedAuthentication),
|
2013-10-05 02:26:57 +00:00
|
|
|
ErrorResponse { fields } =>
|
|
|
|
return Some(DbError(PostgresDbError::new(fields))),
|
2013-09-09 03:35:24 +00:00
|
|
|
_ => fail!()
|
|
|
|
}
|
2013-08-27 04:19:24 +00:00
|
|
|
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.read_message() {
|
2013-08-27 04:19:24 +00:00
|
|
|
AuthenticationOk => None,
|
2013-08-29 04:24:43 +00:00
|
|
|
ErrorResponse { fields } =>
|
2013-09-09 03:35:24 +00:00
|
|
|
Some(DbError(PostgresDbError::new(fields))),
|
|
|
|
_ => fail!()
|
|
|
|
}
|
2013-08-26 05:08:37 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
fn set_notice_handler(&mut self, handler: ~PostgresNoticeHandler)
|
2013-09-12 02:57:26 +00:00
|
|
|
-> ~PostgresNoticeHandler {
|
2013-09-20 04:06:45 +00:00
|
|
|
util::replace(&mut self.notice_handler, handler)
|
2013-08-27 05:06:53 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
fn try_prepare<'a>(&mut self, query: &str, conn: &'a PostgresConnection)
|
2013-09-16 02:26:56 +00:00
|
|
|
-> Result<NormalPostgresStatement<'a>, PostgresDbError> {
|
2013-09-20 04:06:45 +00:00
|
|
|
let stmt_name = format!("statement_{}", self.next_stmt_id);
|
|
|
|
self.next_stmt_id += 1;
|
2013-08-05 00:48:48 +00:00
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
let types = [];
|
2013-09-01 00:12:19 +00:00
|
|
|
self.write_messages([
|
2013-09-02 17:27:09 +00:00
|
|
|
&Parse {
|
|
|
|
name: stmt_name,
|
|
|
|
query: query,
|
|
|
|
param_types: types
|
|
|
|
},
|
|
|
|
&Describe {
|
|
|
|
variant: 'S' as u8,
|
|
|
|
name: stmt_name
|
|
|
|
},
|
|
|
|
&Sync]);
|
2013-08-22 06:41:26 +00:00
|
|
|
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.read_message() {
|
2013-08-22 05:52:15 +00:00
|
|
|
ParseComplete => (),
|
2013-08-29 05:33:27 +00:00
|
|
|
ErrorResponse { fields } => {
|
|
|
|
self.wait_for_ready();
|
|
|
|
return Err(PostgresDbError::new(fields));
|
2013-09-04 03:07:10 +00:00
|
|
|
}
|
2013-09-09 03:35:24 +00:00
|
|
|
_ => fail!()
|
|
|
|
}
|
2013-08-22 06:41:26 +00:00
|
|
|
|
2013-09-09 03:35:24 +00:00
|
|
|
let param_types = match self.read_message() {
|
2013-09-05 04:26:43 +00:00
|
|
|
ParameterDescription { types } =>
|
|
|
|
types.iter().map(|ty| { PostgresType::from_oid(*ty) })
|
2013-09-09 03:35:24 +00:00
|
|
|
.collect(),
|
|
|
|
_ => fail!()
|
|
|
|
};
|
2013-08-22 06:41:26 +00:00
|
|
|
|
2013-09-09 03:35:24 +00:00
|
|
|
let result_desc = match self.read_message() {
|
2013-09-05 04:26:43 +00:00
|
|
|
RowDescription { descriptions } => {
|
|
|
|
let mut res: ~[ResultDescription] = descriptions
|
|
|
|
.move_rev_iter().map(|desc| {
|
|
|
|
ResultDescription::from_row_description_entry(desc)
|
|
|
|
}).collect();
|
|
|
|
res.reverse();
|
|
|
|
res
|
|
|
|
},
|
2013-09-09 03:35:24 +00:00
|
|
|
NoData => ~[],
|
|
|
|
_ => fail!()
|
|
|
|
};
|
2013-08-17 22:09:26 +00:00
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
self.wait_for_ready();
|
|
|
|
|
2013-09-04 05:05:04 +00:00
|
|
|
Ok(NormalPostgresStatement {
|
2013-09-20 04:06:45 +00:00
|
|
|
conn: conn,
|
2013-08-22 06:41:26 +00:00
|
|
|
name: stmt_name,
|
2013-08-30 05:58:26 +00:00
|
|
|
param_types: param_types,
|
2013-09-01 21:09:08 +00:00
|
|
|
result_desc: result_desc,
|
2013-09-04 05:42:24 +00:00
|
|
|
next_portal_id: Cell::new(0)
|
2013-08-27 05:06:53 +00:00
|
|
|
})
|
2013-08-22 06:41:26 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 04:06:45 +00:00
|
|
|
fn wait_for_ready(&mut self) {
|
|
|
|
match self.read_message() {
|
|
|
|
ReadyForQuery {_} => (),
|
|
|
|
_ => fail!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A connection to a Postgres database.
|
2013-10-01 07:40:46 +00:00
|
|
|
pub struct PostgresConnection {
|
|
|
|
priv conn: Cell<InnerPostgresConnection>
|
|
|
|
}
|
2013-09-20 04:06:45 +00:00
|
|
|
|
|
|
|
impl PostgresConnection {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Attempts to create a new connection to a Postgres database.
|
|
|
|
///
|
|
|
|
/// The URL should be provided in the normal format:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// postgres://user[:password]@host[:port][/database][?param1=val1[[¶m2=val2]...]]
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// The password may be omitted if not required. The default Postgres port
|
|
|
|
/// (5432) is used if none is specified. The database name defaults to the
|
|
|
|
/// username if not specified.
|
2013-09-20 04:06:45 +00:00
|
|
|
pub fn try_connect(url: &str) -> Result<PostgresConnection,
|
|
|
|
PostgresConnectError> {
|
|
|
|
do InnerPostgresConnection::try_connect(url).map_move |conn| {
|
2013-10-01 07:40:46 +00:00
|
|
|
PostgresConnection {
|
|
|
|
conn: Cell::new(conn)
|
|
|
|
}
|
2013-09-20 04:06:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A convenience wrapper around `try_connect`.
|
|
|
|
///
|
|
|
|
/// Fails if there was an error connecting to the database.
|
|
|
|
pub fn connect(url: &str) -> PostgresConnection {
|
|
|
|
match PostgresConnection::try_connect(url) {
|
|
|
|
Ok(conn) => conn,
|
|
|
|
Err(err) => fail2!("Failed to connect: {}", err.to_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the notice handler for the connection, returning the old handler.
|
2013-09-20 04:06:45 +00:00
|
|
|
pub fn set_notice_handler(&self, handler: ~PostgresNoticeHandler)
|
|
|
|
-> ~PostgresNoticeHandler {
|
2013-10-01 07:40:46 +00:00
|
|
|
let mut conn = self.conn.take();
|
2013-09-20 04:06:45 +00:00
|
|
|
let handler = conn.set_notice_handler(handler);
|
2013-10-01 07:40:46 +00:00
|
|
|
self.conn.put_back(conn);
|
2013-09-20 04:06:45 +00:00
|
|
|
handler
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Attempts to create a new prepared statement.
|
|
|
|
///
|
|
|
|
/// A statement may contain parameters, specified by `$n` where `n` is the
|
|
|
|
/// index of the parameter in the list provided at execution time,
|
|
|
|
/// 1-indexed.
|
|
|
|
///
|
|
|
|
/// The statement is associated with the connection that created it and may
|
|
|
|
/// not outlive that connection.
|
|
|
|
pub fn try_prepare<'a>(&'a self, query: &str)
|
|
|
|
-> Result<NormalPostgresStatement<'a>, PostgresDbError> {
|
2013-10-01 07:40:46 +00:00
|
|
|
do self.conn.with_mut_ref |conn| {
|
2013-09-30 02:12:20 +00:00
|
|
|
conn.try_prepare(query, self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A convenience wrapper around `try_prepare`.
|
|
|
|
///
|
|
|
|
/// Fails if there was an error preparing the statement.
|
2013-09-20 04:06:45 +00:00
|
|
|
pub fn prepare<'a>(&'a self, query: &str) -> NormalPostgresStatement<'a> {
|
|
|
|
match self.try_prepare(query) {
|
|
|
|
Ok(stmt) => stmt,
|
|
|
|
Err(err) => fail2!("Error preparing statement:\n{}",
|
|
|
|
err.pretty_error(query))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Executes a block inside of a database transaction.
|
|
|
|
///
|
|
|
|
/// The block is provided with a `PostgresTransaction` object which should
|
|
|
|
/// be used instead of the connection inside of the block. A transaction
|
|
|
|
/// will commit by default unless the task fails or the transaction is set
|
|
|
|
/// to roll back.
|
2013-08-29 05:44:34 +00:00
|
|
|
pub fn in_transaction<T>(&self, blk: &fn(&PostgresTransaction) -> T) -> T {
|
2013-08-23 07:13:42 +00:00
|
|
|
self.quick_query("BEGIN");
|
2013-09-16 05:35:30 +00:00
|
|
|
blk(&PostgresTransaction {
|
2013-08-27 05:40:23 +00:00
|
|
|
conn: self,
|
2013-09-16 05:35:30 +00:00
|
|
|
commit: Cell::new(true),
|
|
|
|
nested: false
|
|
|
|
})
|
2013-08-23 05:24:14 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A convenience function for update queries that are only run once.
|
|
|
|
///
|
|
|
|
/// If an error is returned, it could have come from either the preparation
|
|
|
|
/// or execution of the statement.
|
|
|
|
///
|
|
|
|
/// On success, returns the number of rows modified or 0 if not applicable.
|
|
|
|
pub fn try_update(&self, query: &str, params: &[&ToSql])
|
|
|
|
-> Result<uint, PostgresDbError> {
|
|
|
|
do self.try_prepare(query).and_then |stmt| {
|
|
|
|
stmt.try_update(params)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A convenience wrapper around `try_update`.
|
|
|
|
///
|
|
|
|
/// Fails if there was an error preparing or executing the statement.
|
2013-09-01 18:06:33 +00:00
|
|
|
pub fn update(&self, query: &str, params: &[&ToSql]) -> uint {
|
|
|
|
match self.try_update(query, params) {
|
|
|
|
Ok(res) => res,
|
2013-09-15 05:56:52 +00:00
|
|
|
Err(err) => fail2!("Error running update:\n{}",
|
|
|
|
err.pretty_error(query))
|
2013-09-01 18:06:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-23 07:13:42 +00:00
|
|
|
fn quick_query(&self, query: &str) {
|
2013-10-01 07:40:46 +00:00
|
|
|
do self.conn.with_mut_ref |conn| {
|
2013-09-20 04:06:45 +00:00
|
|
|
conn.write_messages([&Query { query: query }]);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
match conn.read_message() {
|
|
|
|
ReadyForQuery {_} => break,
|
|
|
|
ErrorResponse { fields } =>
|
|
|
|
fail2!("Error: {}",
|
|
|
|
PostgresDbError::new(fields).to_str()),
|
|
|
|
_ => ()
|
|
|
|
}
|
2013-09-09 03:35:24 +00:00
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
fn wait_for_ready(&self) {
|
2013-10-01 07:40:46 +00:00
|
|
|
do self.conn.with_mut_ref |conn| {
|
2013-09-20 04:06:45 +00:00
|
|
|
conn.wait_for_ready()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_message(&self) -> BackendMessage {
|
2013-10-01 07:40:46 +00:00
|
|
|
do self.conn.with_mut_ref |conn| {
|
2013-09-20 04:06:45 +00:00
|
|
|
conn.read_message()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_messages(&self, messages: &[&FrontendMessage]) {
|
2013-10-01 07:40:46 +00:00
|
|
|
do self.conn.with_mut_ref |conn| {
|
2013-09-20 04:06:45 +00:00
|
|
|
conn.write_messages(messages)
|
2013-09-09 03:35:24 +00:00
|
|
|
}
|
2013-08-17 22:09:26 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-18 02:09:56 +00:00
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Represents a transaction on a database connection
|
2013-08-27 05:40:23 +00:00
|
|
|
pub struct PostgresTransaction<'self> {
|
|
|
|
priv conn: &'self PostgresConnection,
|
2013-09-16 05:35:30 +00:00
|
|
|
priv commit: Cell<bool>,
|
|
|
|
priv nested: bool
|
|
|
|
}
|
|
|
|
|
|
|
|
#[unsafe_destructor]
|
|
|
|
impl<'self> Drop for PostgresTransaction<'self> {
|
2013-09-18 05:06:47 +00:00
|
|
|
fn drop(&mut self) {
|
2013-09-16 05:35:30 +00:00
|
|
|
do io_error::cond.trap(|_| {}).inside {
|
|
|
|
if task::failing() || !self.commit.take() {
|
|
|
|
if self.nested {
|
|
|
|
self.conn.quick_query("ROLLBACK TO sp");
|
|
|
|
} else {
|
|
|
|
self.conn.quick_query("ROLLBACK");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if self.nested {
|
|
|
|
self.conn.quick_query("RELEASE sp");
|
|
|
|
} else {
|
|
|
|
self.conn.quick_query("COMMIT");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-27 05:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'self> PostgresTransaction<'self> {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Like `PostgresConnection::try_prepare`.
|
2013-08-27 05:40:23 +00:00
|
|
|
pub fn try_prepare<'a>(&'a self, query: &str)
|
2013-09-04 05:05:04 +00:00
|
|
|
-> Result<TransactionalPostgresStatement<'a>, PostgresDbError> {
|
2013-10-01 07:40:46 +00:00
|
|
|
do self.conn.try_prepare(query).map_move |stmt| {
|
|
|
|
TransactionalPostgresStatement {
|
|
|
|
stmt: stmt
|
|
|
|
}
|
|
|
|
}
|
2013-08-27 05:40:23 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Like `PostgresConnection::prepare`.
|
|
|
|
pub fn prepare<'a>(&'a self, query: &str)
|
|
|
|
-> TransactionalPostgresStatement<'a> {
|
2013-10-01 07:40:46 +00:00
|
|
|
TransactionalPostgresStatement {
|
|
|
|
stmt: self.conn.prepare(query)
|
|
|
|
}
|
2013-09-01 18:06:33 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Like `PostgresConnection::try_update`.
|
2013-09-01 18:06:33 +00:00
|
|
|
pub fn try_update(&self, query: &str, params: &[&ToSql])
|
|
|
|
-> Result<uint, PostgresDbError> {
|
|
|
|
self.conn.try_update(query, params)
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Like `PostgresConnection::update`.
|
|
|
|
pub fn update(&self, query: &str, params: &[&ToSql]) -> uint {
|
|
|
|
self.conn.update(query, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Like `PostgresConnection::in_transaction`.
|
2013-09-05 06:28:44 +00:00
|
|
|
pub fn in_transaction<T>(&self, blk: &fn(&PostgresTransaction) -> T) -> T {
|
2013-09-05 06:40:22 +00:00
|
|
|
self.conn.quick_query("SAVEPOINT sp");
|
2013-09-16 05:35:30 +00:00
|
|
|
blk(&PostgresTransaction {
|
2013-09-05 06:28:44 +00:00
|
|
|
conn: self.conn,
|
2013-09-16 05:35:30 +00:00
|
|
|
commit: Cell::new(true),
|
|
|
|
nested: true
|
|
|
|
})
|
2013-09-05 06:28:44 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Determines if the transaction is currently set to commit or roll back.
|
2013-08-27 05:40:23 +00:00
|
|
|
pub fn will_commit(&self) -> bool {
|
|
|
|
let commit = self.commit.take();
|
|
|
|
self.commit.put_back(commit);
|
|
|
|
commit
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Sets the transaction to commit at its completion.
|
2013-08-27 05:40:23 +00:00
|
|
|
pub fn set_commit(&self) {
|
|
|
|
self.commit.take();
|
|
|
|
self.commit.put_back(true);
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Sets the transaction to roll back at its completion.
|
2013-08-27 05:40:23 +00:00
|
|
|
pub fn set_rollback(&self) {
|
|
|
|
self.commit.take();
|
|
|
|
self.commit.put_back(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A trait containing methods that can be called on a prepared statement.
|
2013-09-04 05:05:04 +00:00
|
|
|
pub trait PostgresStatement {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Returns a slice containing the expected parameter types.
|
2013-09-05 04:51:21 +00:00
|
|
|
fn param_types<'a>(&'a self) -> &'a [PostgresType];
|
2013-09-30 02:12:20 +00:00
|
|
|
|
|
|
|
/// Returns a slice describing the columns of the result of the query.
|
2013-09-05 04:51:21 +00:00
|
|
|
fn result_descriptions<'a>(&'a self) -> &'a [ResultDescription];
|
2013-09-30 02:12:20 +00:00
|
|
|
|
|
|
|
/// Attempts to execute the prepared statement, returning the number of
|
|
|
|
/// rows modified.
|
|
|
|
///
|
|
|
|
/// If the statement does not modify any rows (e.g. SELECT), 0 is returned.
|
|
|
|
///
|
|
|
|
/// Fails if the number or types of the provided parameters do not match
|
|
|
|
/// the parameters of the statement.
|
2013-09-04 05:05:04 +00:00
|
|
|
fn try_update(&self, params: &[&ToSql]) -> Result<uint, PostgresDbError>;
|
2013-09-30 02:12:20 +00:00
|
|
|
|
2013-09-30 05:22:10 +00:00
|
|
|
/// A convenience function wrapping `try_update`.
|
2013-09-30 02:12:20 +00:00
|
|
|
///
|
|
|
|
/// Fails if there was an error executing the statement.
|
2013-09-30 06:44:45 +00:00
|
|
|
fn update(&self, params: &[&ToSql]) -> uint {
|
|
|
|
match self.try_update(params) {
|
|
|
|
Ok(count) => count,
|
|
|
|
Err(err) => fail2!("Error running update\n{}", err.to_str())
|
|
|
|
}
|
|
|
|
}
|
2013-09-30 02:12:20 +00:00
|
|
|
|
|
|
|
/// Attempts to execute the prepared statement, returning an iterator over
|
|
|
|
/// the resulting rows.
|
|
|
|
///
|
|
|
|
/// Fails if the number or types of the provided parameters do not match
|
|
|
|
/// the parameters of the statement.
|
2013-09-04 05:05:04 +00:00
|
|
|
fn try_query<'a>(&'a self, params: &[&ToSql])
|
|
|
|
-> Result<PostgresResult<'a>, PostgresDbError>;
|
2013-09-30 02:12:20 +00:00
|
|
|
|
|
|
|
/// A convenience function wrapping `try_query`.
|
|
|
|
///
|
|
|
|
/// Fails if there was an error executing the statement.
|
2013-09-30 06:44:45 +00:00
|
|
|
fn query<'a>(&'a self, params: &[&ToSql]) -> PostgresResult<'a> {
|
|
|
|
match self.try_query(params) {
|
|
|
|
Ok(result) => result,
|
|
|
|
Err(err) => fail2!("Error executing query:\n{}", err.to_str())
|
|
|
|
}
|
|
|
|
}
|
2013-09-30 02:12:20 +00:00
|
|
|
|
|
|
|
/// Returns the index of the first result column with the specified name,
|
|
|
|
/// or `None` if not found.
|
2013-09-04 05:05:04 +00:00
|
|
|
fn find_col_named(&self, col: &str) -> Option<uint>;
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A statement prepared outside of a transaction.
|
2013-09-04 05:05:04 +00:00
|
|
|
pub struct NormalPostgresStatement<'self> {
|
2013-08-22 05:52:15 +00:00
|
|
|
priv conn: &'self PostgresConnection,
|
2013-08-22 06:41:26 +00:00
|
|
|
priv name: ~str,
|
2013-09-05 04:26:43 +00:00
|
|
|
priv param_types: ~[PostgresType],
|
|
|
|
priv result_desc: ~[ResultDescription],
|
2013-09-04 05:42:24 +00:00
|
|
|
priv next_portal_id: Cell<uint>
|
2013-08-22 07:12:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[unsafe_destructor]
|
2013-09-04 05:05:04 +00:00
|
|
|
impl<'self> Drop for NormalPostgresStatement<'self> {
|
2013-09-18 05:06:47 +00:00
|
|
|
fn drop(&mut self) {
|
2013-08-26 07:36:09 +00:00
|
|
|
do io_error::cond.trap(|_| {}).inside {
|
2013-09-01 00:12:19 +00:00
|
|
|
self.conn.write_messages([
|
2013-09-01 05:48:49 +00:00
|
|
|
&Close {
|
|
|
|
variant: 'S' as u8,
|
|
|
|
name: self.name.as_slice()
|
|
|
|
},
|
|
|
|
&Sync]);
|
2013-08-26 07:36:09 +00:00
|
|
|
loop {
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.conn.read_message() {
|
2013-08-29 03:25:15 +00:00
|
|
|
ReadyForQuery {_} => break,
|
2013-08-26 07:36:09 +00:00
|
|
|
_ => ()
|
2013-09-09 03:35:24 +00:00
|
|
|
}
|
2013-08-23 05:24:14 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-22 07:12:35 +00:00
|
|
|
}
|
2013-08-18 02:09:56 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 05:05:04 +00:00
|
|
|
impl<'self> NormalPostgresStatement<'self> {
|
2013-09-04 05:42:24 +00:00
|
|
|
fn execute(&self, portal_name: &str, row_limit: uint, params: &[&ToSql])
|
2013-09-01 05:48:49 +00:00
|
|
|
-> Option<PostgresDbError> {
|
2013-08-30 05:58:26 +00:00
|
|
|
let mut formats = ~[];
|
|
|
|
let mut values = ~[];
|
2013-09-12 05:33:19 +00:00
|
|
|
assert!(self.param_types.len() == params.len(),
|
2013-10-02 02:55:17 +00:00
|
|
|
"Expected {} parameters but found {}",
|
2013-09-12 05:33:19 +00:00
|
|
|
self.param_types.len(), params.len());
|
2013-08-30 05:58:26 +00:00
|
|
|
for (¶m, &ty) in params.iter().zip(self.param_types.iter()) {
|
|
|
|
let (format, value) = param.to_sql(ty);
|
|
|
|
formats.push(format as i16);
|
|
|
|
values.push(value);
|
|
|
|
};
|
|
|
|
|
2013-09-02 19:42:24 +00:00
|
|
|
let result_formats: ~[i16] = self.result_desc.iter().map(|desc| {
|
2013-09-05 04:26:43 +00:00
|
|
|
desc.ty.result_format() as i16
|
2013-09-02 19:42:24 +00:00
|
|
|
}).collect();
|
2013-08-22 07:12:35 +00:00
|
|
|
|
2013-09-01 00:12:19 +00:00
|
|
|
self.conn.write_messages([
|
2013-09-01 05:48:49 +00:00
|
|
|
&Bind {
|
|
|
|
portal: portal_name,
|
|
|
|
statement: self.name.as_slice(),
|
|
|
|
formats: formats,
|
|
|
|
values: values,
|
|
|
|
result_formats: result_formats
|
|
|
|
},
|
2013-09-03 06:09:30 +00:00
|
|
|
&Execute {
|
|
|
|
portal: portal_name,
|
2013-09-04 05:42:24 +00:00
|
|
|
max_rows: row_limit as i32
|
2013-09-03 06:09:30 +00:00
|
|
|
},
|
2013-09-01 05:48:49 +00:00
|
|
|
&Sync]);
|
2013-08-22 07:12:35 +00:00
|
|
|
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.conn.read_message() {
|
2013-08-27 05:06:53 +00:00
|
|
|
BindComplete => None,
|
2013-09-03 06:09:30 +00:00
|
|
|
ErrorResponse { fields } => {
|
|
|
|
self.conn.wait_for_ready();
|
|
|
|
Some(PostgresDbError::new(fields))
|
2013-09-04 03:07:10 +00:00
|
|
|
}
|
2013-09-09 03:35:24 +00:00
|
|
|
_ => fail!()
|
|
|
|
}
|
2013-08-23 05:24:14 +00:00
|
|
|
}
|
2013-09-04 05:20:21 +00:00
|
|
|
|
2013-09-04 05:42:24 +00:00
|
|
|
fn try_lazy_query<'a>(&'a self, row_limit: uint, params: &[&ToSql])
|
2013-09-04 05:20:21 +00:00
|
|
|
-> Result<PostgresResult<'a>, PostgresDbError> {
|
2013-09-04 05:42:24 +00:00
|
|
|
let id = self.next_portal_id.take();
|
|
|
|
let portal_name = format!("{}_portal_{}", self.name, id);
|
|
|
|
self.next_portal_id.put_back(id + 1);
|
|
|
|
|
|
|
|
match self.execute(portal_name, row_limit, params) {
|
2013-09-04 05:20:21 +00:00
|
|
|
Some(err) => {
|
|
|
|
return Err(err);
|
|
|
|
}
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
|
2013-09-04 05:42:24 +00:00
|
|
|
let mut result = PostgresResult {
|
2013-09-04 05:20:21 +00:00
|
|
|
stmt: self,
|
2013-09-04 05:42:24 +00:00
|
|
|
name: portal_name,
|
|
|
|
data: RingBuf::new(),
|
|
|
|
row_limit: row_limit,
|
|
|
|
more_rows: true
|
|
|
|
};
|
2013-09-06 03:31:23 +00:00
|
|
|
result.read_rows();
|
2013-09-04 05:42:24 +00:00
|
|
|
|
|
|
|
Ok(result)
|
2013-09-04 05:20:21 +00:00
|
|
|
}
|
2013-09-04 05:05:04 +00:00
|
|
|
}
|
2013-08-23 05:24:14 +00:00
|
|
|
|
2013-09-04 05:05:04 +00:00
|
|
|
impl<'self> PostgresStatement for NormalPostgresStatement<'self> {
|
2013-09-05 04:51:21 +00:00
|
|
|
fn param_types<'a>(&'a self) -> &'a [PostgresType] {
|
|
|
|
self.param_types.as_slice()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn result_descriptions<'a>(&'a self) -> &'a [ResultDescription] {
|
|
|
|
self.result_desc.as_slice()
|
2013-09-04 05:05:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn try_update(&self, params: &[&ToSql])
|
2013-08-27 05:06:53 +00:00
|
|
|
-> Result<uint, PostgresDbError> {
|
2013-09-04 05:42:24 +00:00
|
|
|
match self.execute("", 0, params) {
|
2013-08-27 05:06:53 +00:00
|
|
|
Some(err) => {
|
|
|
|
return Err(err);
|
|
|
|
}
|
|
|
|
None => ()
|
|
|
|
}
|
2013-08-22 07:12:35 +00:00
|
|
|
|
2013-08-29 05:44:34 +00:00
|
|
|
let num;
|
2013-08-23 05:24:14 +00:00
|
|
|
loop {
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.conn.read_message() {
|
2013-08-29 03:25:15 +00:00
|
|
|
CommandComplete { tag } => {
|
|
|
|
let s = tag.split_iter(' ').last().unwrap();
|
2013-08-29 05:44:34 +00:00
|
|
|
num = match FromStr::from_str(s) {
|
|
|
|
None => 0,
|
|
|
|
Some(n) => n
|
|
|
|
};
|
2013-08-23 05:24:14 +00:00
|
|
|
break;
|
2013-09-09 03:35:24 +00:00
|
|
|
}
|
2013-08-29 03:25:15 +00:00
|
|
|
DataRow {_} => (),
|
2013-08-29 05:44:34 +00:00
|
|
|
EmptyQueryResponse => {
|
|
|
|
num = 0;
|
|
|
|
break;
|
2013-09-09 03:35:24 +00:00
|
|
|
}
|
2013-08-29 03:25:15 +00:00
|
|
|
NoticeResponse {_} => (),
|
2013-08-29 04:24:43 +00:00
|
|
|
ErrorResponse { fields } => {
|
2013-08-27 05:06:53 +00:00
|
|
|
self.conn.wait_for_ready();
|
2013-08-29 04:24:43 +00:00
|
|
|
return Err(PostgresDbError::new(fields));
|
2013-09-04 03:07:10 +00:00
|
|
|
}
|
2013-09-09 03:35:24 +00:00
|
|
|
_ => fail!()
|
|
|
|
}
|
2013-08-23 05:24:14 +00:00
|
|
|
}
|
2013-08-22 07:12:35 +00:00
|
|
|
self.conn.wait_for_ready();
|
2013-08-23 05:24:14 +00:00
|
|
|
|
2013-08-27 05:06:53 +00:00
|
|
|
Ok(num)
|
2013-08-22 07:12:35 +00:00
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
|
2013-09-04 05:05:04 +00:00
|
|
|
fn try_query<'a>(&'a self, params: &[&ToSql])
|
|
|
|
-> Result<PostgresResult<'a>, PostgresDbError> {
|
2013-09-04 05:20:21 +00:00
|
|
|
self.try_lazy_query(0, params)
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
2013-09-03 00:07:08 +00:00
|
|
|
|
2013-09-04 05:05:04 +00:00
|
|
|
fn find_col_named(&self, col: &str) -> Option<uint> {
|
2013-09-03 00:07:08 +00:00
|
|
|
do self.result_desc.iter().position |desc| {
|
|
|
|
desc.name.as_slice() == col
|
|
|
|
}
|
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Information about a column of the result of a query.
|
2013-09-29 06:02:21 +00:00
|
|
|
#[deriving(Eq)]
|
|
|
|
pub struct ResultDescription {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The name of the column
|
2013-09-29 06:02:21 +00:00
|
|
|
name: ~str,
|
2013-09-30 02:12:20 +00:00
|
|
|
/// The type of the data in the column
|
2013-09-29 06:02:21 +00:00
|
|
|
ty: PostgresType
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ResultDescription {
|
|
|
|
fn from_row_description_entry(row: RowDescriptionEntry)
|
|
|
|
-> ResultDescription {
|
|
|
|
let RowDescriptionEntry { name, type_oid, _ } = row;
|
|
|
|
|
|
|
|
ResultDescription {
|
|
|
|
name: name,
|
|
|
|
ty: PostgresType::from_oid(type_oid)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A statement prepared inside of a transaction.
|
|
|
|
///
|
|
|
|
/// Provides additional functionality over a `NormalPostgresStatement`.
|
2013-10-01 07:40:46 +00:00
|
|
|
pub struct TransactionalPostgresStatement<'self> {
|
|
|
|
priv stmt: NormalPostgresStatement<'self>
|
|
|
|
}
|
2013-09-04 05:05:04 +00:00
|
|
|
|
|
|
|
impl<'self> PostgresStatement for TransactionalPostgresStatement<'self> {
|
2013-09-05 04:51:21 +00:00
|
|
|
fn param_types<'a>(&'a self) -> &'a [PostgresType] {
|
2013-10-01 07:40:46 +00:00
|
|
|
self.stmt.param_types()
|
2013-09-05 04:51:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn result_descriptions<'a>(&'a self) -> &'a [ResultDescription] {
|
2013-10-01 07:40:46 +00:00
|
|
|
self.stmt.result_descriptions()
|
2013-09-04 05:05:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn try_update(&self, params: &[&ToSql]) -> Result<uint, PostgresDbError> {
|
2013-10-01 07:40:46 +00:00
|
|
|
self.stmt.try_update(params)
|
2013-09-04 05:05:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn try_query<'a>(&'a self, params: &[&ToSql])
|
|
|
|
-> Result<PostgresResult<'a>, PostgresDbError> {
|
2013-10-01 07:40:46 +00:00
|
|
|
self.stmt.try_query(params)
|
2013-09-04 05:05:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn find_col_named(&self, col: &str) -> Option<uint> {
|
2013-10-01 07:40:46 +00:00
|
|
|
self.stmt.find_col_named(col)
|
2013-09-04 05:05:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-04 05:20:21 +00:00
|
|
|
impl<'self> TransactionalPostgresStatement<'self> {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Attempts to execute the prepared statement, returning a lazily loaded
|
|
|
|
/// iterator over the resulting rows.
|
|
|
|
///
|
|
|
|
/// No more than `row_limit` rows will be stored in memory at a time. Rows
|
|
|
|
/// will be pulled from the database in batches of `row_limit` as needed.
|
|
|
|
/// If `row_limit` is 0, `try_lazy_query` is equivalent to `try_query`.
|
|
|
|
///
|
|
|
|
/// Fails if the number or types of the provided parameters do not match
|
|
|
|
/// the parameters of the statement.
|
2013-09-04 05:20:21 +00:00
|
|
|
pub fn try_lazy_query<'a>(&'a self, row_limit: uint, params: &[&ToSql])
|
|
|
|
-> Result<PostgresResult<'a>, PostgresDbError> {
|
2013-10-01 07:40:46 +00:00
|
|
|
self.stmt.try_lazy_query(row_limit, params)
|
2013-09-04 05:20:21 +00:00
|
|
|
}
|
2013-09-30 02:12:20 +00:00
|
|
|
|
|
|
|
/// A convenience wrapper around `try_lazy_query`.
|
|
|
|
///
|
|
|
|
/// Fails if there was an error executing the statement.
|
|
|
|
pub fn lazy_query<'a>(&'a self, row_limit: uint, params: &[&ToSql])
|
|
|
|
-> PostgresResult<'a> {
|
2013-09-30 15:35:03 +00:00
|
|
|
match self.try_lazy_query(row_limit, params) {
|
|
|
|
Ok(result) => result,
|
|
|
|
Err(err) => fail2!("Error executing query:\n{}", err.to_str())
|
|
|
|
}
|
2013-09-30 02:12:20 +00:00
|
|
|
}
|
2013-09-04 05:20:21 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// An iterator over the resulting rows of a query.
|
2013-08-23 07:13:42 +00:00
|
|
|
pub struct PostgresResult<'self> {
|
2013-09-04 05:05:04 +00:00
|
|
|
priv stmt: &'self NormalPostgresStatement<'self>,
|
2013-09-04 05:42:24 +00:00
|
|
|
priv name: ~str,
|
|
|
|
priv data: RingBuf<~[Option<~[u8]>]>,
|
|
|
|
priv row_limit: uint,
|
|
|
|
priv more_rows: bool
|
|
|
|
}
|
|
|
|
|
|
|
|
#[unsafe_destructor]
|
|
|
|
impl<'self> Drop for PostgresResult<'self> {
|
2013-09-18 05:06:47 +00:00
|
|
|
fn drop(&mut self) {
|
2013-09-04 05:42:24 +00:00
|
|
|
do io_error::cond.trap(|_| {}).inside {
|
|
|
|
self.stmt.conn.write_messages([
|
|
|
|
&Close {
|
|
|
|
variant: 'P' as u8,
|
|
|
|
name: self.name.as_slice()
|
|
|
|
},
|
|
|
|
&Sync]);
|
|
|
|
loop {
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.stmt.conn.read_message() {
|
2013-09-04 05:42:24 +00:00
|
|
|
ReadyForQuery {_} => break,
|
|
|
|
_ => ()
|
2013-09-09 03:35:24 +00:00
|
|
|
}
|
2013-09-04 05:42:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'self> PostgresResult<'self> {
|
2013-09-06 03:31:23 +00:00
|
|
|
fn read_rows(&mut self) {
|
2013-09-04 05:42:24 +00:00
|
|
|
loop {
|
2013-09-09 03:35:24 +00:00
|
|
|
match self.stmt.conn.read_message() {
|
2013-09-04 05:42:24 +00:00
|
|
|
EmptyQueryResponse |
|
|
|
|
CommandComplete {_} => {
|
|
|
|
self.more_rows = false;
|
|
|
|
break;
|
|
|
|
},
|
|
|
|
PortalSuspended => {
|
|
|
|
self.more_rows = true;
|
|
|
|
break;
|
|
|
|
},
|
2013-09-09 03:35:24 +00:00
|
|
|
DataRow { row } => self.data.push_back(row),
|
|
|
|
_ => fail!()
|
|
|
|
}
|
2013-09-04 05:42:24 +00:00
|
|
|
}
|
|
|
|
self.stmt.conn.wait_for_ready();
|
|
|
|
}
|
|
|
|
|
2013-09-06 03:31:23 +00:00
|
|
|
fn execute(&mut self) {
|
2013-09-04 05:42:24 +00:00
|
|
|
self.stmt.conn.write_messages([
|
|
|
|
&Execute {
|
|
|
|
portal: self.name,
|
|
|
|
max_rows: self.row_limit as i32
|
|
|
|
},
|
|
|
|
&Sync]);
|
2013-09-06 03:31:23 +00:00
|
|
|
self.read_rows();
|
2013-09-04 05:42:24 +00:00
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
|
2013-09-02 19:42:24 +00:00
|
|
|
impl<'self> Iterator<PostgresRow<'self>> for PostgresResult<'self> {
|
|
|
|
fn next(&mut self) -> Option<PostgresRow<'self>> {
|
2013-09-04 05:42:24 +00:00
|
|
|
if self.data.is_empty() && self.more_rows {
|
2013-09-06 03:31:23 +00:00
|
|
|
self.execute();
|
2013-09-04 05:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do self.data.pop_front().map_move |row| {
|
2013-09-02 19:42:24 +00:00
|
|
|
PostgresRow {
|
|
|
|
stmt: self.stmt,
|
|
|
|
data: row
|
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A single result row of a query.
|
2013-09-30 05:22:10 +00:00
|
|
|
///
|
|
|
|
/// A value can be accessed by the name or index of its column, though access
|
|
|
|
/// by index is more efficient.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// let foo: i32 = row[0];
|
|
|
|
/// let bar: ~str = row["bar"];
|
|
|
|
/// ```
|
2013-09-02 19:42:24 +00:00
|
|
|
pub struct PostgresRow<'self> {
|
2013-09-04 05:05:04 +00:00
|
|
|
priv stmt: &'self NormalPostgresStatement<'self>,
|
2013-09-01 04:55:15 +00:00
|
|
|
priv data: ~[Option<~[u8]>]
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
|
2013-09-02 19:42:24 +00:00
|
|
|
impl<'self> Container for PostgresRow<'self> {
|
2013-09-30 05:22:10 +00:00
|
|
|
#[inline]
|
2013-08-23 07:13:42 +00:00
|
|
|
fn len(&self) -> uint {
|
2013-09-01 04:55:15 +00:00
|
|
|
self.data.len()
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-03 01:53:03 +00:00
|
|
|
impl<'self, I: RowIndex, T: FromSql> Index<I, T> for PostgresRow<'self> {
|
2013-09-29 17:53:44 +00:00
|
|
|
#[inline]
|
2013-09-03 01:53:03 +00:00
|
|
|
fn index(&self, idx: &I) -> T {
|
|
|
|
let idx = idx.idx(self.stmt);
|
2013-09-05 04:26:43 +00:00
|
|
|
FromSql::from_sql(self.stmt.result_desc[idx].ty,
|
2013-09-03 01:53:03 +00:00
|
|
|
&self.data[idx])
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-30 02:12:20 +00:00
|
|
|
/// A trait implemented by types that can index into columns of a row.
|
2013-09-03 01:53:03 +00:00
|
|
|
pub trait RowIndex {
|
2013-09-30 02:12:20 +00:00
|
|
|
/// Returns the index of the appropriate column.
|
|
|
|
///
|
|
|
|
/// Fails if there is no corresponding column.
|
2013-09-04 05:05:04 +00:00
|
|
|
fn idx(&self, stmt: &NormalPostgresStatement) -> uint;
|
2013-09-03 01:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl RowIndex for uint {
|
2013-09-29 17:53:44 +00:00
|
|
|
#[inline]
|
2013-09-04 05:05:04 +00:00
|
|
|
fn idx(&self, _stmt: &NormalPostgresStatement) -> uint {
|
2013-09-03 01:53:03 +00:00
|
|
|
*self
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
2013-09-03 01:53:03 +00:00
|
|
|
}
|
|
|
|
|
2013-09-06 03:49:19 +00:00
|
|
|
// This is a convenience as the 0 in get[0] resolves to int :(
|
2013-09-03 01:53:03 +00:00
|
|
|
impl RowIndex for int {
|
2013-09-29 17:53:44 +00:00
|
|
|
#[inline]
|
2013-09-04 05:05:04 +00:00
|
|
|
fn idx(&self, _stmt: &NormalPostgresStatement) -> uint {
|
2013-09-03 01:53:03 +00:00
|
|
|
assert!(*self >= 0);
|
|
|
|
*self as uint
|
|
|
|
}
|
|
|
|
}
|
2013-09-03 00:07:08 +00:00
|
|
|
|
2013-09-03 01:53:03 +00:00
|
|
|
impl<'self> RowIndex for &'self str {
|
2013-09-29 17:53:44 +00:00
|
|
|
#[inline]
|
2013-09-04 05:05:04 +00:00
|
|
|
fn idx(&self, stmt: &NormalPostgresStatement) -> uint {
|
2013-09-03 01:53:03 +00:00
|
|
|
match stmt.find_col_named(*self) {
|
2013-09-03 00:07:08 +00:00
|
|
|
Some(idx) => idx,
|
2013-09-04 03:07:10 +00:00
|
|
|
None => fail2!("No column with name {}", *self)
|
2013-09-03 01:53:03 +00:00
|
|
|
}
|
2013-09-03 00:07:08 +00:00
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|