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
//! Contains the entry point code for handling an incoming connection.
//!
use std::net::TcpStream;
use net;
use auth;
use parse;
use super::query;
use net::types::*;
use storage::{ResultSet};
use storage::types::{SqlType, Column};
use std::error::Error;

pub fn handle(mut stream: TcpStream) {
    // Logging about the new connection
    let addr = stream.peer_addr()
        .map(|a| a.to_string())
        .unwrap_or("???".into());
    info!("Handling connection from {}", addr);

    // Perform handshake, check user login.
    let res = net::do_handshake(&mut stream);

    let mut user;
    match res {
        Ok((name, pw)) => {
            info!("Connection established. Handshake sent");
            user = match auth::find_user(&name, &pw) {
                Ok(u) => {
                    match net::send_info_package(&mut stream,
                        PkgType::AccGranted)
                    {
                        Ok(_) => u,
                        Err(e) => { error!("{}", e.description()); return }
                    }
                },
                Err(_) => {
                    let _ =
                        net::send_info_package(&mut stream, PkgType::AccDenied);
                    error!("Authentication failed. Connection closed.");
                    return
                }
            }
        },
        _ => {
            let _ = net::send_info_package(&mut stream, PkgType::AccDenied);
            error!("Authentication failed. Connection closed.");
            return
        }
    };

    // Read commands from the client (with help of `net`)
    loop {
        //get the command from the stream
        let command_res = net::read_commands(&mut stream);

        // Dispatch commands (handle easy ones directly, forward others)
        match command_res {
            Ok(cmd) =>
            match cmd {
                // exit the session and shutdown the connection
                Command::Quit => {
                    match net::send_info_package(&mut stream, PkgType::Ok) {
                        Ok(_) => {
                            debug!("Client disconnected properly.");
                            return
                        },
                        Err(_) =>
                            warn!("Failed to send packet. Connection close.")
                    }
                },
                // send OK-Package, unused value can be checked to try again and
                // eventually close to connection as timeout issue
                Command::Ping => {
                    match net::send_info_package(&mut stream, PkgType::Ok) {
                        Ok(_) => { },
                        Err(_) => warn!("Failed to send packet.")
                    }
                },
                // send the query string for parsing
                Command::Query(q) => {

                    debug!("Query received, dispatch query to parser.");

                    // Call parser to obtain AST
                    let ast = parse::parse(&q);

                    match ast {
                        Ok(tree) => {
                            debug!("{:?}", tree);

                            // Pass AST to query executer
                            let mut r2 = query::execute_from_ast(tree, &mut user);

                            debug!("{:?}", r2);

                            let r = r2.unwrap_or(
                                    ResultSet { data: vec![], columns: vec![
                                        Column::new("error", SqlType::Int, false,
                                        "error mind the error, not an error again, I hate errors",
                                        false)]
                                    }
                                );
                            // Send response package
                            match net::send_response_package(&mut stream, r) {
                                Ok(_) => { },
                                Err(_) => warn!("Failed to send packet.")
                            }
                        },

                        Err(error) => {
                            error!("{:?}", error);
                            match net::send_error_package(&mut stream,
                                net::Error::UnEoq(error).into())
                            {
                                Ok(_) => {},
                                Err(_) => warn!("Failed to send error.")
                            }
                        }
                    }
                    continue
                }
            },
            Err(_) => continue // TODO: error handling
        }
    }
}