summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-26 05:42:12 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-26 05:42:12 +0000
commitcb32985d03b2eb79ad3b9dd7a7b58312c6da5412 (patch)
treedf1a02a57797921d1229425ad31032f3fa5400d0
parentc5e46ef397ce68fda7cc8f1c0362f663846ef383 (diff)
* enumerator.c (enumerator_initialize),
test/ruby/test_enumerator.rb: Add an ability to generate an enumerator from a block. [experimental] [ruby-dev:35903] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--doc/NEWS1
-rw-r--r--enumerator.c294
-rw-r--r--test/ruby/test_enumerator.rb5
4 files changed, 294 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 9dd19c76b5..4479dc7139 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Aug 26 14:38:32 2008 Akinori MUSHA <knu@iDaemons.org>
+
+ * enumerator.c (enumerator_initialize),
+ test/ruby/test_enumerator.rb: Add an ability to generate an
+ enumerator from a block. [experimental] [ruby-dev:35903]
+
Tue Aug 26 13:25:25 2008 Martin Duerst <duerst@it.aoyama.ac.jp>
* test/ruby/test_transcode.rb: added test_euc_jp
diff --git a/doc/NEWS b/doc/NEWS
index 6441c3a72d..ca5d511ebe 100644
--- a/doc/NEWS
+++ b/doc/NEWS
@@ -111,6 +111,7 @@ Compatible
* Enumerable and Enumerator
o Enumerable#map,collect_all called without a block returns
an enumerator.
+ o Enumerator.new { ... } [experimental]
* Regexp#match, String#match
o Regexp#match, String#match
* Encoding
diff --git a/enumerator.c b/enumerator.c
index a472c83ce2..240641d909 100644
--- a/enumerator.c
+++ b/enumerator.c
@@ -35,6 +35,22 @@ struct enumerator {
VALUE no_next;
};
+static VALUE rb_cGenerator, rb_cYielder;
+
+struct generator {
+ VALUE proc;
+};
+
+struct yielder {
+ VALUE proc;
+};
+
+static VALUE generator_allocate(VALUE klass);
+static VALUE generator_init(VALUE obj, VALUE proc);
+
+/*
+ * Enumerator
+ */
static void
enumerator_mark(void *p)
{
@@ -242,25 +258,53 @@ enumerator_init(VALUE enum_obj, VALUE obj, VALUE meth, int argc, VALUE *argv)
/*
* call-seq:
* Enumerator.new(obj, method = :each, *args)
+ * Enumerator.new { |y| ... }
*
* Creates a new Enumerator object, which is to be used as an
- * Enumerable object using the given object's given method with the
- * given arguments.
+ * Enumerable object iterating in a given way.
+ *
+ * In the first form, a generated Enumerator iterates over the given
+ * object using the given method with the given arguments passed.
+ * Use of this form is discouraged. Use Kernel#enum_for(), alias
+ * to_enum, instead.
+ *
+ * e = Enumerator.new(ObjectSpace, :each_object)
+ * #-> ObjectSpace.enum_for(:each_object)
*
- * Use of this method is discouraged. Use Kernel#enum_for() instead.
+ * e.select { |obj| obj.is_a?(Class) } #=> array of all classes
+ *
+ * In the second form, iteration is defined by the given block, in
+ * which a "yielder" object given as block parameter can be used to
+ * yield a value by calling the +yield+ method, alias +<<+.
+ *
+ * fib = Enumerator.new { |y|
+ * a = b = 1
+ * loop {
+ * y << a
+ * a, b = b, a + b
+ * }
+ * }
+ *
+ * p fib.take(10) #=> [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
*/
static VALUE
enumerator_initialize(int argc, VALUE *argv, VALUE obj)
{
VALUE recv, meth = sym_each;
- if (argc == 0)
- rb_raise(rb_eArgError, "wrong number of argument (0 for 1)");
- recv = *argv++;
- if (--argc) {
- meth = *argv++;
- --argc;
+ if (argc == 0) {
+ if (!rb_block_given_p())
+ rb_raise(rb_eArgError, "wrong number of argument (0 for 1+)");
+
+ recv = generator_init(generator_allocate(rb_cGenerator), rb_block_proc());
+ } else {
+ recv = *argv++;
+ if (--argc) {
+ meth = *argv++;
+ --argc;
+ }
}
+
return enumerator_init(obj, recv, meth, argc, argv);
}
@@ -368,7 +412,7 @@ enumerator_with_object_i(VALUE val, VALUE memo)
* e.with_object(obj)
*
* Iterates the given block for each element with an arbitrary
- * object given, and returns the memo object.
+ * object given, and returns memo object.
*
* If no block is given, returns an enumerator.
*
@@ -471,6 +515,217 @@ enumerator_rewind(VALUE obj)
return obj;
}
+/*
+ * Yielder
+ */
+static void
+yielder_mark(void *p)
+{
+ struct yielder *ptr = p;
+ rb_gc_mark(ptr->proc);
+}
+
+static struct yielder *
+yielder_ptr(VALUE obj)
+{
+ struct yielder *ptr;
+
+ Data_Get_Struct(obj, struct yielder, ptr);
+ if (RDATA(obj)->dmark != yielder_mark) {
+ rb_raise(rb_eTypeError,
+ "wrong argument type %s (expected %s)",
+ rb_obj_classname(obj), rb_class2name(rb_cYielder));
+ }
+ if (!ptr || ptr->proc == Qundef) {
+ rb_raise(rb_eArgError, "uninitialized yielder");
+ }
+ return ptr;
+}
+
+/* :nodoc: */
+static VALUE
+yielder_allocate(VALUE klass)
+{
+ struct yielder *ptr;
+ VALUE obj;
+
+ obj = Data_Make_Struct(klass, struct yielder, yielder_mark, -1, ptr);
+ ptr->proc = Qundef;
+
+ return obj;
+}
+
+static VALUE
+yielder_init(VALUE obj, VALUE proc)
+{
+ struct yielder *ptr;
+
+ Data_Get_Struct(obj, struct yielder, ptr);
+
+ if (!ptr) {
+ rb_raise(rb_eArgError, "unallocated yielder");
+ }
+
+ ptr->proc = proc;
+
+ return obj;
+}
+
+/* :nodoc: */
+static VALUE
+yielder_initialize(VALUE obj)
+{
+ rb_need_block();
+
+ return yielder_init(obj, rb_block_proc());
+}
+
+/* :nodoc: */
+static VALUE
+yielder_yield(VALUE obj, VALUE args)
+{
+ struct yielder *ptr = yielder_ptr(obj);
+
+ rb_proc_call(ptr->proc, args);
+
+ return obj;
+}
+
+static VALUE
+yielder_new_i(VALUE dummy)
+{
+ return yielder_init(yielder_allocate(rb_cYielder), rb_block_proc());
+}
+
+static VALUE
+yielder_yield_i(VALUE obj, VALUE memo, int argc, VALUE *argv)
+{
+ return rb_yield_values2(argc, argv);
+}
+
+static VALUE
+yielder_new(void)
+{
+ return rb_iterate(yielder_new_i, (VALUE)0, yielder_yield_i, (VALUE)0);
+}
+
+/*
+ * Generator
+ */
+static void
+generator_mark(void *p)
+{
+ struct generator *ptr = p;
+ rb_gc_mark(ptr->proc);
+}
+
+static struct generator *
+generator_ptr(VALUE obj)
+{
+ struct generator *ptr;
+
+ Data_Get_Struct(obj, struct generator, ptr);
+ if (RDATA(obj)->dmark != generator_mark) {
+ rb_raise(rb_eTypeError,
+ "wrong argument type %s (expected %s)",
+ rb_obj_classname(obj), rb_class2name(rb_cGenerator));
+ }
+ if (!ptr || ptr->proc == Qundef) {
+ rb_raise(rb_eArgError, "uninitialized generator");
+ }
+ return ptr;
+}
+
+/* :nodoc: */
+static VALUE
+generator_allocate(VALUE klass)
+{
+ struct generator *ptr;
+ VALUE obj;
+
+ obj = Data_Make_Struct(klass, struct generator, generator_mark, -1, ptr);
+ ptr->proc = Qundef;
+
+ return obj;
+}
+
+static VALUE
+generator_init(VALUE obj, VALUE proc)
+{
+ struct generator *ptr;
+
+ Data_Get_Struct(obj, struct generator, ptr);
+
+ if (!ptr) {
+ rb_raise(rb_eArgError, "unallocated generator");
+ }
+
+ ptr->proc = proc;
+
+ return obj;
+}
+
+VALUE rb_obj_is_proc(VALUE proc);
+
+/* :nodoc: */
+static VALUE
+generator_initialize(int argc, VALUE *argv, VALUE obj)
+{
+ VALUE proc;
+
+ if (argc == 0) {
+ rb_need_block();
+
+ proc = rb_block_proc();
+ } else {
+ rb_scan_args(argc, argv, "1", &proc);
+
+ if (!rb_obj_is_proc(proc))
+ rb_raise(rb_eTypeError,
+ "wrong argument type %s (expected Proc)",
+ rb_obj_classname(proc));
+
+ if (rb_block_given_p()) {
+ rb_warn("given block not used");
+ }
+ }
+
+ return generator_init(obj, proc);
+}
+
+/* :nodoc: */
+static VALUE
+generator_init_copy(VALUE obj, VALUE orig)
+{
+ struct generator *ptr0, *ptr1;
+
+ ptr0 = generator_ptr(orig);
+
+ Data_Get_Struct(obj, struct generator, ptr1);
+
+ if (!ptr1) {
+ rb_raise(rb_eArgError, "unallocated generator");
+ }
+
+ ptr1->proc = ptr0->proc;
+
+ return obj;
+}
+
+/* :nodoc: */
+static VALUE
+generator_each(VALUE obj)
+{
+ struct generator *ptr = generator_ptr(obj);
+ VALUE yielder;
+
+ yielder = yielder_new();
+
+ rb_proc_call(ptr->proc, rb_ary_new3(1, yielder));
+
+ return obj;
+}
+
void
Init_Enumerator(void)
{
@@ -497,9 +752,24 @@ Init_Enumerator(void)
rb_define_method(rb_cEnumerator, "next", enumerator_next, 0);
rb_define_method(rb_cEnumerator, "rewind", enumerator_rewind, 0);
- rb_eStopIteration = rb_define_class("StopIteration", rb_eIndexError);
+ rb_eStopIteration = rb_define_class("StopIteration", rb_eIndexError);
+
+ /* Generator */
+ rb_cGenerator = rb_define_class_under(rb_cEnumerator, "Generator", rb_cObject);
+ rb_include_module(rb_cGenerator, rb_mEnumerable);
+ rb_define_alloc_func(rb_cGenerator, generator_allocate);
+ rb_define_method(rb_cGenerator, "initialize", generator_initialize, -1);
+ rb_define_method(rb_cGenerator, "initialize_copy", generator_init_copy, 1);
+ rb_define_method(rb_cGenerator, "each", generator_each, 0);
+
+ /* Yielder */
+ rb_cYielder = rb_define_class_under(rb_cEnumerator, "Yielder", rb_cObject);
+ rb_define_alloc_func(rb_cYielder, yielder_allocate);
+ rb_define_method(rb_cYielder, "initialize", yielder_initialize, 0);
+ rb_define_method(rb_cYielder, "yield", yielder_yield, -2);
+ rb_define_method(rb_cYielder, "<<", yielder_yield, -2);
- sym_each = ID2SYM(rb_intern("each"));
+ sym_each = ID2SYM(rb_intern("each"));
rb_provide("enumerator.so"); /* for backward compatibility */
}
diff --git a/test/ruby/test_enumerator.rb b/test/ruby/test_enumerator.rb
index d1e75208f8..135ed38249 100644
--- a/test/ruby/test_enumerator.rb
+++ b/test/ruby/test_enumerator.rb
@@ -58,6 +58,7 @@ class TestEnumerator < Test::Unit::TestCase
def test_initialize
assert_equal([1, 2, 3], @obj.to_enum(:foo, 1, 2, 3).to_a)
assert_equal([1, 2, 3], Enumerator.new(@obj, :foo, 1, 2, 3).to_a)
+ assert_equal([1, 2, 3], Enumerator.new { |y| i = 0; loop { y << (i += 1) } }.take(3))
assert_raise(ArgumentError) { Enumerator.new }
end
@@ -66,6 +67,10 @@ class TestEnumerator < Test::Unit::TestCase
e = @obj.to_enum(:foo, 1, 2, 3)
assert_nothing_raised { assert_equal(1, e.next) }
assert_raise(TypeError) { e.dup }
+
+ e = Enumerator.new { |y| i = 0; loop { y << (i += 1) } }.dup
+ assert_nothing_raised { assert_equal(1, e.next) }
+ assert_raise(TypeError) { e.dup }
end
def test_gc