| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-22 16:53:07 -07:00
										 |  |  |  * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org> | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | #include <LibJS/Runtime/Error.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/GlobalObject.h>
 | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | #include <LibJS/Runtime/IteratorOperations.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace JS { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | Object* get_iterator(GlobalObject& global_object, Value value, String hint, Value method) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto& vm = global_object.vm(); | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |     VERIFY(hint == "sync" || hint == "async"); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     if (method.is_empty()) { | 
					
						
							|  |  |  |         if (hint == "async") | 
					
						
							|  |  |  |             TODO(); | 
					
						
							| 
									
										
										
										
											2020-09-27 18:36:49 +02:00
										 |  |  |         auto object = value.to_object(global_object); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         if (!object) | 
					
						
							|  |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-09-22 16:18:51 +02:00
										 |  |  |         method = object->get(global_object.vm().well_known_symbol_iterator()); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |             return {}; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!method.is_function()) { | 
					
						
							| 
									
										
										
										
											2020-10-04 13:55:20 +01:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::NotIterable, value.to_string_without_side_effects()); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto iterator = vm.call(method.as_function(), value); | 
					
						
							|  |  |  |     if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!iterator.is_object()) { | 
					
						
							| 
									
										
										
										
											2020-10-04 13:55:20 +01:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::NotIterable, value.to_string_without_side_effects()); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     return &iterator.as_object(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | Object* iterator_next(Object& iterator, Value value) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto& vm = iterator.vm(); | 
					
						
							| 
									
										
										
										
											2020-09-27 15:18:55 +02:00
										 |  |  |     auto& global_object = iterator.global_object(); | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |     auto next_method = iterator.get(vm.names.next); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |         return {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!next_method.is_function()) { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::IterableNextNotAFunction); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Value result; | 
					
						
							| 
									
										
										
										
											2020-08-25 22:18:32 +04:30
										 |  |  |     if (value.is_empty()) | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         result = vm.call(next_method.as_function(), &iterator); | 
					
						
							| 
									
										
										
										
											2020-08-25 22:18:32 +04:30
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         result = vm.call(next_method.as_function(), &iterator, value); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!result.is_object()) { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::IterableNextBadReturn); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     return &result.as_object(); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-20 16:09:48 -07:00
										 |  |  | void iterator_close([[maybe_unused]] Object& iterator) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     TODO(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-16 23:54:41 +03:00
										 |  |  | MarkedValueList iterable_to_list(GlobalObject& global_object, Value iterable, Value method) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto& vm = global_object.vm(); | 
					
						
							|  |  |  |     MarkedValueList values(vm.heap()); | 
					
						
							|  |  |  |     get_iterator_values( | 
					
						
							|  |  |  |         global_object, iterable, [&](auto value) { | 
					
						
							|  |  |  |             if (vm.exception()) | 
					
						
							|  |  |  |                 return IterationDecision::Break; | 
					
						
							|  |  |  |             values.append(value); | 
					
						
							|  |  |  |             return IterationDecision::Continue; | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         method); | 
					
						
							|  |  |  |     return values; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-22 17:50:18 +02:00
										 |  |  | Value create_iterator_result_object(GlobalObject& global_object, Value value, bool done) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |     auto& vm = global_object.vm(); | 
					
						
							| 
									
										
										
										
											2020-07-22 17:50:18 +02:00
										 |  |  |     auto* object = Object::create_empty(global_object); | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |     object->define_property(vm.names.value, value); | 
					
						
							|  |  |  |     object->define_property(vm.names.done, Value(done)); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     return object; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-16 23:54:41 +03:00
										 |  |  | void get_iterator_values(GlobalObject& global_object, Value value, AK::Function<IterationDecision(Value)> callback, Value method) | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto& vm = global_object.vm(); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-16 23:54:41 +03:00
										 |  |  |     auto iterator = get_iterator(global_object, value, "sync", method); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!iterator) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (true) { | 
					
						
							|  |  |  |         auto next_object = iterator_next(*iterator); | 
					
						
							|  |  |  |         if (!next_object) | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |         auto done_property = next_object->get(vm.names.done); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!done_property.is_empty() && done_property.to_boolean()) | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |         auto next_value = next_object->get(vm.names.value); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         auto result = callback(next_value); | 
					
						
							|  |  |  |         if (result == IterationDecision::Break) | 
					
						
							|  |  |  |             return; | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |         VERIFY(result == IterationDecision::Continue); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | } |