collection: Improved the description of Container[E]
[nit.git] / lib / standard / collection / abstract_collection.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2004-2008 Jean Privat <jean@pryen.org>
4 #
5 # This file is free software, which comes along with NIT. This software is
6 # distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
7 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
8 # PARTICULAR PURPOSE. You can modify it is you want, provided this header
9 # is kept unaltered, and a notification of the changes is added.
10 # You are allowed to redistribute it and sell it, alone or is a part of
11 # another product.
12
13 # This module define several abstract collection classes.
14 module abstract_collection
15
16 import kernel
17
18 # The root of the collection hierarchy.
19 #
20 # Collections modelize finite groups of objects, called elements.
21 #
22 # The specific behavior and representation of collections is determined
23 # by the subclasses of the hierarchy.
24 #
25 # The main service of Collection is to provide a stable `iterator`
26 # method usable to retrieve all the elements of the collection.
27 #
28 # Additional services are provided.
29 # For an implementation point of view, Collection provide a basic
30 # implementation of these services using the `iterator` method.
31 # Subclasses often provide a more efficient implementation.
32 #
33 # Because of the `iterator` method, Collections instances can use
34 # the `for` control structure:
35 #
36 # var x: Collection[U]
37 # # ...
38 # for u in x do
39 # # u is a U
40 # # ...
41 # end
42 #
43 # that is equivalent with
44 #
45 # var x: Collection[U]
46 # # ...
47 # var i = x.iterator
48 # while i.is_ok do
49 # var u = i.item # u is a U
50 # # ...
51 # i.next
52 # end
53 interface Collection[E]
54 # Get a new iterator on the collection.
55 fun iterator: Iterator[E] is abstract
56
57 # Is there no item in the collection?
58 #
59 # assert [1,2,3].is_empty == false
60 # assert [1..1[.is_empty == true
61 fun is_empty: Bool do return length == 0
62
63 # Number of items in the collection.
64 #
65 # assert [10,20,30].length == 3
66 # assert [20..30[.length == 10
67 fun length: Int
68 do
69 var nb = 0
70 for i in self do nb += 1
71 return nb
72 end
73
74
75 # Is `item` in the collection ?
76 # Comparisons are done with ==
77 #
78 # assert [1,2,3].has(2) == true
79 # assert [1,2,3].has(9) == false
80 # assert [1..5[.has(2) == true
81 # assert [1..5[.has(9) == false
82 fun has(item: E): Bool
83 do
84 for i in self do if i == item then return true
85 return false
86 end
87
88 # Is the collection contain only `item`?
89 # Comparisons are done with ==
90 # Return true if the collection is empty.
91 #
92 # assert [1,1,1].has_only(1) == true
93 # assert [1,2,3].has_only(1) == false
94 # assert [1..1].has_only(1) == true
95 # assert [1..3].has_only(1) == false
96 # assert [3..3[.has_only(1) == true # empty collection
97 #
98 # ENSURE `is_empty implies result == true`
99 fun has_only(item: E): Bool
100 do
101 for i in self do if i != item then return false
102 return true
103 end
104
105 # How many occurrences of `item` are in the collection?
106 # Comparisons are done with ==
107 #
108 # assert [10,20,10].count(10) == 2
109 fun count(item: E): Int
110 do
111 var nb = 0
112 for i in self do if i == item then nb += 1
113 return nb
114 end
115
116 # Return the first item of the collection
117 #
118 # assert [1,2,3].first == 1
119 fun first: E
120 do
121 assert length > 0
122 return iterator.item
123 end
124
125 # Is the collection contains all the elements of `other`?
126 #
127 # assert [1,1,1].has_all([1]) == true
128 # assert [1,1,1].has_all([1,2]) == false
129 # assert [1,3,4,2].has_all([1..2]) == true
130 # assert [1,3,4,2].has_all([1..5]) == false
131 fun has_all(other: Collection[E]): Bool
132 do
133 for x in other do if not has(x) then return false
134 return true
135 end
136 end
137
138 # Instances of the Iterator class generates a series of elements, one at a time.
139 # They are mainly used with collections.
140 interface Iterator[E]
141 # The current item.
142 # Require `is_ok`.
143 fun item: E is abstract
144
145 # Jump to the next item.
146 # Require `is_ok`.
147 fun next is abstract
148
149 # Is there a current item ?
150 fun is_ok: Bool is abstract
151 end
152
153 # A collection that contains only one item.
154 # Used to pass arguments by reference
155 class Container[E]
156 super Collection[E]
157
158 redef fun first do return _item
159
160 redef fun is_empty do return false
161
162 redef fun length do return 1
163
164 redef fun has(an_item) do return _item == an_item
165
166 redef fun has_only(an_item) do return _item == an_item
167
168 redef fun count(an_item)
169 do
170 if _item == an_item then
171 return 1
172 else
173 return 0
174 end
175 end
176
177 redef fun iterator do return new ContainerIterator[E](self)
178
179 # Create a new instance with a given initial value.
180 init(e: E) do _item = e
181
182 # The stored item
183 readable writable var _item: E
184 end
185
186 # This iterator is quite stupid since it is used for only one item.
187 class ContainerIterator[E]
188 super Iterator[E]
189 redef fun item do return _container.item
190
191 redef fun next do _is_ok = false
192
193 init(c: Container[E]) do _container = c
194
195 redef readable var _is_ok: Bool = true
196
197 var _container: Container[E]
198 end
199
200 # Items can be removed from this collection
201 interface RemovableCollection[E]
202 super Collection[E]
203 # Remove all items
204 fun clear is abstract
205
206 # Remove an occucence of `item`
207 fun remove(item: E) is abstract
208
209 # Remove all occurences of `item`
210 fun remove_all(item: E) do while has(item) do remove(item)
211 end
212
213 # Items can be added to these collections.
214 interface SimpleCollection[E]
215 super RemovableCollection[E]
216 # Add an item in a collection.
217 # Ensure col.has(item)
218 fun add(item: E) is abstract
219
220 # Add each item of `coll`.
221 fun add_all(coll: Collection[E]) do for i in coll do add(i)
222 end
223
224 # Abstract sets.
225 #
226 # Set contains contains only one element with the same value (according to ==).
227 # var s: Set[String] = new ArraySet[String]
228 # var a = "Hello"
229 # var b = "Hel" + "lo"
230 # # ...
231 # s.add(a)
232 # assert s.has(b) == true
233 interface Set[E: Object]
234 super SimpleCollection[E]
235
236 redef fun has_only(item)
237 do
238 var l = length
239 if l == 1 then
240 return has(item)
241 else if l == 0 then
242 return true
243 else
244 return false
245 end
246 end
247
248 # Only 0 or 1
249 redef fun count(item)
250 do
251 if has(item) then
252 return 1
253 else
254 return 0
255 end
256 end
257
258 # Synonym of remove since there is only one item
259 redef fun remove_all(item) do remove(item)
260
261 # Equality is defined on set and means that each set contains the same elements
262 redef fun ==(other)
263 do
264 if not other isa Set[Object] then return false
265 if other.length != length then return false
266 return has_all(other)
267 end
268
269 # because of the law between `==` and `hash`, hash is redefined to be the sum of the hash of the elements
270 redef fun hash
271 do
272 var res = 0
273 for e in self do res += res.hash
274 return res
275 end
276 end
277
278 # MapRead are abstract associative collections: `key` -> `item`.
279 interface MapRead[K: Object, E]
280 # Get the item at `key`.
281 fun [](key: K): E is abstract
282
283 # Get the item at `key` or return `default` if not in map
284 fun get_or_default(key: K, default: E): E
285 do
286 if has_key(key) then return self[key]
287 return default
288 end
289
290 # Depreciated alias for `keys.has`
291 fun has_key(key: K): Bool do return self.keys.has(key)
292
293 # Get a new iterator on the map.
294 fun iterator: MapIterator[K, E] is abstract
295
296 # Return the point of view of self on the values only.
297 # Note that `self` and `values` are views on the same data;
298 # therefore any modification of one is visible on the other.
299 fun values: Collection[E] is abstract
300
301 # Return the point of view of self on the keys only.
302 # Note that `self` and `keys` are views on the same data;
303 # therefore any modification of one is visible on the other.
304 fun keys: Collection[K] is abstract
305
306 # Is there no item in the collection?
307 fun is_empty: Bool is abstract
308
309 # Number of items in the collection.
310 fun length: Int is abstract
311 end
312
313 # Maps are associative collections: `key` -> `item`.
314 #
315 # The main operator over maps is [].
316 #
317 # var map: Map[String, Int] = new ArrayMap[String, Int]
318 # # ...
319 # map["one"] = 1 # Associate 'one' to '1'
320 # map["two"] = 2 # Associate 'two' to '2'
321 # assert map["one"] == 1
322 # assert map["two"] == 2
323 #
324 # Instances of maps can be used with the for structure
325 #
326 # for key, value in map do
327 # assert (key == "one" and value == 1) or (key == "two" and value == 2)
328 # end
329 #
330 # The keys and values in the map can also be manipulated directly with the `keys` and `values` methods.
331 #
332 # assert map.keys.has("one") == true
333 # assert map.keys.has("tree") == false
334 # assert map.values.has(1) == true
335 # assert map.values.has(3) == false
336 #
337 interface Map[K: Object, E]
338 super MapRead[K, E]
339 # Set the`item` at `key`.
340 fun []=(key: K, item: E) is abstract
341
342 # Add each (key,value) of `map` into `self`.
343 # If a same key exists in `map` and `self`, then the value in self is discarded.
344 fun recover_with(map: Map[K, E])
345 do
346 var i = map.iterator
347 while i.is_ok do
348 self[i.key] = i.item
349 i.next
350 end
351 end
352
353 # Remove all items
354 fun clear is abstract
355
356 redef fun values: RemovableCollection[E] is abstract
357
358 redef fun keys: RemovableCollection[K] is abstract
359 end
360
361 # Iterators for Map.
362 interface MapIterator[K: Object, E]
363 # The current item.
364 # Require `is_ok`.
365 fun item: E is abstract
366
367 # The key of the current item.
368 # Require `is_ok`.
369 fun key: K is abstract
370
371 # Jump to the next item.
372 # Require `is_ok`.
373 fun next is abstract
374
375 # Is there a current item ?
376 fun is_ok: Bool is abstract
377
378 # Set a new `item` at `key`.
379 #fun item=(item: E) is abstract
380 end
381
382 # Iterator on a 'keys' point of view of a map
383 class MapKeysIterator[K: Object, V]
384 super Iterator[K]
385 # The original iterator
386 var iterator: MapIterator[K, V]
387
388 redef fun is_ok do return self.iterator.is_ok
389 redef fun next do self.iterator.next
390 redef fun item do return self.iterator.key
391 end
392
393 # Iterator on a 'values' point of view of a map
394 class MapValuesIterator[K: Object, V]
395 super Iterator[V]
396 # The original iterator
397 var iterator: MapIterator[K, V]
398
399 redef fun is_ok do return self.iterator.is_ok
400 redef fun next do self.iterator.next
401 redef fun item do return self.iterator.item
402 end
403
404 # Sequences are indexed collections.
405 # The first item is 0. The last is `length-1`.
406 interface SequenceRead[E]
407 super Collection[E]
408 # Get the first item.
409 # Is equivalent with `self[0]`.
410 redef fun first
411 do
412 assert not_empty: not is_empty
413 return self[0]
414 end
415
416 # Return the index=th element of the sequence.
417 # The first element is 0 and the last if `length-1`
418 # If index is invalid, the program aborts
419 fun [](index: Int): E is abstract
420
421 # Get the last item.
422 # Is equivalent with `self[length-1]`.
423 fun last: E
424 do
425 assert not_empty: not is_empty
426 return self[length-1]
427 end
428
429 # Return the index of the first occurrence of `item`.
430 # Return -1 if `item` is not found
431 # Comparison is done with ==
432 fun index_of(item: E): Int
433 do
434 var i = iterator
435 while i.is_ok do
436 if i.item == item then return i.index
437 i.next
438 end
439 return -1
440 end
441
442 redef fun iterator: IndexedIterator[E] is abstract
443
444 # Two sequences are equals if they have the same items in the same order.
445 redef fun ==(o)
446 do
447 if not o isa SequenceRead[nullable Object] then return false
448 var l = length
449 if o.length != l then return false
450 var i = 0
451 while i < l do
452 if self[i] != o[i] then return false
453 i += 1
454 end
455 return true
456 end
457
458 # because of the law between `==` and `hash`, hash is redefined to be the sum of the hash of the elements
459 redef fun hash
460 do
461 var res = 0
462 for e in self do res += res.hash
463 return res
464 end
465 end
466
467 # Sequence are indexed collection.
468 # The first item is 0. The last is `length-1`.
469 interface Sequence[E]
470 super SequenceRead[E]
471 super SimpleCollection[E]
472
473 # Set the first item.
474 # Is equivalent with `self[0] = item`.
475 fun first=(item: E)
476 do self[0] = item end
477
478 # Set the last item.
479 # Is equivalent with `self[length-1] = item`.
480 fun last=(item: E)
481 do
482 var l = length
483 if l > 0 then
484 self[l-1] = item
485 else
486 self[0] = item
487 end
488 end
489
490 # A synonym of `push`
491 redef fun add(e) do push(e)
492
493 # Add an item after the last.
494 fun push(e: E) is abstract
495
496 # Add each item of `coll` after the last.
497 fun append(coll: Collection[E]) do for i in coll do push(i)
498
499 # Remove the last item.
500 fun pop: E is abstract
501
502 # Add an item before the last.
503 fun unshift(e: E) is abstract
504
505 # Remove the first item.
506 # The second item become the first.
507 fun shift: E is abstract
508
509 # Set the `item` at `index`.
510 fun []=(index: Int, item: E) is abstract
511
512 # Remove the item at `index` and shift all following elements
513 fun remove_at(index: Int) is abstract
514 end
515
516 # Iterators on indexed collections.
517 interface IndexedIterator[E]
518 super Iterator[E]
519 # The index of the current item.
520 fun index: Int is abstract
521 end
522
523 # Associative arrays that internally uses couples to represent each (key, value) pairs.
524 interface CoupleMap[K: Object, E]
525 super Map[K, E]
526 # Return the couple of the corresponding key
527 # Return null if the key is no associated element
528 protected fun couple_at(key: K): nullable Couple[K, E] is abstract
529
530 redef fun [](key)
531 do
532 var c = couple_at(key)
533 if c == null then
534 abort
535 else
536 return c.second
537 end
538 end
539 end
540
541 # Iterator on CoupleMap
542 #
543 # Actually is is a wrapper around an iterator of the internal array of the map.
544 class CoupleMapIterator[K: Object, E]
545 super MapIterator[K, E]
546 redef fun item do return _iter.item.second
547
548 #redef fun item=(e) do _iter.item.second = e
549
550 redef fun key do return _iter.item.first
551
552 redef fun is_ok do return _iter.is_ok
553
554 redef fun next
555 do
556 _iter.next
557 end
558
559 var _iter: Iterator[Couple[K,E]]
560
561 init(i: Iterator[Couple[K,E]]) do _iter = i
562 end
563
564 # Some tools ###################################################################
565
566 # Two objects in a simple structure.
567 class Couple[F, S]
568
569 # The first element of the couple.
570 readable writable var _first: F
571
572 # The second element of the couple.
573 readable writable var _second: S
574
575 # Create a new instance with a first and a second object.
576 init(f: F, s: S)
577 do
578 _first = f
579 _second = s
580 end
581 end