lib: removals on Map are done on the views (keys and values)
[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 abtract collection classes.
14 package abstract_collection
15
16 import kernel
17
18 # The root of the collection hierarchy.
19 #
20 # Instances of this class offers an iterator method.
21 #
22 # Colections instances can use the "for" structure:
23 # var x: Collection[U]
24 # ...
25 # for u in x do
26 # # u is a U
27 # ...
28 # end
29 # that is equivalent with
30 # var x: Collection[U]
31 # ...
32 # var i = x.iterator
33 # while i.is_ok do
34 # var u = i.item # u is a U
35 # ...
36 # i.next
37 # end
38 #
39 # This abstract class implements its others methods with an iterator.
40 # Subclasses may redefine them with an efficient implementation.
41 interface Collection[E]
42 # Get a new iterator on the collection.
43 fun iterator: Iterator[E] is abstract
44
45 # Iterate over each element of the collection
46 fun iterate
47 !each(e: E)
48 do
49 var i = iterator
50 while i.is_ok do
51 each(i.item)
52 i.next
53 end
54 end
55
56 # Is there no item in the collection ?
57 fun is_empty: Bool is abstract
58
59 # Number of items in the collection.
60 fun length: Int is abstract
61
62 # Is `item' in the collection ?
63 # Comparaisons are done with ==
64 fun has(item: E): Bool is abstract
65
66 # Is the collection contain only `item' ?
67 # Comparaisons are done with ==
68 # Return true if the collection is empty.
69 fun has_only(item: E): Bool is abstract
70
71 # How many occurences of `item' are in the collection ?
72 # Comparaisons are done with ==
73 fun count(item: E): Int is abstract
74
75 # Return one the item of the collection
76 fun first: E is abstract
77 end
78
79 # Naive implementation of collections method
80 # You only have to define iterator!
81 interface NaiveCollection[E]
82 super Collection[E]
83 redef fun is_empty do return length == 0
84
85 redef fun length
86 do
87 var nb = 0
88 for i in self do nb += 1
89 return nb
90 end
91
92 redef fun has(item)
93 do
94 for i in self do if i == item then return true
95 return false
96 end
97
98 redef fun has_only(item)
99 do
100 for i in self do if i != item then return false
101 return true
102 end
103
104 redef fun count(item)
105 do
106 var nb = 0
107 for i in self do if i == item then nb += 1
108 return nb
109 end
110
111 redef fun first
112 do
113 assert length > 0
114 return iterator.item
115 end
116 end
117
118 # Instances of the Iterator class generates a series of elements, one at a time.
119 # They are mainly used with collections.
120 interface Iterator[E]
121 # The current item.
122 # Require `is_ok'.
123 fun item: E is abstract
124
125 # Jump to the next item.
126 # Require `is_ok'.
127 fun next is abstract
128
129 # Is there a current item ?
130 fun is_ok: Bool is abstract
131 end
132
133 # A collection that contains only one item.
134 class Container[E]
135 super Collection[E]
136
137 redef fun first do return _item
138
139 redef fun is_empty do return false
140
141 redef fun length do return 1
142
143 redef fun has(an_item) do return _item == an_item
144
145 redef fun has_only(an_item) do return _item == an_item
146
147 redef fun count(an_item)
148 do
149 if _item == an_item then
150 return 1
151 else
152 return 0
153 end
154 end
155
156 redef fun iterator do return new ContainerIterator[E](self)
157
158 # Create a new instance with a given initial value.
159 init(e: E) do _item = e
160
161 # The stored item
162 readable writable var _item: E
163 end
164
165 # This iterator is quite stupid since it is used for only one item.
166 class ContainerIterator[E]
167 super Iterator[E]
168 redef fun item do return _container.item
169
170 redef fun next do _is_ok = false
171
172 init(c: Container[E]) do _container = c
173
174 redef readable var _is_ok: Bool = true
175
176 var _container: Container[E]
177 end
178
179 # Items can be removed from this collection
180 interface RemovableCollection[E]
181 super Collection[E]
182 # Remove all items
183 fun clear is abstract
184
185 # Remove an occucence of `item'
186 fun remove(item: E) is abstract
187
188 # Remove all occurences of `item'
189 fun remove_all(item: E) do while has(item) do remove(item)
190 end
191
192 # Items can be added to these collections.
193 interface SimpleCollection[E]
194 super RemovableCollection[E]
195 # Add an item in a collection.
196 # Ensure col.has(item)
197 fun add(item: E) is abstract
198
199 # Add each item of `coll`.
200 fun add_all(coll: Collection[E]) do for i in coll do add(i)
201 end
202
203 # Abstract sets.
204 #
205 # Set contains contains only one element with the same value (according to =).
206 # var s : Set[E]
207 # var a = "Hello"
208 # var b = "Hello"
209 # ...
210 # s.add(a)
211 # s.has(b) # --> true
212 interface Set[E: Object]
213 super SimpleCollection[E]
214
215 redef fun has_only(item)
216 do
217 var l = length
218 if l == 1 then
219 return has(item)
220 else if l == 0 then
221 return true
222 else
223 return false
224 end
225 end
226
227 # Only 0 or 1
228 redef fun count(item)
229 do
230 if has(item) then
231 return 1
232 else
233 return 0
234 end
235 end
236
237 # Synonym of remove since there is only one item
238 redef fun remove_all(item) do remove(item)
239 end
240
241 interface MapRead[K: Object, E]
242 # Get the item at `key'.
243 fun [](key: K): E is abstract
244
245 # Depreciated alias for `keys.has'
246 fun has_key(key: K): Bool do return self.keys.has(key)
247
248 # Get a new iterator on the map.
249 fun iterator: MapIterator[K, E] is abstract
250
251 # Iterate over each element of the collection
252 fun iterate
253 !each(k: K, v: E)
254 do
255 var i = iterator
256 while i.is_ok do
257 each(i.key, i.item)
258 i.next
259 end
260 end
261
262 # Return the point of view of self on the values only
263 fun values: Collection[E] is abstract
264
265 # Return the point of view of self on the keys only
266 fun keys: Collection[E] is abstract
267
268 # Is there no item in the collection ?
269 fun is_empty: Bool is abstract
270
271 # Number of items in the collection.
272 fun length: Int is abstract
273
274 # Depreciated alias for `values.has'
275 fun has(item: E): Bool do return self.values.has(item)
276
277 # Depreciated alias for `values.has_only'
278 fun has_only(item: E): Bool do return self.values.has_only(item)
279
280 # Depreciated alias for `values.count'
281 fun count(item: E): Int do return self.values.count(item)
282
283 # Depreciated alias for `values.first'
284 fun first: E do return self.values.first
285 end
286
287 # Maps are associative collections: `key' -> `item'.
288 #
289 # The main operator over maps is [].
290 #
291 # var map: Map[U, V]
292 # ...
293 # map[u1] = v1 # Associate 'v1' to 'u1'
294 # map[u2] = v2 # Associate 'v2' to 'u2'
295 # map[u1] # -> v1
296 # map[u2] # -> v2
297 # map.has_key(u1) # -> true
298 # map.has_key(u3) # -> false
299 interface Map[K: Object, E]
300 super MapRead[K, E]
301 # Set the`item' at `key'.
302 fun []=(key: K, item: E) is abstract
303
304 # Depreciated alias for `keys.remove`
305 fun remove_at(key: K) do keys.remove(key)
306
307 # Add each (key,value) of `map' into `self'.
308 # If a same key exists in `map' and `self', then the value in self is discarded.
309 fun recover_with(map: Map[K, E])
310 do
311 var i = map.iterator
312 while i.is_ok do
313 self[i.key] = i.item
314 i.next
315 end
316 end
317
318 # Remove all items
319 fun clear is abstract
320
321 # Depreciated alias for `values.remove`
322 fun remove(item: E) do values.remove(item)
323
324 # Depreciated alias for `values.remove_all`
325 fun remove_all(item: E) do values.remove_all(item)
326
327 redef fun values: RemovableCollection[E] is abstract
328
329 redef fun keys: RemovableCollection[E] is abstract
330 end
331
332 # Iterators for Map.
333 interface MapIterator[K: Object, E]
334 # The current item.
335 # Require `is_ok'.
336 fun item: E is abstract
337
338 # The key of the current item.
339 # Require `is_ok'.
340 fun key: K is abstract
341
342 # Jump to the next item.
343 # Require `is_ok'.
344 fun next is abstract
345
346 # Is there a current item ?
347 fun is_ok: Bool is abstract
348
349 # Set a new `item' at `key'.
350 #fun item=(item: E) is abstract
351 end
352
353 # Iterator on a 'keys' point of view of a map
354 class MapKeysIterator[K: Object, V]
355 super Iterator[K]
356 # The original iterator
357 var iterator: MapIterator[K, V]
358
359 redef fun is_ok do return self.iterator.is_ok
360 redef fun next do self.iterator.next
361 redef fun item do return self.iterator.key
362 end
363
364 # Iterator on a 'values' point of view of a map
365 class MapValuesIterator[K: Object, V]
366 super Iterator[K]
367 # The original iterator
368 var iterator: MapIterator[K, V]
369
370 redef fun is_ok do return self.iterator.is_ok
371 redef fun next do self.iterator.next
372 redef fun item do return self.iterator.item
373 end
374
375 # Indexed collection are ordoned collections.
376 # The first item is 0. The last is `length'-1.
377 interface SequenceRead[E]
378 super Collection[E]
379 # Get the first item.
380 # Is equivalent with `self'[0].
381 redef fun first
382 do
383 assert not_empty: not is_empty
384 return self[0]
385 end
386
387 fun [](index: Int): E is abstract
388
389 # Get the last item.
390 # Is equivalent with `self'[`length'-1].
391 fun last: E
392 do
393 assert not_empty: not is_empty
394 return self[length-1]
395 end
396
397 # Return the index of the first occurence of `item'.
398 # Return -1 if `item' is not found
399 fun index_of(item: E): Int
400 do
401 var i = iterator
402 while i.is_ok do
403 if i.item == item then return i.index
404 i.next
405 end
406 return -1
407 end
408
409 redef fun iterator: IndexedIterator[E] is abstract
410 end
411
412 # Indexed collection are ordoned collections.
413 # The first item is 0. The last is `length'-1.
414 interface Sequence[E]
415 super SequenceRead[E]
416 super SimpleCollection[E]
417 # Set the first item.
418 # Is equivalent with `self'[0] = `item'.
419 fun first=(item: E)
420 do self[0] = item end
421
422 # Set the last item.
423 # Is equivalent with `self'[length-1] = `item'.
424 fun last=(item: E)
425 do
426 var l = length
427 if l > 0 then
428 self[l-1] = item
429 else
430 self[0] = item
431 end
432 end
433
434 # A synonym of `push'
435 redef fun add(e) do push(e)
436
437 # Add an item after the last.
438 fun push(e: E) is abstract
439
440 # Add each item of `coll` after the last.
441 fun append(coll: Collection[E]) do for i in coll do push(i)
442
443 # Remove the last item.
444 fun pop: E is abstract
445
446 # Add an item before the last.
447 fun unshift(e: E) is abstract
448
449 # Remove the first item.
450 # The second item become the first.
451 fun shift: E is abstract
452
453 # Set the`item' at `index'.
454 fun []=(index: Int, item: E) is abstract
455
456 # Remove the item at `index' and shift all following elements
457 fun remove_at(index: Int) is abstract
458 end
459
460 # Iterators on indexed collections.
461 interface IndexedIterator[E]
462 super Iterator[E]
463 # The index of the current item.
464 fun index: Int is abstract
465 end
466
467 # Associatives arrays that internally uses couples to represent each (key, value) pairs.
468 interface CoupleMap[K: Object, E]
469 super Map[K, E]
470 # Return the couple of the corresponding key
471 # Return null if the key is no associated element
472 protected fun couple_at(key: K): nullable Couple[K, E] is abstract
473
474 redef fun [](key)
475 do
476 var c = couple_at(key)
477 if c == null then
478 abort
479 else
480 return c.second
481 end
482 end
483 end
484
485 # Iterator on CoupleMap
486 #
487 # Actually is is a wrapper around an iterator of the internal array of the map.
488 class CoupleMapIterator[K: Object, E]
489 super MapIterator[K, E]
490 redef fun item do return _iter.item.second
491
492 #redef fun item=(e) do _iter.item.second = e
493
494 redef fun key do return _iter.item.first
495
496 redef fun is_ok do return _iter.is_ok
497
498 redef fun next
499 do
500 _iter.next
501 end
502
503 var _iter: Iterator[Couple[K,E]]
504
505 init(i: Iterator[Couple[K,E]]) do _iter = i
506 end
507
508 # Some tools ###################################################################
509
510 # Two objects in a simple structure.
511 class Couple[F, S]
512
513 # The first element of the couple.
514 readable writable var _first: F
515
516 # The second element of the couple.
517 readable writable var _second: S
518
519 # Create a new instance with a first and a second object.
520 init(f: F, s: S)
521 do
522 _first = f
523 _second = s
524 end
525 end