| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2020, Matthew Olsson <matthewcolsson@gmail.com> | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  * modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |  *    list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |  *    and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
					
						
							|  |  |  |  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
					
						
							|  |  |  |  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
					
						
							|  |  |  |  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 
					
						
							|  |  |  |  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
					
						
							|  |  |  |  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
					
						
							|  |  |  |  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
					
						
							|  |  |  |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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(); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     ASSERT(hint == "sync" || hint == "async"); | 
					
						
							|  |  |  |     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-09-27 20:19:53 +02:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::NotIterable, value.to_string_without_side_effects().characters()); | 
					
						
							| 
									
										
										
										
											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-09-27 20:19:53 +02:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::NotIterable, value.to_string_without_side_effects().characters()); | 
					
						
							| 
									
										
										
										
											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-07-09 14:58:20 -07:00
										 |  |  |     auto next_method = iterator.get("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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void iterator_close(Object& iterator) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     (void)iterator; | 
					
						
							|  |  |  |     TODO(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-07-22 17:50:18 +02:00
										 |  |  |     auto* object = Object::create_empty(global_object); | 
					
						
							| 
									
										
										
										
											2020-07-11 07:58:56 -07:00
										 |  |  |     object->define_property("value", value); | 
					
						
							|  |  |  |     object->define_property("done", Value(done)); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     return object; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-08 14:15:13 +02:00
										 |  |  | void get_iterator_values(GlobalObject& global_object, Value value, AK::Function<IterationDecision(Value)> callback) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  |     auto iterator = get_iterator(global_object, value); | 
					
						
							|  |  |  |     if (!iterator) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (true) { | 
					
						
							|  |  |  |         auto next_object = iterator_next(*iterator); | 
					
						
							|  |  |  |         if (!next_object) | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         auto done_property = next_object->get("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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         auto next_value = next_object->get("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; | 
					
						
							|  |  |  |         ASSERT(result == IterationDecision::Continue); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | } |