|
@@ -1,42 +1,56 @@
|
|
|
use crate::db::Db;
|
|
|
use std::collections::BTreeMap;
|
|
|
use std::net::SocketAddr;
|
|
|
-use std::sync::{Arc, Mutex};
|
|
|
+use std::sync::{Arc, RwLock};
|
|
|
|
|
|
pub struct Connections {
|
|
|
- connections: BTreeMap<u128, Arc<Mutex<Connection>>>,
|
|
|
- counter: u128,
|
|
|
+ connections: RwLock<BTreeMap<u128, Arc<Connection>>>,
|
|
|
+ counter: RwLock<u128>,
|
|
|
}
|
|
|
|
|
|
impl Connections {
|
|
|
pub fn new() -> Self {
|
|
|
Self {
|
|
|
- counter: 0,
|
|
|
- connections: BTreeMap::new(),
|
|
|
+ counter: RwLock::new(0),
|
|
|
+ connections: RwLock::new(BTreeMap::new()),
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- pub fn new_connection(&mut self, db: Arc<Db>, addr: SocketAddr) -> Arc<Mutex<Connection>> {
|
|
|
- let id = self.counter;
|
|
|
- let conn = Arc::new(Mutex::new(Connection {
|
|
|
- id,
|
|
|
+ pub fn remove(self: Arc<Connections>, conn: Arc<Connection>) {
|
|
|
+ let id = conn.id();
|
|
|
+ self.connections.write().unwrap().remove(&id);
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn new_connection(self: &Arc<Connections>, db: Arc<Db>, addr: SocketAddr) -> Arc<Connection> {
|
|
|
+ let mut id = self.counter.write().unwrap();
|
|
|
+
|
|
|
+ let conn = Arc::new(Connection {
|
|
|
+ id: *id,
|
|
|
db,
|
|
|
addr,
|
|
|
+ connections: self.clone(),
|
|
|
current_db: 0,
|
|
|
- name: None,
|
|
|
- }));
|
|
|
- self.counter += 1;
|
|
|
- self.connections.insert(id, conn.clone());
|
|
|
+ name: RwLock::new(None),
|
|
|
+ });
|
|
|
+ self.connections.write().unwrap().insert(*id, conn.clone());
|
|
|
+ *id += 1;
|
|
|
conn
|
|
|
}
|
|
|
+
|
|
|
+ pub fn iter(&self, f: &mut dyn FnMut(Arc<Connection>)) {
|
|
|
+ for (_, value) in self.connections.read().unwrap().iter() {
|
|
|
+ f(value.clone())
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
pub struct Connection {
|
|
|
id: u128,
|
|
|
db: Arc<Db>,
|
|
|
current_db: u32,
|
|
|
+ connections: Arc<Connections>,
|
|
|
addr: SocketAddr,
|
|
|
- name: Option<String>,
|
|
|
+ name: RwLock<Option<String>>,
|
|
|
}
|
|
|
|
|
|
impl Connection {
|
|
@@ -48,12 +62,21 @@ impl Connection {
|
|
|
self.id
|
|
|
}
|
|
|
|
|
|
- pub fn name(&self) -> &Option<String> {
|
|
|
- &self.name
|
|
|
+ pub fn destroy(self: Arc<Connection>) {
|
|
|
+ self.connections.clone().remove(self);
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn all_connections(&self) -> Arc<Connections> {
|
|
|
+ self.connections.clone()
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn name(&self) -> Option<String> {
|
|
|
+ self.name.read().unwrap().clone()
|
|
|
}
|
|
|
|
|
|
- pub fn set_name(&mut self, name: String) {
|
|
|
- self.name = Some(name);
|
|
|
+ pub fn set_name(&self, name: String) {
|
|
|
+ let mut r = self.name.write().unwrap();
|
|
|
+ *r = Some(name);
|
|
|
}
|
|
|
|
|
|
#[allow(dead_code)]
|
|
@@ -64,7 +87,7 @@ impl Connection {
|
|
|
pub fn info(&self) -> String {
|
|
|
format!(
|
|
|
"id={} addr={} name={:?} db={}\r\n",
|
|
|
- self.id, self.addr, self.name, self.current_db
|
|
|
+ self.id, self.addr, self.name.read().unwrap(), self.current_db
|
|
|
)
|
|
|
}
|
|
|
}
|