2013-08-22 05:52:15 +00:00
|
|
|
extern mod extra;
|
2013-08-04 02:17:32 +00:00
|
|
|
|
2013-09-01 07:18:09 +00:00
|
|
|
use extra::container::Deque;
|
2013-08-26 05:08:37 +00:00
|
|
|
use extra::digest::Digest;
|
|
|
|
use extra::md5::Md5;
|
2013-08-27 04:19:24 +00:00
|
|
|
use extra::url::{UserInfo, Url};
|
2013-09-01 07:18:09 +00:00
|
|
|
use extra::ringbuf::RingBuf;
|
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-01 00:12:19 +00:00
|
|
|
use std::rt::io::{io_error, Decorator};
|
|
|
|
use std::rt::io::mem::MemWriter;
|
2013-08-22 05:52:15 +00:00
|
|
|
use std::rt::io::net::ip::SocketAddr;
|
|
|
|
use std::rt::io::net::tcp::TcpStream;
|
2013-08-04 02:17:32 +00:00
|
|
|
|
2013-08-22 05:52:15 +00:00
|
|
|
use message::*;
|
2013-08-30 05:58:26 +00:00
|
|
|
use types::{Oid, ToSql, FromSql};
|
2013-07-25 07:10:18 +00:00
|
|
|
|
2013-08-22 05:52:15 +00:00
|
|
|
mod message;
|
2013-08-28 04:36:27 +00:00
|
|
|
mod types;
|
2013-07-25 07:10:18 +00:00
|
|
|
|
2013-08-28 06:23:36 +00:00
|
|
|
macro_rules! match_read_message(
|
|
|
|
($conn:expr, { $($($p:pat)|+ => $e:expr),+ }) => (
|
|
|
|
match {
|
|
|
|
let ref conn = $conn;
|
|
|
|
let resp;
|
|
|
|
loop {
|
|
|
|
match conn.read_message() {
|
2013-08-29 03:25:15 +00:00
|
|
|
NoticeResponse { fields } => handle_notice_response(fields),
|
2013-08-28 06:23:36 +00:00
|
|
|
msg => {
|
|
|
|
resp = msg;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resp
|
|
|
|
} {
|
|
|
|
$(
|
|
|
|
$($p)|+ => $e
|
|
|
|
),+
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2013-08-29 03:25:15 +00:00
|
|
|
fn handle_notice_response(fields: ~[(u8, ~str)]) {
|
2013-08-29 04:24:43 +00:00
|
|
|
let err = PostgresDbError::new(fields);
|
|
|
|
info!("%s: %s", err.severity, err.message);
|
2013-08-28 06:23:36 +00:00
|
|
|
}
|
|
|
|
|
2013-08-27 04:19:24 +00:00
|
|
|
#[deriving(ToStr)]
|
|
|
|
pub enum PostgresConnectError {
|
|
|
|
InvalidUrl,
|
|
|
|
MissingUser,
|
2013-08-27 05:06:53 +00:00
|
|
|
DbError(PostgresDbError),
|
2013-08-27 04:19:24 +00:00
|
|
|
MissingPassword,
|
|
|
|
UnsupportedAuthentication
|
|
|
|
}
|
|
|
|
|
2013-08-27 05:06:53 +00:00
|
|
|
#[deriving(ToStr)]
|
2013-08-29 04:24:43 +00:00
|
|
|
pub enum PostgresErrorPosition {
|
|
|
|
Position(uint),
|
|
|
|
InternalPosition {
|
|
|
|
position: uint,
|
|
|
|
query: ~str
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(ToStr)]
|
|
|
|
pub struct PostgresDbError {
|
|
|
|
// This could almost be an enum, except the values can be localized :(
|
|
|
|
severity: ~str,
|
|
|
|
// Should probably end up as an enum
|
|
|
|
code: ~str,
|
|
|
|
message: ~str,
|
|
|
|
position: Option<PostgresErrorPosition>,
|
|
|
|
where: Option<~str>,
|
|
|
|
file: ~str,
|
|
|
|
line: uint,
|
|
|
|
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(),
|
|
|
|
code: map.pop(&('C' as u8)).unwrap(),
|
|
|
|
message: map.pop(&('M' as u8)).unwrap(),
|
|
|
|
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-08-27 05:06:53 +00:00
|
|
|
|
2013-08-29 06:19:53 +00:00
|
|
|
pub struct PostgresConnection {
|
|
|
|
priv stream: Cell<TcpStream>,
|
|
|
|
priv next_stmt_id: Cell<int>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for PostgresConnection {
|
|
|
|
fn drop(&self) {
|
|
|
|
do io_error::cond.trap(|_| {}).inside {
|
|
|
|
self.write_message(&Terminate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-18 03:30:31 +00:00
|
|
|
impl PostgresConnection {
|
2013-08-23 02:47:06 +00:00
|
|
|
pub fn connect(url: &str) -> PostgresConnection {
|
2013-08-27 04:19:24 +00:00
|
|
|
match PostgresConnection::try_connect(url) {
|
|
|
|
Ok(conn) => conn,
|
|
|
|
Err(err) => fail!("Failed to connect: %s", err.to_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_connect(url: &str) -> Result<PostgresConnection,
|
|
|
|
PostgresConnectError> {
|
|
|
|
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-08-27 05:06:53 +00:00
|
|
|
// This seems silly
|
|
|
|
let socket_url = format!("{:s}:{:s}", host,
|
|
|
|
port.unwrap_or_default(~"5432"));
|
2013-08-27 04:19:24 +00:00
|
|
|
let addr: SocketAddr = match FromStr::from_str(socket_url) {
|
|
|
|
Some(addr) => addr,
|
|
|
|
None => return Err(InvalidUrl)
|
|
|
|
};
|
2013-08-22 05:52:15 +00:00
|
|
|
|
|
|
|
let conn = PostgresConnection {
|
2013-08-27 04:19:24 +00:00
|
|
|
// Need to figure out what to do about unwrap here
|
2013-08-22 05:52:15 +00:00
|
|
|
stream: Cell::new(TcpStream::connect(addr).unwrap()),
|
2013-08-18 03:42:40 +00:00
|
|
|
next_stmt_id: Cell::new(0)
|
|
|
|
};
|
|
|
|
|
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-08-29 03:25:15 +00:00
|
|
|
conn.write_message(&StartupMessage {
|
|
|
|
version: PROTOCOL_VERSION,
|
|
|
|
parameters: args.as_slice()
|
|
|
|
});
|
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-08-28 06:23:36 +00:00
|
|
|
match_read_message!(conn, {
|
2013-08-29 03:25:15 +00:00
|
|
|
ParameterStatus { parameter, value } =>
|
|
|
|
info!("Parameter %s = %s", parameter, value),
|
2013-08-29 04:24:43 +00:00
|
|
|
BackendKeyData {_} => (),
|
|
|
|
ReadyForQuery {_} => break,
|
2013-08-23 05:24:14 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
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-01 00:12:19 +00:00
|
|
|
fn write_messages(&self, messages: &[&FrontendMessage]) {
|
|
|
|
let mut buf = MemWriter::new();
|
|
|
|
for &message in messages.iter() {
|
|
|
|
buf.write_message(message);
|
|
|
|
}
|
|
|
|
do self.stream.with_mut_ref |s| {
|
|
|
|
s.write(buf.inner_ref().as_slice());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
fn write_message(&self, message: &FrontendMessage) {
|
2013-08-22 05:52:15 +00:00
|
|
|
do self.stream.with_mut_ref |s| {
|
2013-08-22 06:41:26 +00:00
|
|
|
s.write_message(message);
|
2013-07-25 07:10:18 +00:00
|
|
|
}
|
2013-08-22 06:41:26 +00:00
|
|
|
}
|
2013-08-04 02:17:32 +00:00
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
fn read_message(&self) -> BackendMessage {
|
2013-08-22 05:52:15 +00:00
|
|
|
do self.stream.with_mut_ref |s| {
|
2013-08-22 06:41:26 +00:00
|
|
|
s.read_message()
|
2013-08-04 05:21:16 +00:00
|
|
|
}
|
2013-08-22 06:41:26 +00:00
|
|
|
}
|
|
|
|
|
2013-08-27 04:19:24 +00:00
|
|
|
fn handle_auth(&self, user: UserInfo) -> Option<PostgresConnectError> {
|
2013-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self, {
|
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-08-29 03:25:15 +00:00
|
|
|
self.write_message(&PasswordMessage { password: pass });
|
2013-08-28 06:23:36 +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-08-29 03:25:15 +00:00
|
|
|
self.write_message(&PasswordMessage {
|
|
|
|
password: output.as_slice()
|
|
|
|
});
|
2013-08-28 06:23:36 +00:00
|
|
|
},
|
2013-08-27 04:19:24 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
2013-08-27 04:19:24 +00:00
|
|
|
|
2013-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self, {
|
2013-08-27 04:19:24 +00:00
|
|
|
AuthenticationOk => None,
|
2013-08-29 04:24:43 +00:00
|
|
|
ErrorResponse { fields } =>
|
|
|
|
Some(DbError(PostgresDbError::new(fields))),
|
2013-08-27 04:19:24 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
2013-08-26 05:08:37 +00:00
|
|
|
}
|
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
pub fn prepare<'a>(&'a self, query: &str) -> PostgresStatement<'a> {
|
2013-08-27 05:06:53 +00:00
|
|
|
match self.try_prepare(query) {
|
|
|
|
Ok(stmt) => stmt,
|
|
|
|
Err(err) => fail!("Error preparing \"%s\": %s", query,
|
|
|
|
err.to_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_prepare<'a>(&'a self, query: &str)
|
|
|
|
-> Result<PostgresStatement<'a>, PostgresDbError> {
|
2013-08-22 06:41:26 +00:00
|
|
|
let id = self.next_stmt_id.take();
|
2013-08-27 02:38:02 +00:00
|
|
|
let stmt_name = format!("statement_{}", id);
|
2013-08-22 06:41:26 +00:00
|
|
|
self.next_stmt_id.put_back(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([
|
|
|
|
&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-08-29 05:33:27 +00:00
|
|
|
match_read_message!(self, {
|
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-08-23 05:24:14 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-29 05:33:27 +00:00
|
|
|
})
|
2013-08-22 06:41:26 +00:00
|
|
|
|
2013-08-30 05:58:26 +00:00
|
|
|
let param_types = match_read_message!(self, {
|
|
|
|
ParameterDescription { types } => types,
|
2013-08-23 05:24:14 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-30 05:58:26 +00:00
|
|
|
});
|
2013-08-22 06:41:26 +00:00
|
|
|
|
2013-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self, {
|
2013-08-29 03:25:15 +00:00
|
|
|
RowDescription {_} | NoData => (),
|
2013-08-23 05:24:14 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
2013-08-17 22:09:26 +00:00
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
self.wait_for_ready();
|
|
|
|
|
2013-08-27 05:06:53 +00:00
|
|
|
Ok(PostgresStatement {
|
2013-08-22 06:41:26 +00:00
|
|
|
conn: self,
|
|
|
|
name: stmt_name,
|
2013-08-30 05:58:26 +00:00
|
|
|
param_types: param_types,
|
2013-08-22 07:12:35 +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-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-08-23 05:24:14 +00:00
|
|
|
|
2013-08-27 05:40:23 +00:00
|
|
|
let trans = PostgresTransaction {
|
|
|
|
conn: self,
|
|
|
|
commit: Cell::new(true)
|
|
|
|
};
|
2013-08-23 05:24:14 +00:00
|
|
|
// If this fails, Postgres will rollback when the connection closes
|
2013-08-27 05:40:23 +00:00
|
|
|
let ret = blk(&trans);
|
2013-08-23 05:24:14 +00:00
|
|
|
|
2013-08-27 05:40:23 +00:00
|
|
|
if trans.commit.take() {
|
2013-08-23 07:13:42 +00:00
|
|
|
self.quick_query("COMMIT");
|
2013-08-23 05:24:14 +00:00
|
|
|
} else {
|
2013-08-23 07:13:42 +00:00
|
|
|
self.quick_query("ROLLBACK");
|
2013-08-23 05:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
|
2013-08-23 07:13:42 +00:00
|
|
|
fn quick_query(&self, query: &str) {
|
2013-08-29 03:25:15 +00:00
|
|
|
self.write_message(&Query { query: query });
|
2013-08-23 07:13:42 +00:00
|
|
|
|
|
|
|
loop {
|
2013-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self, {
|
2013-08-29 03:25:15 +00:00
|
|
|
ReadyForQuery {_} => break,
|
2013-08-29 04:24:43 +00:00
|
|
|
ErrorResponse { fields } =>
|
|
|
|
fail!("Error: %s", PostgresDbError::new(fields).to_str()),
|
2013-08-23 07:13:42 +00:00
|
|
|
_ => ()
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-22 06:41:26 +00:00
|
|
|
fn wait_for_ready(&self) {
|
2013-08-23 05:24:14 +00:00
|
|
|
loop {
|
2013-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self, {
|
2013-08-29 03:25:15 +00:00
|
|
|
ReadyForQuery {_} => break,
|
2013-08-23 05:24:14 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
2013-08-22 06:41:26 +00:00
|
|
|
}
|
2013-08-17 22:09:26 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-18 02:09:56 +00:00
|
|
|
|
2013-08-27 05:40:23 +00:00
|
|
|
pub struct PostgresTransaction<'self> {
|
|
|
|
priv conn: &'self PostgresConnection,
|
|
|
|
priv commit: Cell<bool>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'self> PostgresTransaction<'self> {
|
|
|
|
pub fn prepare<'a>(&'a self, query: &str) -> PostgresStatement<'a> {
|
|
|
|
self.conn.prepare(query)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_prepare<'a>(&'a self, query: &str)
|
|
|
|
-> Result<PostgresStatement<'a>, PostgresDbError> {
|
|
|
|
self.conn.try_prepare(query)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn will_commit(&self) -> bool {
|
|
|
|
let commit = self.commit.take();
|
|
|
|
self.commit.put_back(commit);
|
|
|
|
commit
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_commit(&self) {
|
|
|
|
self.commit.take();
|
|
|
|
self.commit.put_back(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_rollback(&self) {
|
|
|
|
self.commit.take();
|
|
|
|
self.commit.put_back(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-22 05:52:15 +00:00
|
|
|
pub struct PostgresStatement<'self> {
|
|
|
|
priv conn: &'self PostgresConnection,
|
2013-08-22 06:41:26 +00:00
|
|
|
priv name: ~str,
|
2013-08-30 05:58:26 +00:00
|
|
|
priv param_types: ~[Oid],
|
2013-08-22 07:12:35 +00:00
|
|
|
priv next_portal_id: Cell<uint>
|
|
|
|
}
|
|
|
|
|
|
|
|
#[unsafe_destructor]
|
|
|
|
impl<'self> Drop for PostgresStatement<'self> {
|
|
|
|
fn drop(&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-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self.conn, {
|
2013-08-29 03:25:15 +00:00
|
|
|
ReadyForQuery {_} => break,
|
2013-08-26 07:36:09 +00:00
|
|
|
_ => ()
|
2013-08-28 06:23:36 +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-08-22 05:52:15 +00:00
|
|
|
impl<'self> PostgresStatement<'self> {
|
2013-09-01 05:48:49 +00:00
|
|
|
fn bind(&self, portal_name: &str, params: &[&ToSql])
|
|
|
|
-> Option<PostgresDbError> {
|
2013-08-30 05:58:26 +00:00
|
|
|
let mut formats = ~[];
|
|
|
|
let mut values = ~[];
|
|
|
|
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-08-22 07:12:35 +00:00
|
|
|
let result_formats = [];
|
|
|
|
|
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
|
|
|
|
},
|
|
|
|
&Sync]);
|
2013-08-22 07:12:35 +00:00
|
|
|
|
2013-09-01 05:48:49 +00:00
|
|
|
let ret = match_read_message!(self.conn, {
|
2013-08-27 05:06:53 +00:00
|
|
|
BindComplete => None,
|
2013-08-29 04:24:43 +00:00
|
|
|
ErrorResponse { fields } => Some(PostgresDbError::new(fields)),
|
2013-08-23 05:24:14 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-09-01 05:48:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
self.conn.wait_for_ready();
|
|
|
|
|
|
|
|
ret
|
2013-08-23 05:24:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 03:47:36 +00:00
|
|
|
pub fn update(&self, params: &[&ToSql]) -> uint {
|
2013-08-27 05:06:53 +00:00
|
|
|
match self.try_update(params) {
|
|
|
|
Ok(count) => count,
|
|
|
|
Err(err) => fail!("Error running update: %s", err.to_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_update(&self, params: &[&ToSql])
|
|
|
|
-> Result<uint, PostgresDbError> {
|
2013-08-25 03:47:36 +00:00
|
|
|
// The unnamed portal is automatically cleaned up at sync time
|
2013-09-01 05:48:49 +00:00
|
|
|
match self.bind("", params) {
|
2013-08-27 05:06:53 +00:00
|
|
|
Some(err) => {
|
|
|
|
return Err(err);
|
|
|
|
}
|
|
|
|
None => ()
|
|
|
|
}
|
2013-08-22 07:12:35 +00:00
|
|
|
|
2013-09-01 05:48:49 +00:00
|
|
|
self.conn.write_messages([
|
|
|
|
&Execute {
|
|
|
|
portal: &"",
|
|
|
|
max_rows: 0
|
|
|
|
},
|
|
|
|
&Sync]);
|
|
|
|
|
2013-08-29 05:44:34 +00:00
|
|
|
let num;
|
2013-08-23 05:24:14 +00:00
|
|
|
loop {
|
2013-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self.conn, {
|
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-08-28 06:23:36 +00:00
|
|
|
},
|
2013-08-29 03:25:15 +00:00
|
|
|
DataRow {_} => (),
|
2013-08-29 05:44:34 +00:00
|
|
|
EmptyQueryResponse => {
|
|
|
|
num = 0;
|
|
|
|
break;
|
|
|
|
},
|
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-08-28 06:23:36 +00:00
|
|
|
},
|
2013-08-23 05:24:14 +00:00
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
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-01 06:19:44 +00:00
|
|
|
pub fn query(&'self self, params: &[&ToSql]) -> PostgresResult<'self> {
|
|
|
|
self.lazy_query(0, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_query(&'self self, params: &[&ToSql])
|
|
|
|
-> Result<PostgresResult<'self>, PostgresDbError> {
|
|
|
|
self.try_lazy_query(0, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn lazy_query(&'self self, row_limit: uint, params: &[&ToSql])
|
|
|
|
-> PostgresResult<'self> {
|
|
|
|
match self.try_lazy_query(row_limit, params) {
|
2013-08-27 05:06:53 +00:00
|
|
|
Ok(result) => result,
|
|
|
|
Err(err) => fail!("Error running query: %s", err.to_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 06:19:44 +00:00
|
|
|
pub fn try_lazy_query(&'self self, row_limit: uint, params: &[&ToSql])
|
|
|
|
-> Result<PostgresResult<'self>, PostgresDbError> {
|
2013-08-23 07:13:42 +00:00
|
|
|
let id = self.next_portal_id.take();
|
2013-08-27 02:38:02 +00:00
|
|
|
let portal_name = format!("{:s}_portal_{}", self.name.as_slice(), id);
|
2013-08-23 07:13:42 +00:00
|
|
|
self.next_portal_id.put_back(id + 1);
|
|
|
|
|
2013-09-01 05:48:49 +00:00
|
|
|
match self.bind(portal_name, params) {
|
2013-08-27 05:06:53 +00:00
|
|
|
Some(err) => {
|
|
|
|
self.conn.wait_for_ready();
|
|
|
|
return Err(err);
|
|
|
|
}
|
|
|
|
None => ()
|
|
|
|
}
|
2013-08-23 07:13:42 +00:00
|
|
|
|
2013-09-01 05:48:49 +00:00
|
|
|
let mut result = PostgresResult {
|
2013-08-23 07:13:42 +00:00
|
|
|
stmt: self,
|
|
|
|
name: portal_name,
|
2013-09-01 07:18:09 +00:00
|
|
|
data: RingBuf::new(),
|
2013-09-01 06:19:44 +00:00
|
|
|
more_rows: true,
|
|
|
|
max_rows: row_limit
|
2013-09-01 05:48:49 +00:00
|
|
|
};
|
|
|
|
result.execute();
|
|
|
|
|
|
|
|
Ok(result)
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PostgresResult<'self> {
|
|
|
|
priv stmt: &'self PostgresStatement<'self>,
|
|
|
|
priv name: ~str,
|
2013-09-01 07:18:09 +00:00
|
|
|
priv data: RingBuf<~[Option<~[u8]>]>,
|
2013-09-01 06:19:44 +00:00
|
|
|
priv max_rows: uint,
|
2013-09-01 05:48:49 +00:00
|
|
|
priv more_rows: bool
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[unsafe_destructor]
|
|
|
|
impl<'self> Drop for PostgresResult<'self> {
|
|
|
|
fn drop(&self) {
|
2013-08-26 07:36:09 +00:00
|
|
|
do io_error::cond.trap(|_| {}).inside {
|
2013-09-01 00:12:19 +00:00
|
|
|
self.stmt.conn.write_messages([
|
2013-09-01 05:48:49 +00:00
|
|
|
&Close {
|
|
|
|
variant: 'P' as u8,
|
|
|
|
name: self.name.as_slice()
|
|
|
|
},
|
|
|
|
&Sync]);
|
2013-08-26 07:36:09 +00:00
|
|
|
loop {
|
2013-08-28 06:23:36 +00:00
|
|
|
match_read_message!(self.stmt.conn, {
|
2013-08-29 03:25:15 +00:00
|
|
|
ReadyForQuery {_} => break,
|
2013-08-26 07:36:09 +00:00
|
|
|
_ => ()
|
2013-08-28 06:23:36 +00:00
|
|
|
})
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 04:55:15 +00:00
|
|
|
impl<'self> Iterator<PostgresRow> for PostgresResult<'self> {
|
|
|
|
fn next(&mut self) -> Option<PostgresRow> {
|
2013-09-01 06:19:44 +00:00
|
|
|
if self.data.is_empty() && self.more_rows {
|
|
|
|
self.execute();
|
|
|
|
}
|
|
|
|
|
2013-09-01 07:18:09 +00:00
|
|
|
do self.data.pop_front().chain |row| {
|
|
|
|
Some(PostgresRow { data: row })
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 05:48:49 +00:00
|
|
|
impl<'self> PostgresResult<'self> {
|
|
|
|
fn execute(&mut self) {
|
|
|
|
self.stmt.conn.write_messages([
|
|
|
|
&Execute {
|
|
|
|
portal: self.name,
|
2013-09-01 06:19:44 +00:00
|
|
|
max_rows: self.max_rows as i32
|
2013-09-01 05:48:49 +00:00
|
|
|
},
|
|
|
|
&Sync]);
|
|
|
|
|
|
|
|
loop {
|
|
|
|
match_read_message!(self.stmt.conn, {
|
|
|
|
EmptyQueryResponse |
|
|
|
|
CommandComplete {_} => {
|
|
|
|
self.more_rows = false;
|
|
|
|
break;
|
|
|
|
},
|
2013-09-01 07:18:09 +00:00
|
|
|
DataRow { row } => self.data.push_back(row),
|
2013-09-01 05:48:49 +00:00
|
|
|
PortalSuspended => {
|
|
|
|
self.more_rows = true;
|
|
|
|
break;
|
|
|
|
},
|
|
|
|
resp => fail!("Bad response: %?", resp.to_str())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
self.stmt.conn.wait_for_ready();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 04:55:15 +00:00
|
|
|
pub struct PostgresRow {
|
|
|
|
priv data: ~[Option<~[u8]>]
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
|
2013-09-01 04:55:15 +00:00
|
|
|
impl<'self> Container for PostgresRow {
|
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-01 04:55:15 +00:00
|
|
|
impl<T: FromSql> Index<uint, T> for PostgresRow {
|
2013-08-23 07:13:42 +00:00
|
|
|
fn index(&self, idx: &uint) -> T {
|
|
|
|
self.get(*idx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 04:55:15 +00:00
|
|
|
impl PostgresRow {
|
2013-08-23 07:13:42 +00:00
|
|
|
pub fn get<T: FromSql>(&self, idx: uint) -> T {
|
2013-09-01 04:55:15 +00:00
|
|
|
FromSql::from_sql(&self.data[idx])
|
2013-08-23 07:13:42 +00:00
|
|
|
}
|
|
|
|
}
|