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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
//! A fast and thread-safe two-way hash map of sets. It is best suited where you need to associate
//! two collumns uniquely. Each key is associated to one or more other unique values.
//!
//! A `BisetMap<L, R>` is a Multi-Hash-Map between values of type `L`, called left values, and values
//! of type `R`, called right values. This means every left value is associated with one or more
//! right values and vice versa. Compare this to a [`HashMap`], where every key is associated with
//! exactly one value.
//!
//! The structure is interior mutable and all operations are thread safe. Each clone provides access
//! to the same underlying data. Serialize and Deserialize from serde are also implemented.
//!
//! Internally, a `BisetMap` is composed of two `HashMap`s, one for the left-to-right direction and
//! one for right-to-left. As such, the big-O performance of the `get`, `remove`, `insert`, and
//! `contains` methods are the same as those of a `HashMap`.
//!
//! As with `HashMap`, it is considered a logic error to modify a value's hash while it is in the
//! `BisetMap` using a `Cell`, `RefCell`, etc.
//!
//! # Examples
//!
//! ```
//! use bisetmap::BisetMap;
//!
//! let subscriptions = BisetMap::new();
//!
//! // insert client-ids and subscription topics
//! subscriptions.insert("Bob", "Tech");
//! subscriptions.insert("Bob", "Math");
//! subscriptions.insert("Alice", "Tech");
//! subscriptions.insert("Alice", "Romance");
//!
//! // retrieve topic by client-id (left to right)
//! assert_eq!(subscriptions.get(&"Bob"), ["Math", "Tech"]);
//! assert_eq!(subscriptions.get(&"Alice"), ["Romance", "Tech"]);
//!
//! // retrieve clients by topic (right to left)
//! assert_eq!(subscriptions.rev_get(&"Tech"), ["Alice", "Bob"]);
//! assert_eq!(subscriptions.rev_get(&"Math"), ["Bob"]);
//!
//! // check membership
//! assert!(subscriptions.contains(&"Bob", &"Math"));
//! assert!(!subscriptions.contains(&"Bob", &"Romance"));
//!
//! // check key/value existence
//! assert!(subscriptions.key_exists(&"Alice"));
//! assert!(subscriptions.value_exists(&"Tech"));
//! ```
//!
//! ## Insertion and Uniqueness
//!
//! Consider the following example:
//!
//! ```
//! use bisetmap::BisetMap;
//!
//! let bmap = BisetMap::new();
//! bmap.insert('a', 1);
//! bmap.insert('a', 1); // what to do here?
//! ```
//!
//! Duplicate key-value pairs are ignored and inserted only once
//!
//! [`HashMap`]: https://doc.rust-lang.org/std/collections/struct.HashMap.html

extern crate serde;

use std::collections::{HashMap, HashSet};
use std::marker::PhantomData;
use std::sync::{Mutex, Arc};
use std::hash::Hash;
use std::fmt;

use serde::de::{Deserialize, Deserializer, Visitor, MapAccess};
use serde::ser::{Serialize, Serializer, SerializeMap};


/// A two-way map between keys (left) and values (right).
///
/// See the [module-level documentation] for more details and examples.
///
/// [module-level documentation]: index.html
#[derive(Clone)]
pub struct BisetMap<L:Eq+Hash+Clone, R:Eq+Hash+Clone> {
	hh: Arc<Mutex<(HashMap<L, HashSet<R>>, HashMap<R, HashSet<L>>)>>
}


fn insert_item<L:Eq+Hash, R:Eq+Hash>(h: &mut HashMap<L, HashSet<R>>, k: L, v: R) {
	let s = h.entry(k).or_insert_with(HashSet::new);
	s.insert(v);
}

fn remove_item<L:Eq+Hash, R:Eq+Hash>(h: &mut HashMap<L, HashSet<R>>, k: L, v: &R) {
	if let std::collections::hash_map::Entry::Occupied(mut e) = h.entry(k) {
		e.get_mut().remove(v);
		if e.get().is_empty() {
			e.remove_entry();
		}
	}
}

fn get_item<L:Eq+Hash, R:Eq+Hash+Clone>(h: &HashMap<L, HashSet<R>>, k: &L) -> Vec<R> {
	match h.get(k) {
		Some(s) => s.iter().map(Clone::clone).collect(),
		None => vec![]
	}
}

fn remove_items<L:Eq+Hash, R:Eq+Hash+Clone>(h1: &mut HashMap<L, HashSet<R>>, h2: &mut HashMap<R, HashSet<L>>, k: &L) -> Vec<R> {
	match h1.remove(k) {
		Some(s) => {
			let r = s.iter().map(Clone::clone).collect();
			for v in s {
				remove_item(h2, v, k)
			}
			r
		},
		None => vec![]
	}
}

impl<L:Eq+Hash+Clone, R:Eq+Hash+Clone> BisetMap<L, R> {
    /// Creates an empty `BisetMap`.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap: BisetMap<char, u32> = BisetMap::new();
	/// ```
	pub fn new() -> BisetMap<L, R> {
		BisetMap::default()
	}

    /// Creates an empty `BisetMap` with the given capacity.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap: BisetMap<char, u32> = BisetMap::with_capacity(5);
	/// ```
	pub fn with_capacity(capacity: usize) -> BisetMap<L, R> {
		BisetMap {
        	hh: Arc::new(Mutex::new( (HashMap::with_capacity(capacity), HashMap::with_capacity(capacity)) ))
        }
	}

    /// Removes all key-value pairs from the `BisetMap`, but keeps the allocated memory for reuse.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('b', 2);
    /// bmap.insert('c', 3);
    /// bmap.clear();
    /// assert!(bmap.len() == 0);
	/// ```
	pub fn clear(&self) {
		let (ref mut h1, ref mut h2) = *self.hh.lock().unwrap();
		h1.clear();
		h2.clear();
	}

    /// Returns a new BisetMap where keys and values are swapped.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('b', 2);
    /// bmap.insert('c', 3);
    /// let rmap = bmap.rev();
    /// assert_eq!(rmap.get(&1), ['a']);
	/// ```
	pub fn rev(&self) -> BisetMap<R, L> {
		let (ref h1, ref h2) = *self.hh.lock().unwrap();
		BisetMap {
        	hh: Arc::new(Mutex::new( (h2.clone(), h1.clone()) ))
        }
	}

    /// Returns a vector of (key,values) pairs, where values itself is a vector.
    /// (Order of all pairs is unknown)
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('a', 2);
    /// bmap.insert('b', 3);
    /// assert_eq!(bmap.collect(), vec![('a',vec![1,2]), ('b',vec![3])]);
	/// ```
	pub fn collect(&self) -> Vec<(L, Vec<R>)> {
		self.hh.lock().unwrap().0
			.iter()
			.map(|(l, r)| (l.clone(), r.iter().map(Clone::clone).collect()))
			.collect()
	}

    /// Returns a vector of (key,value) pairs.
    /// (Order of pairs is unknown)
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('a', 2);
    /// bmap.insert('b', 3);
    /// assert_eq!(bmap.flat_collect(), [('a',1), ('a',2), ('b',3)]);
	/// ```
	pub fn flat_collect(&self) -> Vec<(L, R)> {
		self.hh.lock().unwrap().0
			.iter()
			.flat_map(|(l, rs)| rs.iter().map(move |r| (l.clone(), r.clone())))
			.collect()
	}

    /// Inserts the given key-value pair into the `BisetMap`.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('a', 1);
    /// bmap.insert('a', 2);
    /// bmap.insert('b', 3);
    /// assert_eq!(bmap.flat_collect(), [('a',1), ('a',2), ('b',3)]);
	/// ```
	pub fn insert(&self, k: L, v: R) {
		let (ref mut h1, ref mut h2) = *self.hh.lock().unwrap();
		insert_item(h1, k.clone(), v.clone());
		insert_item(h2, v, k);
	}

    /// Removes the specified key-value pair from the `BisetMap`.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('a', 1);
    /// bmap.insert('a', 2);
    /// bmap.insert('c', 3);
    /// assert_eq!(bmap.len(), 2);
    /// assert_eq!(bmap.rev_len(), 3);
    /// bmap.remove(&'a', &2);
    /// assert_eq!(bmap.len(), 2);
    /// assert_eq!(bmap.rev_len(), 2);
	/// ```
	pub fn remove(&self, k: &L, v: &R) {
		let (ref mut h1, ref mut h2) = *self.hh.lock().unwrap();
		remove_item(h1, k.clone(), &v.clone());
		remove_item(h2, v.clone(), &k.clone());
	}

    /// Returns `true` if the map contains the given key-value pair and `false` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// assert!(bmap.contains(&'a', &1));
    /// assert!(!bmap.contains(&'b', &1));
    /// assert!(!bmap.contains(&'a', &2));
	/// ```
	pub fn contains(&self, k: &L, v: &R) -> bool {
		match self.hh.lock().unwrap().0.get(k) {
			Some(s) => s.contains(v),
			None => false
		}
	}

    /// Returns `true` if the map contains the given key (left) value and `false` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// assert!(bmap.key_exists(&'a'));
    /// assert!(!bmap.key_exists(&'b'));
	/// ```
	pub fn key_exists(&self, k: &L) -> bool {
		self.hh.lock().unwrap().0.contains_key(k)
	}

    /// Returns `true` if the map contains the given value (right) and `false` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// assert!(bmap.value_exists(&1));
    /// assert!(!bmap.value_exists(&2));
	/// ```
	pub fn value_exists(&self, v: &R) -> bool {
		self.hh.lock().unwrap().1.contains_key(v)
	}

    /// Returns a vector of values (right) corresponding to the given key (left).
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// assert_eq!(bmap.get(&'a'), [1]);
    /// assert_eq!(bmap.get(&'z'), []);
	/// ```
	pub fn get(&self, k: &L) -> Vec<R> {
		get_item(&self.hh.lock().unwrap().0, &k)
	}

    /// Returns a vector of keys (left) corresponding to the given value (right).
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// assert_eq!(bmap.rev_get(&1), ['a']);
    /// assert_eq!(bmap.rev_get(&2), []);
	/// ```
	pub fn rev_get(&self, v: &R) -> Vec<L> {
		get_item(&self.hh.lock().unwrap().1, &v)
	}

    /// Removes the specified key and all values associated with it.
    ///
    /// Returns a vector of previous values associated with given key.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('a', 2);
    /// bmap.insert('c', 3);
    /// assert_eq!(bmap.delete(&'a'), [1, 2]);
    /// assert_eq!(bmap.len(), 1);
	/// ```
	pub fn delete(&self, k: &L) -> Vec<R> {
		let (ref mut h1, ref mut h2) = *self.hh.lock().unwrap();
		remove_items(h1, h2, &k)
	}

    /// Removes the specified value and all keys associated with it.
    ///
    /// Returns a vector of previous keys associated with given value.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('b', 1);
    /// bmap.insert('c', 2);
    /// assert_eq!(bmap.rev_delete(&1), ['a', 'b']);
    /// assert_eq!(bmap.len(), 1);
	/// ```
	pub fn rev_delete(&self, v: &R) -> Vec<L> {
		let (ref mut h1, ref mut h2) = *self.hh.lock().unwrap();
		remove_items(h2, h1, &v)
	}

    /// Returns the number of unique keys (left).
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('b', 2);
    /// bmap.insert('c', 3);
    /// bmap.insert('c', 4);
    /// assert_eq!(bmap.len(), 3);
	/// ```
	pub fn len(&self) -> usize {
		self.hh.lock().unwrap().0.len()
	}

    /// Returns the number of unique values (right).
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// bmap.insert('a', 1);
    /// bmap.insert('b', 2);
    /// bmap.insert('c', 3);
    /// bmap.insert('d', 3);
    /// assert_eq!(bmap.rev_len(), 3);
	/// ```
	pub fn rev_len(&self) -> usize {
		self.hh.lock().unwrap().1.len()
	}

    /// Returns `true` if the map contains no key-value pairs, and `false` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use bisetmap::BisetMap;
    ///
    /// let bmap = BisetMap::new();
    /// assert!(bmap.is_empty());
    /// bmap.insert('a', 1);
    /// assert!(!bmap.is_empty());
    /// bmap.rev_delete(&1);
    /// assert!(bmap.is_empty());
	/// ```
	pub fn is_empty(&self) -> bool {
		self.hh.lock().unwrap().0.is_empty()
	}
}


impl<L: Eq+Hash+Clone, R: Eq+Hash+Clone> Default for BisetMap<L,R> {
    fn default() -> BisetMap<L, R> {
        BisetMap {
        	hh: Arc::new(Mutex::new( (HashMap::default(), HashMap::default()) ))
        }
    }
}

impl<L: Eq+Hash+Clone+fmt::Debug, R: Eq+Hash+Clone+fmt::Debug> fmt::Debug for BisetMap<L, R> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{{")?;
        for (i, (left, right)) in self.hh.lock().unwrap().0.iter().enumerate() {
            let comma = if i == 0 { "" } else { ", " };
            write!(f, "{}{:?} => {:?}", comma, left, right)?;
        }
        write!(f, "}}")?;
        Ok(())
    }
}





impl<L:Eq+Hash+Clone+Serialize, R:Eq+Hash+Clone+Serialize> Serialize for BisetMap<L, R> {
    fn serialize<S:Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
    	let data = self.collect();
        let mut map = serializer.serialize_map(Some(data.len()))?;
        for (k, v) in data {
            map.serialize_entry(&k, &v)?;
        }
        map.end()
    }
}


struct BisetMapVisitor<L:Eq+Hash+Clone, R:Eq+Hash+Clone> {
    marker: PhantomData<fn() -> BisetMap<L, R>>
}

impl<L:Eq+Hash+Clone, R:Eq+Hash+Clone> BisetMapVisitor<L, R> {
    fn new() -> Self {
        BisetMapVisitor {
            marker: PhantomData
        }
    }
}

impl<'de, L:Eq+Hash+Clone+Deserialize<'de>, R:Eq+Hash+Clone+Deserialize<'de>> Visitor<'de> for BisetMapVisitor<L, R> {
    type Value = BisetMap<L, R>;

    fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
        formatter.write_str("a biset map")
    }

    fn visit_map<M: MapAccess<'de>>(self, mut access: M) -> Result<Self::Value, M::Error> {
        let bmap = BisetMap::with_capacity(access.size_hint().unwrap_or(0));
        while let Some((key, values)) = access.next_entry::<L, Vec<R>>()? {
        	for value in values {
            	bmap.insert(key.clone(), value);
            }
        }
        Ok(bmap)
    }
}

impl<'de, L:Eq+Hash+Clone+Deserialize<'de>, R:Eq+Hash+Clone+Deserialize<'de>> Deserialize<'de> for BisetMap<L, R> {
    fn deserialize<D:Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
        deserializer.deserialize_map(BisetMapVisitor::new())
    }
}






#[cfg(test)]
mod tests {
	use BisetMap;

	#[test]
	fn test1() {
		let h = BisetMap::new();
		h.insert("sdf", "sdfsd");
		h.insert("sdf", "sdfsd");
    	h.insert("a", "1");
    	h.insert("b", "1");
    	h.insert("c", "2");
    	h.insert("c", "3");
    	h.insert("c", "4");

    	println!("{:?}", h);
    	println!("{:?}", h.rev());
    	println!("{:?}", h.collect());
	}

    #[test]
    fn clone_works_with_same_internal_memory() {
    	let h1 = BisetMap::new();
    	let h2 = h1.clone();
    	h1.insert("hello", "world");
        assert_eq!(h2.get(&"hello"), ["world"]);
    }

    #[test]
    fn test_len_function() {
    	let h = BisetMap::new();
    	assert_eq!(h.len(), 0);
    	assert_eq!(h.rev_len(),0);

    	h.insert("a", "1");
    	h.insert("b", "1");
    	h.insert("c", "2");
    	assert_eq!(h.len(), 3);
    	assert_eq!(h.rev_len(),2);

    	h.rev_delete(&"1");
    	assert_eq!(h.len(), 1);
    	assert_eq!(h.rev_len(),1);
    }

    #[test]
    fn is_empty_after_removal() {
    	let h = BisetMap::new();
        assert!(h.is_empty());

    	h.insert("a", "1");
    	h.insert("b", "1");
    	h.insert("c", "2");
        assert!(!h.is_empty());

        h.rev_delete(&"1");
        h.delete(&"c");
        assert!(h.is_empty());
    }
}