2003-10-13 21:09:23 +04:00
|
|
|
/************************************************
|
|
|
|
|
|
|
|
enumerator.c - provides Enumerator class
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
|
|
|
|
Copyright (C) 2001-2003 Akinori MUSHA
|
|
|
|
|
|
|
|
$Idaemons: /home/cvs/rb/enumerator/enumerator.c,v 1.1.1.1 2001/07/15 10:12:48 knu Exp $
|
|
|
|
$RoughId: enumerator.c,v 1.6 2003/07/27 11:03:24 nobu Exp $
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
************************************************/
|
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/ruby.h"
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
/*
|
2008-08-13 10:25:53 +04:00
|
|
|
* Document-class: Enumerator
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
|
|
|
* A class which provides a method `each' to be used as an Enumerable
|
|
|
|
* object.
|
2009-08-19 20:36:00 +04:00
|
|
|
*
|
|
|
|
* An enumerator can be created by following methods.
|
|
|
|
* - Kernel#to_enum
|
|
|
|
* - Kernel#enum_for
|
|
|
|
* - Enumerator.new
|
|
|
|
*
|
|
|
|
* Also, most iteration methods without a block returns an enumerator.
|
|
|
|
* For example, Array#map returns an enumerator if no block given.
|
|
|
|
* The enumerator has with_index.
|
|
|
|
* So ary.map.with_index works as follows.
|
|
|
|
*
|
2009-08-21 19:18:57 +04:00
|
|
|
* p %w[foo bar baz].map.with_index {|w,i| "#{i}:#{w}" }
|
|
|
|
* #=> ["0:foo", "1:bar", "2:baz"]
|
2009-08-19 20:36:00 +04:00
|
|
|
*
|
|
|
|
* An enumerator object can be used as an external iterator.
|
|
|
|
* I.e. Enumerator#next returns the next value of the iterator.
|
|
|
|
* Enumerator#next raises StopIteration at end.
|
|
|
|
*
|
2009-08-21 19:18:57 +04:00
|
|
|
* e = [1,2,3].each # returns an enumerator object.
|
2009-08-19 20:36:00 +04:00
|
|
|
* p e.next #=> 1
|
|
|
|
* p e.next #=> 2
|
|
|
|
* p e.next #=> 3
|
|
|
|
* p e.next #raises StopIteration
|
|
|
|
*
|
|
|
|
* An external iterator can be used to implement an internal iterator as follows.
|
|
|
|
*
|
|
|
|
* def ext_each(e)
|
|
|
|
* while true
|
|
|
|
* begin
|
|
|
|
* vs = e.next_values
|
|
|
|
* rescue StopIteration
|
|
|
|
* return $!.result
|
|
|
|
* end
|
|
|
|
* y = yield *vs
|
|
|
|
* e.feed y
|
|
|
|
* end
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* o = Object.new
|
|
|
|
* def o.each
|
|
|
|
* p yield
|
|
|
|
* p yield 1
|
|
|
|
* p yield(1, 2)
|
|
|
|
* 3
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* # use o.each as an internal iterator directly.
|
|
|
|
* p o.each {|*x| p x; [:b, *x] }
|
|
|
|
* #=> [], [:b], [1], [:b, 1], [1, 2], [:b, 1, 2], 3
|
|
|
|
*
|
|
|
|
* # convert o.each to an external external iterator for
|
|
|
|
* # implementing an internal iterator.
|
|
|
|
* p ext_each(o.to_enum) {|*x| p x; [:b, *x] }
|
|
|
|
* #=> [], [:b], [1], [:b, 1], [1, 2], [:b, 1, 2], 3
|
|
|
|
*
|
2005-07-14 19:15:22 +04:00
|
|
|
*/
|
2008-04-20 16:01:27 +04:00
|
|
|
VALUE rb_cEnumerator;
|
2009-02-02 14:50:49 +03:00
|
|
|
static ID id_rewind, id_each;
|
2008-04-20 15:58:44 +04:00
|
|
|
static VALUE sym_each;
|
2005-07-11 18:50:42 +04:00
|
|
|
|
2007-08-08 11:07:03 +04:00
|
|
|
VALUE rb_eStopIteration;
|
|
|
|
|
2005-07-11 18:50:42 +04:00
|
|
|
struct enumerator {
|
2008-04-20 15:58:44 +04:00
|
|
|
VALUE obj;
|
2008-04-21 11:07:39 +04:00
|
|
|
ID meth;
|
2005-07-11 18:50:42 +04:00
|
|
|
VALUE args;
|
2007-08-06 20:41:17 +04:00
|
|
|
VALUE fib;
|
2007-08-06 20:53:36 +04:00
|
|
|
VALUE dst;
|
2009-08-18 16:02:53 +04:00
|
|
|
VALUE lookahead;
|
2009-08-19 20:36:00 +04:00
|
|
|
VALUE feedvalue;
|
|
|
|
VALUE stop_exc;
|
2005-07-11 18:50:42 +04:00
|
|
|
};
|
|
|
|
|
2008-08-26 09:42:12 +04:00
|
|
|
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
|
|
|
|
*/
|
2005-07-11 18:50:42 +04:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enumerator_mark(void *p)
|
2005-07-11 18:50:42 +04:00
|
|
|
{
|
|
|
|
struct enumerator *ptr = p;
|
2008-04-20 15:58:44 +04:00
|
|
|
rb_gc_mark(ptr->obj);
|
2005-07-11 18:50:42 +04:00
|
|
|
rb_gc_mark(ptr->args);
|
2007-08-06 20:41:17 +04:00
|
|
|
rb_gc_mark(ptr->fib);
|
2007-08-06 20:53:36 +04:00
|
|
|
rb_gc_mark(ptr->dst);
|
2009-08-18 16:02:53 +04:00
|
|
|
rb_gc_mark(ptr->lookahead);
|
2009-08-19 20:36:00 +04:00
|
|
|
rb_gc_mark(ptr->feedvalue);
|
|
|
|
rb_gc_mark(ptr->stop_exc);
|
2005-07-11 18:50:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct enumerator *
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enumerator_ptr(VALUE obj)
|
2005-07-11 18:50:42 +04:00
|
|
|
{
|
|
|
|
struct enumerator *ptr;
|
|
|
|
|
|
|
|
Data_Get_Struct(obj, struct enumerator, ptr);
|
|
|
|
if (RDATA(obj)->dmark != enumerator_mark) {
|
|
|
|
rb_raise(rb_eTypeError,
|
2008-05-26 12:49:08 +04:00
|
|
|
"wrong argument type %s (expected %s)",
|
|
|
|
rb_obj_classname(obj), rb_class2name(rb_cEnumerator));
|
2005-07-11 18:50:42 +04:00
|
|
|
}
|
2008-06-03 07:58:30 +04:00
|
|
|
if (!ptr || ptr->obj == Qundef) {
|
2005-07-11 18:50:42 +04:00
|
|
|
rb_raise(rb_eArgError, "uninitialized enumerator");
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* obj.to_enum(method = :each, *args)
|
|
|
|
* obj.enum_for(method = :each, *args)
|
|
|
|
*
|
2008-08-13 10:25:53 +04:00
|
|
|
* Returns Enumerator.new(self, method, *args).
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
|
|
|
* e.g.:
|
2008-03-09 04:04:46 +03:00
|
|
|
*
|
2005-07-14 19:15:22 +04:00
|
|
|
* str = "xyz"
|
|
|
|
*
|
|
|
|
* enum = str.enum_for(:each_byte)
|
|
|
|
* a = enum.map {|b| '%02x' % b } #=> ["78", "79", "7a"]
|
|
|
|
*
|
|
|
|
* # protects an array from being modified
|
|
|
|
* a = [1, 2, 3]
|
|
|
|
* some_method(a.to_enum)
|
|
|
|
*
|
|
|
|
*/
|
2003-10-13 21:09:23 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
obj_to_enum(int argc, VALUE *argv, VALUE obj)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
2005-07-14 19:15:22 +04:00
|
|
|
VALUE meth = sym_each;
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
if (argc > 0) {
|
|
|
|
--argc;
|
|
|
|
meth = *argv++;
|
|
|
|
}
|
|
|
|
return rb_enumeratorize(obj, meth, argc, argv);
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
each_slice_i(VALUE val, VALUE *memo)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
2005-07-11 18:50:42 +04:00
|
|
|
VALUE ary = memo[0];
|
2006-10-26 10:24:32 +04:00
|
|
|
VALUE v = Qnil;
|
2005-07-11 18:50:42 +04:00
|
|
|
long size = (long)memo[1];
|
2003-10-13 21:09:23 +04:00
|
|
|
|
|
|
|
rb_ary_push(ary, val);
|
|
|
|
|
2006-09-02 18:42:08 +04:00
|
|
|
if (RARRAY_LEN(ary) == size) {
|
2006-10-26 10:24:32 +04:00
|
|
|
v = rb_yield(ary);
|
2005-07-11 18:50:42 +04:00
|
|
|
memo[0] = rb_ary_new2(size);
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
2006-10-26 10:24:32 +04:00
|
|
|
return v;
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* e.each_slice(n) {...}
|
2008-05-13 10:10:56 +04:00
|
|
|
* e.each_slice(n)
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
2008-05-13 10:10:56 +04:00
|
|
|
* Iterates the given block for each slice of <n> elements. If no
|
|
|
|
* block is given, returns an enumerator.
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
|
|
|
* e.g.:
|
|
|
|
* (1..10).each_slice(3) {|a| p a}
|
|
|
|
* # outputs below
|
|
|
|
* [1, 2, 3]
|
|
|
|
* [4, 5, 6]
|
|
|
|
* [7, 8, 9]
|
|
|
|
* [10]
|
|
|
|
*
|
|
|
|
*/
|
2003-10-13 21:09:23 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enum_each_slice(VALUE obj, VALUE n)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
|
|
|
long size = NUM2LONG(n);
|
2005-07-11 18:50:42 +04:00
|
|
|
VALUE args[2], ary;
|
2003-10-13 21:09:23 +04:00
|
|
|
|
|
|
|
if (size <= 0) rb_raise(rb_eArgError, "invalid slice size");
|
2006-10-25 04:21:22 +04:00
|
|
|
RETURN_ENUMERATOR(obj, 1, &n);
|
2005-07-11 18:50:42 +04:00
|
|
|
args[0] = rb_ary_new2(size);
|
|
|
|
args[1] = (VALUE)size;
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2009-02-02 14:50:49 +03:00
|
|
|
rb_block_call(obj, id_each, 0, 0, each_slice_i, (VALUE)args);
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2005-07-11 18:50:42 +04:00
|
|
|
ary = args[0];
|
2006-09-02 18:42:08 +04:00
|
|
|
if (RARRAY_LEN(ary) > 0) rb_yield(ary);
|
2003-10-13 21:09:23 +04:00
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
each_cons_i(VALUE val, VALUE *memo)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
2005-07-11 18:50:42 +04:00
|
|
|
VALUE ary = memo[0];
|
2006-10-26 10:24:32 +04:00
|
|
|
VALUE v = Qnil;
|
2005-07-11 18:50:42 +04:00
|
|
|
long size = (long)memo[1];
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2006-09-02 18:42:08 +04:00
|
|
|
if (RARRAY_LEN(ary) == size) {
|
2003-10-13 21:09:23 +04:00
|
|
|
rb_ary_shift(ary);
|
2004-11-02 10:38:21 +03:00
|
|
|
}
|
|
|
|
rb_ary_push(ary, val);
|
2006-09-02 18:42:08 +04:00
|
|
|
if (RARRAY_LEN(ary) == size) {
|
2006-10-26 10:24:32 +04:00
|
|
|
v = rb_yield(rb_ary_dup(ary));
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
2006-10-26 10:24:32 +04:00
|
|
|
return v;
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* each_cons(n) {...}
|
2008-05-13 10:10:56 +04:00
|
|
|
* each_cons(n)
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
|
|
|
* Iterates the given block for each array of consecutive <n>
|
2008-06-20 23:41:29 +04:00
|
|
|
* elements. If no block is given, returns an enumerator.
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
|
|
|
* e.g.:
|
|
|
|
* (1..10).each_cons(3) {|a| p a}
|
|
|
|
* # outputs below
|
|
|
|
* [1, 2, 3]
|
|
|
|
* [2, 3, 4]
|
|
|
|
* [3, 4, 5]
|
|
|
|
* [4, 5, 6]
|
|
|
|
* [5, 6, 7]
|
|
|
|
* [6, 7, 8]
|
|
|
|
* [7, 8, 9]
|
|
|
|
* [8, 9, 10]
|
|
|
|
*
|
|
|
|
*/
|
2003-10-13 21:09:23 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enum_each_cons(VALUE obj, VALUE n)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
|
|
|
long size = NUM2LONG(n);
|
2005-07-11 18:50:42 +04:00
|
|
|
VALUE args[2];
|
2003-10-13 21:09:23 +04:00
|
|
|
|
|
|
|
if (size <= 0) rb_raise(rb_eArgError, "invalid size");
|
2006-10-27 12:31:10 +04:00
|
|
|
RETURN_ENUMERATOR(obj, 1, &n);
|
2005-07-11 18:50:42 +04:00
|
|
|
args[0] = rb_ary_new2(size);
|
|
|
|
args[1] = (VALUE)size;
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2009-02-02 14:50:49 +03:00
|
|
|
rb_block_call(obj, id_each, 0, 0, each_cons_i, (VALUE)args);
|
2003-10-13 21:09:23 +04:00
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2008-08-26 09:45:18 +04:00
|
|
|
static VALUE
|
|
|
|
each_with_object_i(VALUE val, VALUE memo)
|
|
|
|
{
|
|
|
|
return rb_yield_values(2, val, memo);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* each_with_object(obj) {|(*args), memo_obj| ... }
|
|
|
|
* each_with_object(obj)
|
|
|
|
*
|
|
|
|
* Iterates the given block for each element with an arbitrary
|
|
|
|
* object given, and returns the initially given object.
|
2009-04-22 20:32:43 +04:00
|
|
|
*
|
2008-08-26 09:45:18 +04:00
|
|
|
* If no block is given, returns an enumerator.
|
|
|
|
*
|
|
|
|
* e.g.:
|
|
|
|
* evens = (1..10).each_with_object([]) {|i, a| a << i*2 }
|
|
|
|
* # => [2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
enum_each_with_object(VALUE obj, VALUE memo)
|
|
|
|
{
|
|
|
|
RETURN_ENUMERATOR(obj, 1, &memo);
|
|
|
|
|
2009-02-02 14:50:49 +03:00
|
|
|
rb_block_call(obj, id_each, 0, 0, each_with_object_i, memo);
|
2008-08-26 09:45:18 +04:00
|
|
|
|
|
|
|
return memo;
|
|
|
|
}
|
|
|
|
|
2005-07-11 18:50:42 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enumerator_allocate(VALUE klass)
|
2005-07-11 18:50:42 +04:00
|
|
|
{
|
|
|
|
struct enumerator *ptr;
|
2008-06-03 07:58:30 +04:00
|
|
|
VALUE enum_obj;
|
|
|
|
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
enum_obj = Data_Make_Struct(klass, struct enumerator, enumerator_mark, -1, ptr);
|
2008-06-03 07:58:30 +04:00
|
|
|
ptr->obj = Qundef;
|
|
|
|
|
|
|
|
return enum_obj;
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
2007-12-01 07:30:19 +03:00
|
|
|
static VALUE
|
2007-12-19 09:37:41 +03:00
|
|
|
enumerator_each_i(VALUE v, VALUE enum_obj, int argc, VALUE *argv)
|
2007-12-01 07:30:19 +03:00
|
|
|
{
|
2007-12-19 09:37:41 +03:00
|
|
|
return rb_yield_values2(argc, argv);
|
2007-12-01 07:30:19 +03:00
|
|
|
}
|
|
|
|
|
2005-10-18 21:35:18 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enumerator_init(VALUE enum_obj, VALUE obj, VALUE meth, int argc, VALUE *argv)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
2008-06-03 07:58:30 +04:00
|
|
|
struct enumerator *ptr;
|
|
|
|
|
|
|
|
Data_Get_Struct(enum_obj, struct enumerator, ptr);
|
|
|
|
|
|
|
|
if (!ptr) {
|
|
|
|
rb_raise(rb_eArgError, "unallocated enumerator");
|
|
|
|
}
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2008-04-20 15:58:44 +04:00
|
|
|
ptr->obj = obj;
|
2008-04-21 11:07:39 +04:00
|
|
|
ptr->meth = rb_to_id(meth);
|
2005-07-14 19:15:22 +04:00
|
|
|
if (argc) ptr->args = rb_ary_new4(argc, argv);
|
2007-08-06 20:41:17 +04:00
|
|
|
ptr->fib = 0;
|
2007-08-24 14:48:43 +04:00
|
|
|
ptr->dst = Qnil;
|
2009-08-18 16:02:53 +04:00
|
|
|
ptr->lookahead = Qundef;
|
2009-08-19 20:36:00 +04:00
|
|
|
ptr->feedvalue = Qundef;
|
|
|
|
ptr->stop_exc = Qfalse;
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
return enum_obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2008-08-13 10:25:53 +04:00
|
|
|
* Enumerator.new(obj, method = :each, *args)
|
2008-08-26 09:42:12 +04:00
|
|
|
* Enumerator.new { |y| ... }
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
2008-08-13 10:25:53 +04:00
|
|
|
* Creates a new Enumerator object, which is to be used as an
|
2008-08-26 09:42:12 +04:00
|
|
|
* 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)
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
2008-08-26 09:42:12 +04:00
|
|
|
* 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]
|
2005-07-14 19:15:22 +04:00
|
|
|
*/
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enumerator_initialize(int argc, VALUE *argv, VALUE obj)
|
2005-07-14 19:15:22 +04:00
|
|
|
{
|
|
|
|
VALUE recv, meth = sym_each;
|
|
|
|
|
2008-08-26 09:42:12 +04:00
|
|
|
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;
|
|
|
|
}
|
2005-07-14 19:15:22 +04:00
|
|
|
}
|
2008-08-26 09:42:12 +04:00
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
return enumerator_init(obj, recv, meth, argc, argv);
|
|
|
|
}
|
|
|
|
|
2007-01-26 01:52:38 +03:00
|
|
|
/* :nodoc: */
|
|
|
|
static VALUE
|
|
|
|
enumerator_init_copy(VALUE obj, VALUE orig)
|
|
|
|
{
|
2007-12-21 08:59:20 +03:00
|
|
|
struct enumerator *ptr0, *ptr1;
|
|
|
|
|
|
|
|
ptr0 = enumerator_ptr(orig);
|
2007-12-21 09:18:25 +03:00
|
|
|
if (ptr0->fib) {
|
2007-12-21 08:59:20 +03:00
|
|
|
/* Fibers cannot be copied */
|
|
|
|
rb_raise(rb_eTypeError, "can't copy execution context");
|
|
|
|
}
|
2008-06-03 14:34:45 +04:00
|
|
|
|
|
|
|
Data_Get_Struct(obj, struct enumerator, ptr1);
|
|
|
|
|
|
|
|
if (!ptr1) {
|
|
|
|
rb_raise(rb_eArgError, "unallocated enumerator");
|
|
|
|
}
|
2007-01-26 01:52:38 +03:00
|
|
|
|
2008-04-20 15:58:44 +04:00
|
|
|
ptr1->obj = ptr0->obj;
|
|
|
|
ptr1->meth = ptr0->meth;
|
2007-01-26 01:52:38 +03:00
|
|
|
ptr1->args = ptr0->args;
|
2007-12-21 08:59:20 +03:00
|
|
|
ptr1->fib = 0;
|
2009-08-18 16:02:53 +04:00
|
|
|
ptr1->lookahead = Qundef;
|
2009-08-19 20:36:00 +04:00
|
|
|
ptr1->feedvalue = Qundef;
|
2007-01-26 01:52:38 +03:00
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_enumeratorize(VALUE obj, VALUE meth, int argc, VALUE *argv)
|
2005-07-14 19:15:22 +04:00
|
|
|
{
|
|
|
|
return enumerator_init(enumerator_allocate(rb_cEnumerator), obj, meth, argc, argv);
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* enum.each {...}
|
|
|
|
*
|
|
|
|
* Iterates the given block using the object and the method specified
|
2008-05-13 10:10:56 +04:00
|
|
|
* in the first place. If no block is given, returns self.
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
|
|
|
*/
|
2003-10-13 21:09:23 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
enumerator_each(VALUE obj)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
2006-02-14 15:36:11 +03:00
|
|
|
struct enumerator *e;
|
2006-02-03 12:15:42 +03:00
|
|
|
int argc = 0;
|
|
|
|
VALUE *argv = 0;
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2006-02-14 15:36:11 +03:00
|
|
|
if (!rb_block_given_p()) return obj;
|
|
|
|
e = enumerator_ptr(obj);
|
2006-02-03 12:15:42 +03:00
|
|
|
if (e->args) {
|
2009-07-18 12:05:32 +04:00
|
|
|
argc = RARRAY_LENINT(e->args);
|
2006-09-02 18:42:08 +04:00
|
|
|
argv = RARRAY_PTR(e->args);
|
2006-02-03 12:15:42 +03:00
|
|
|
}
|
2008-05-26 12:49:08 +04:00
|
|
|
return rb_block_call(e->obj, e->meth, argc, argv,
|
|
|
|
enumerator_each_i, (VALUE)e);
|
2005-07-11 18:50:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2009-03-17 12:07:18 +03:00
|
|
|
enumerator_with_index_i(VALUE val, VALUE *memo, int argc, VALUE *argv)
|
2005-07-11 18:50:42 +04:00
|
|
|
{
|
2009-03-17 12:07:18 +03:00
|
|
|
VALUE idx;
|
|
|
|
|
|
|
|
idx = INT2FIX(*memo);
|
2005-07-11 18:50:42 +04:00
|
|
|
++*memo;
|
2009-03-17 12:07:18 +03:00
|
|
|
|
|
|
|
if (argc <= 1)
|
|
|
|
return rb_yield_values(2, val, idx);
|
|
|
|
|
|
|
|
return rb_yield_values(2, rb_ary_new4(argc, argv), idx);
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
2005-07-14 19:15:22 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-02-08 17:42:01 +03:00
|
|
|
* e.with_index(offset = 0) {|(*args), idx| ... }
|
2009-02-09 08:52:09 +03:00
|
|
|
* e.with_index(offset = 0)
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
2008-06-04 10:46:54 +04:00
|
|
|
* Iterates the given block for each element with an index, which
|
2009-02-08 17:42:01 +03:00
|
|
|
* starts from +offset+. If no block is given, returns an enumerator.
|
2005-07-14 19:15:22 +04:00
|
|
|
*
|
|
|
|
*/
|
2005-07-11 18:50:42 +04:00
|
|
|
static VALUE
|
2009-02-08 17:42:01 +03:00
|
|
|
enumerator_with_index(int argc, VALUE *argv, VALUE obj)
|
2005-07-11 18:50:42 +04:00
|
|
|
{
|
2008-05-26 12:49:08 +04:00
|
|
|
struct enumerator *e;
|
2009-02-08 17:42:01 +03:00
|
|
|
VALUE memo;
|
2006-02-03 12:15:42 +03:00
|
|
|
|
2009-02-08 17:42:01 +03:00
|
|
|
rb_scan_args(argc, argv, "01", &memo);
|
|
|
|
RETURN_ENUMERATOR(obj, argc, argv);
|
|
|
|
memo = NIL_P(memo) ? 0 : (VALUE)NUM2LONG(memo);
|
2008-05-26 12:49:08 +04:00
|
|
|
e = enumerator_ptr(obj);
|
2006-02-03 12:15:42 +03:00
|
|
|
if (e->args) {
|
2009-07-18 12:05:32 +04:00
|
|
|
argc = RARRAY_LENINT(e->args);
|
2006-09-02 18:42:08 +04:00
|
|
|
argv = RARRAY_PTR(e->args);
|
2006-02-03 12:15:42 +03:00
|
|
|
}
|
2009-02-08 17:42:01 +03:00
|
|
|
else {
|
|
|
|
argc = 0;
|
|
|
|
argv = NULL;
|
|
|
|
}
|
2008-04-21 11:07:39 +04:00
|
|
|
return rb_block_call(e->obj, e->meth, argc, argv,
|
2006-02-03 12:15:42 +03:00
|
|
|
enumerator_with_index_i, (VALUE)&memo);
|
2005-07-11 18:50:42 +04:00
|
|
|
}
|
|
|
|
|
2009-02-08 17:42:01 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* e.each_with_index {|(*args), idx| ... }
|
|
|
|
* e.each_with_index
|
|
|
|
*
|
|
|
|
* Same as Enumeartor#with_index, except each_with_index does not
|
|
|
|
* receive an offset argument.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
enumerator_each_with_index(VALUE obj)
|
|
|
|
{
|
|
|
|
return enumerator_with_index(0, NULL, obj);
|
|
|
|
}
|
|
|
|
|
2008-06-03 16:43:45 +04:00
|
|
|
static VALUE
|
2009-03-17 12:07:18 +03:00
|
|
|
enumerator_with_object_i(VALUE val, VALUE memo, int argc, VALUE *argv)
|
2008-06-03 16:43:45 +04:00
|
|
|
{
|
2009-03-17 12:07:18 +03:00
|
|
|
if (argc <= 1)
|
|
|
|
return rb_yield_values(2, val, memo);
|
|
|
|
|
|
|
|
return rb_yield_values(2, rb_ary_new4(argc, argv), memo);
|
2008-06-03 16:43:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2008-06-16 04:49:25 +04:00
|
|
|
* e.with_object(obj) {|(*args), memo_obj| ... }
|
|
|
|
* e.with_object(obj)
|
2008-06-03 16:43:45 +04:00
|
|
|
*
|
2008-06-04 10:46:54 +04:00
|
|
|
* Iterates the given block for each element with an arbitrary
|
2008-08-26 09:45:18 +04:00
|
|
|
* object given, and returns the initially given object.
|
2008-06-03 16:43:45 +04:00
|
|
|
*
|
|
|
|
* If no block is given, returns an enumerator.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VALUE
|
2008-06-16 04:49:25 +04:00
|
|
|
enumerator_with_object(VALUE obj, VALUE memo)
|
2008-06-03 16:43:45 +04:00
|
|
|
{
|
|
|
|
struct enumerator *e;
|
|
|
|
int argc = 0;
|
|
|
|
VALUE *argv = 0;
|
|
|
|
|
2008-08-26 09:45:18 +04:00
|
|
|
RETURN_ENUMERATOR(obj, 1, &memo);
|
2008-06-03 16:43:45 +04:00
|
|
|
e = enumerator_ptr(obj);
|
|
|
|
if (e->args) {
|
2009-07-18 12:05:32 +04:00
|
|
|
argc = RARRAY_LENINT(e->args);
|
2008-06-03 16:43:45 +04:00
|
|
|
argv = RARRAY_PTR(e->args);
|
|
|
|
}
|
|
|
|
rb_block_call(e->obj, e->meth, argc, argv,
|
2008-06-16 04:49:25 +04:00
|
|
|
enumerator_with_object_i, memo);
|
2008-06-03 16:43:45 +04:00
|
|
|
|
|
|
|
return memo;
|
|
|
|
}
|
|
|
|
|
2007-08-06 20:41:17 +04:00
|
|
|
static VALUE
|
2008-01-08 12:50:01 +03:00
|
|
|
next_ii(VALUE i, VALUE obj, int argc, VALUE *argv)
|
2007-08-06 20:41:17 +04:00
|
|
|
{
|
2009-08-19 20:36:00 +04:00
|
|
|
struct enumerator *e = enumerator_ptr(obj);
|
|
|
|
VALUE feedvalue = Qnil;
|
|
|
|
VALUE args = rb_ary_new4(argc, argv);
|
|
|
|
rb_fiber_yield(1, &args);
|
|
|
|
if (e->feedvalue != Qundef) {
|
|
|
|
feedvalue = e->feedvalue;
|
|
|
|
e->feedvalue = Qundef;
|
|
|
|
}
|
|
|
|
return feedvalue;
|
2007-08-06 20:41:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2007-08-06 20:53:36 +04:00
|
|
|
next_i(VALUE curr, VALUE obj)
|
2007-08-06 20:41:17 +04:00
|
|
|
{
|
2007-08-06 20:53:36 +04:00
|
|
|
struct enumerator *e = enumerator_ptr(obj);
|
2007-08-24 14:48:43 +04:00
|
|
|
VALUE nil = Qnil;
|
2009-08-19 20:36:00 +04:00
|
|
|
VALUE result;
|
2007-08-20 22:58:32 +04:00
|
|
|
|
2009-08-19 20:36:00 +04:00
|
|
|
result = rb_block_call(obj, id_each, 0, 0, next_ii, obj);
|
|
|
|
e->stop_exc = rb_exc_new2(rb_eStopIteration, "iteration reached at end");
|
|
|
|
rb_ivar_set(e->stop_exc, rb_intern("result"), result);
|
2007-08-24 14:48:43 +04:00
|
|
|
return rb_fiber_yield(1, &nil);
|
2007-08-06 20:41:17 +04:00
|
|
|
}
|
|
|
|
|
2007-08-08 11:07:03 +04:00
|
|
|
static void
|
|
|
|
next_init(VALUE obj, struct enumerator *e)
|
|
|
|
{
|
|
|
|
VALUE curr = rb_fiber_current();
|
|
|
|
e->dst = curr;
|
2007-08-25 06:03:44 +04:00
|
|
|
e->fib = rb_fiber_new(next_i, obj);
|
2009-08-18 16:02:53 +04:00
|
|
|
e->lookahead = Qundef;
|
2007-08-08 11:07:03 +04:00
|
|
|
}
|
|
|
|
|
2009-08-21 17:39:35 +04:00
|
|
|
static VALUE
|
|
|
|
get_next_values(VALUE obj, struct enumerator *e)
|
|
|
|
{
|
|
|
|
VALUE curr, vs;
|
|
|
|
|
|
|
|
if (e->stop_exc)
|
|
|
|
rb_exc_raise(e->stop_exc);
|
|
|
|
|
|
|
|
curr = rb_fiber_current();
|
|
|
|
|
|
|
|
if (!e->fib || !rb_fiber_alive_p(e->fib)) {
|
|
|
|
next_init(obj, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
vs = rb_fiber_resume(e->fib, 1, &curr);
|
|
|
|
if (e->stop_exc) {
|
|
|
|
e->fib = 0;
|
|
|
|
e->dst = Qnil;
|
|
|
|
e->lookahead = Qundef;
|
|
|
|
e->feedvalue = Qundef;
|
|
|
|
rb_exc_raise(e->stop_exc);
|
|
|
|
}
|
|
|
|
return vs;
|
|
|
|
}
|
|
|
|
|
2007-08-06 20:41:17 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-08-19 20:36:00 +04:00
|
|
|
* e.next_values => array
|
2007-08-06 20:41:17 +04:00
|
|
|
*
|
2009-08-19 20:36:00 +04:00
|
|
|
* Returns the next object as an array in the enumerator,
|
|
|
|
* and move the internal position forward.
|
|
|
|
* When the position reached at the end, StopIteration is raised.
|
2007-08-06 20:41:17 +04:00
|
|
|
*
|
2009-08-19 20:36:00 +04:00
|
|
|
* This method can be used to distinguish <code>yield</code> and <code>yield nil</code>.
|
|
|
|
*
|
|
|
|
* o = Object.new
|
|
|
|
* def o.each
|
|
|
|
* yield
|
|
|
|
* yield 1
|
|
|
|
* yield 1, 2
|
|
|
|
* yield nil
|
|
|
|
* yield [1, 2]
|
|
|
|
* end
|
|
|
|
* e = o.to_enum
|
|
|
|
* p e.next_values
|
|
|
|
* p e.next_values
|
|
|
|
* p e.next_values
|
|
|
|
* p e.next_values
|
|
|
|
* p e.next_values
|
|
|
|
* e = o.to_enum
|
|
|
|
* p e.next
|
|
|
|
* p e.next
|
|
|
|
* p e.next
|
|
|
|
* p e.next
|
|
|
|
* p e.next
|
|
|
|
*
|
2009-08-20 00:26:38 +04:00
|
|
|
* ## yield args next_values next
|
|
|
|
* # yield [] nil
|
|
|
|
* # yield 1 [1] 1
|
|
|
|
* # yield 1, 2 [1, 2] [1, 2]
|
|
|
|
* # yield nil [nil] nil
|
|
|
|
* # yield [1, 2] [[1, 2]] [1, 2]
|
2009-08-19 20:36:00 +04:00
|
|
|
*
|
|
|
|
* Note that enumeration sequence by next_values method does not affect other
|
2007-08-06 20:41:17 +04:00
|
|
|
* non-external enumeration methods, unless underlying iteration
|
|
|
|
* methods itself has side-effect, e.g. IO#each_line.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2009-08-19 20:36:00 +04:00
|
|
|
enumerator_next_values(VALUE obj)
|
2007-08-06 20:41:17 +04:00
|
|
|
{
|
|
|
|
struct enumerator *e = enumerator_ptr(obj);
|
2009-08-21 17:39:35 +04:00
|
|
|
VALUE vs;
|
2009-08-18 16:02:53 +04:00
|
|
|
|
|
|
|
if (e->lookahead != Qundef) {
|
2009-08-21 17:39:35 +04:00
|
|
|
vs = e->lookahead;
|
2009-08-18 16:02:53 +04:00
|
|
|
e->lookahead = Qundef;
|
2009-08-21 17:39:35 +04:00
|
|
|
return vs;
|
2009-08-18 16:02:53 +04:00
|
|
|
}
|
|
|
|
|
2009-08-21 17:39:35 +04:00
|
|
|
return get_next_values(obj, e);
|
2007-08-06 20:41:17 +04:00
|
|
|
}
|
|
|
|
|
2009-08-19 20:36:00 +04:00
|
|
|
static VALUE
|
|
|
|
ary2sv(VALUE args)
|
|
|
|
{
|
|
|
|
if (TYPE(args) != T_ARRAY)
|
|
|
|
return args;
|
|
|
|
|
|
|
|
switch (RARRAY_LEN(args)) {
|
|
|
|
case 0:
|
|
|
|
return Qnil;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
return RARRAY_PTR(args)[0];
|
|
|
|
|
|
|
|
default:
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-18 16:02:53 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-08-19 20:36:00 +04:00
|
|
|
* e.next => object
|
2009-08-18 16:02:53 +04:00
|
|
|
*
|
2009-08-19 20:36:00 +04:00
|
|
|
* Returns the next object in the enumerator, and move the internal
|
2009-08-18 16:02:53 +04:00
|
|
|
* position forward. When the position reached at the end, StopIteration
|
|
|
|
* is raised.
|
|
|
|
*
|
2009-08-19 20:36:00 +04:00
|
|
|
* Note that enumeration sequence by next method does not affect other
|
|
|
|
* non-external enumeration methods, unless underlying iteration
|
|
|
|
* methods itself has side-effect, e.g. IO#each_line.
|
|
|
|
*
|
2009-08-18 16:02:53 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2009-08-19 20:36:00 +04:00
|
|
|
enumerator_next(VALUE obj)
|
|
|
|
{
|
|
|
|
VALUE vs = enumerator_next_values(obj);
|
|
|
|
return ary2sv(vs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* e.peek_values => array
|
|
|
|
*
|
|
|
|
* Returns the next object as an array in the enumerator,
|
|
|
|
* but don't move the internal position forward.
|
|
|
|
* When the position reached at the end, StopIteration is raised.
|
|
|
|
*
|
|
|
|
* o = Object.new
|
|
|
|
* def o.each
|
|
|
|
* yield
|
|
|
|
* yield 1
|
|
|
|
* yield 1, 2
|
|
|
|
* end
|
|
|
|
* e = o.to_enum
|
|
|
|
* p e.peek_values #=> []
|
|
|
|
* e.next
|
|
|
|
* p e.peek_values #=> [1]
|
|
|
|
* e.next
|
|
|
|
* p e.peek_values #=> [1, 2]
|
|
|
|
* e.next
|
|
|
|
* p e.peek_values # raises StopIteration
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
enumerator_peek_values(VALUE obj)
|
2009-08-18 16:02:53 +04:00
|
|
|
{
|
|
|
|
struct enumerator *e = enumerator_ptr(obj);
|
|
|
|
|
2009-08-21 17:39:35 +04:00
|
|
|
if (e->lookahead == Qundef) {
|
|
|
|
e->lookahead = get_next_values(obj, e);
|
2009-08-18 16:02:53 +04:00
|
|
|
}
|
2009-08-21 17:39:35 +04:00
|
|
|
return e->lookahead;
|
2009-08-18 16:02:53 +04:00
|
|
|
}
|
|
|
|
|
2009-08-19 20:36:00 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* e.peek => object
|
|
|
|
*
|
|
|
|
* Returns the next object in the enumerator, but don't move the internal
|
|
|
|
* position forward. When the position reached at the end, StopIteration
|
|
|
|
* is raised.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
enumerator_peek(VALUE obj)
|
|
|
|
{
|
|
|
|
VALUE vs = enumerator_peek_values(obj);
|
|
|
|
return ary2sv(vs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* e.feed obj => nil
|
|
|
|
*
|
|
|
|
* Set the value for the next yield in the enumerator returns.
|
|
|
|
*
|
|
|
|
* If the value is not set, yield returns nil.
|
|
|
|
*
|
|
|
|
* This value is cleared after used.
|
|
|
|
*
|
|
|
|
* o = Object.new
|
|
|
|
* def o.each
|
|
|
|
* p yield #=> 1
|
|
|
|
* p yield #=> nil
|
|
|
|
* p yield
|
|
|
|
* end
|
|
|
|
* e = o.to_enum
|
|
|
|
* e.next
|
|
|
|
* e.feed 1
|
|
|
|
* e.next
|
|
|
|
* e.next
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
enumerator_feed(VALUE obj, VALUE v)
|
|
|
|
{
|
|
|
|
struct enumerator *e = enumerator_ptr(obj);
|
|
|
|
|
|
|
|
if (e->feedvalue != Qundef) {
|
|
|
|
rb_raise(rb_eTypeError, "feed value already set");
|
|
|
|
}
|
|
|
|
e->feedvalue = v;
|
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2007-08-06 20:41:17 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2008-01-29 16:30:15 +03:00
|
|
|
* e.rewind => e
|
2007-08-06 20:41:17 +04:00
|
|
|
*
|
|
|
|
* Rewinds the enumeration sequence by the next method.
|
2008-12-10 06:58:56 +03:00
|
|
|
*
|
|
|
|
* If the enclosed object responds to a "rewind" method, it is called.
|
2007-08-06 20:41:17 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
enumerator_rewind(VALUE obj)
|
|
|
|
{
|
|
|
|
struct enumerator *e = enumerator_ptr(obj);
|
|
|
|
|
2008-12-10 06:58:56 +03:00
|
|
|
if (rb_respond_to(e->obj, id_rewind))
|
|
|
|
rb_funcall(e->obj, id_rewind, 0);
|
|
|
|
|
2007-08-06 20:41:17 +04:00
|
|
|
e->fib = 0;
|
2007-08-24 14:48:43 +04:00
|
|
|
e->dst = Qnil;
|
2009-08-18 16:02:53 +04:00
|
|
|
e->lookahead = Qundef;
|
2009-08-19 20:36:00 +04:00
|
|
|
e->feedvalue = Qundef;
|
|
|
|
e->stop_exc = Qfalse;
|
2007-08-06 20:41:17 +04:00
|
|
|
return obj;
|
2006-10-02 21:39:57 +04:00
|
|
|
}
|
|
|
|
|
2008-12-04 05:44:38 +03:00
|
|
|
static VALUE
|
|
|
|
inspect_enumerator(VALUE obj, VALUE dummy, int recur)
|
|
|
|
{
|
|
|
|
struct enumerator *e = enumerator_ptr(obj);
|
|
|
|
const char *cname = rb_obj_classname(obj);
|
|
|
|
VALUE eobj, str;
|
|
|
|
int tainted, untrusted;
|
|
|
|
|
|
|
|
if (recur) {
|
|
|
|
str = rb_sprintf("#<%s: ...>", cname);
|
|
|
|
OBJ_TAINT(str);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
eobj = e->obj;
|
|
|
|
|
|
|
|
tainted = OBJ_TAINTED(eobj);
|
|
|
|
untrusted = OBJ_UNTRUSTED(eobj);
|
|
|
|
|
|
|
|
/* (1..100).each_cons(2) => "#<Enumerator: 1..100:each_cons(2)>" */
|
|
|
|
str = rb_sprintf("#<%s: ", cname);
|
|
|
|
rb_str_concat(str, rb_inspect(eobj));
|
|
|
|
rb_str_buf_cat2(str, ":");
|
|
|
|
rb_str_buf_cat2(str, rb_id2name(e->meth));
|
|
|
|
|
|
|
|
if (e->args) {
|
2009-05-20 13:34:34 +04:00
|
|
|
long argc = RARRAY_LEN(e->args);
|
2008-12-04 05:44:38 +03:00
|
|
|
VALUE *argv = RARRAY_PTR(e->args);
|
|
|
|
|
|
|
|
rb_str_buf_cat2(str, "(");
|
|
|
|
|
|
|
|
while (argc--) {
|
|
|
|
VALUE arg = *argv++;
|
|
|
|
|
|
|
|
rb_str_concat(str, rb_inspect(arg));
|
|
|
|
rb_str_buf_cat2(str, argc > 0 ? ", " : ")");
|
|
|
|
|
2009-07-18 12:05:32 +04:00
|
|
|
if (OBJ_TAINTED(arg)) tainted = TRUE;
|
|
|
|
if (OBJ_UNTRUSTED(arg)) untrusted = TRUE;
|
2008-12-04 05:44:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rb_str_buf_cat2(str, ">");
|
|
|
|
|
|
|
|
if (tainted) OBJ_TAINT(str);
|
|
|
|
if (untrusted) OBJ_UNTRUST(str);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* e.inspect => string
|
|
|
|
*
|
|
|
|
* Create a printable version of <i>e</i>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
enumerator_inspect(VALUE obj)
|
|
|
|
{
|
|
|
|
return rb_exec_recursive(inspect_enumerator, obj, 0);
|
|
|
|
}
|
|
|
|
|
2008-08-26 09:42:12 +04:00
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
|
2009-08-19 20:36:00 +04:00
|
|
|
return rb_proc_call(ptr->proc, args);
|
2008-08-26 09:42:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
yielder_yield_i(VALUE obj, VALUE memo, int argc, VALUE *argv)
|
|
|
|
{
|
|
|
|
return rb_yield_values2(argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
yielder_new(void)
|
|
|
|
{
|
2009-07-13 20:07:43 +04:00
|
|
|
return yielder_init(yielder_allocate(rb_cYielder), rb_proc_new(yielder_yield_i, 0));
|
2008-08-26 09:42:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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();
|
|
|
|
|
2009-08-19 20:36:00 +04:00
|
|
|
return rb_proc_call(ptr->proc, rb_ary_new3(1, yielder));
|
|
|
|
}
|
2008-08-26 09:42:12 +04:00
|
|
|
|
2009-08-19 20:36:00 +04:00
|
|
|
/*
|
|
|
|
* StopIteration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* stopiteration.result => value
|
|
|
|
*
|
|
|
|
* Returns the return value of the iterator.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* o = Object.new
|
|
|
|
* def o.each
|
|
|
|
* yield 1
|
|
|
|
* yield 2
|
|
|
|
* yield 3
|
|
|
|
* 100
|
|
|
|
* end
|
|
|
|
* e = o.to_enum
|
|
|
|
* p e.next #=> 1
|
|
|
|
* p e.next #=> 2
|
|
|
|
* p e.next #=> 3
|
|
|
|
* begin
|
|
|
|
* e.next
|
|
|
|
* rescue StopIteration
|
|
|
|
* p $!.result #=> 100
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
stop_result(VALUE self)
|
|
|
|
{
|
|
|
|
return rb_attr_get(self, rb_intern("result"));
|
2008-08-26 09:42:12 +04:00
|
|
|
}
|
|
|
|
|
2003-10-13 21:09:23 +04:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_Enumerator(void)
|
2003-10-13 21:09:23 +04:00
|
|
|
{
|
2005-07-16 18:43:34 +04:00
|
|
|
rb_define_method(rb_mKernel, "to_enum", obj_to_enum, -1);
|
|
|
|
rb_define_method(rb_mKernel, "enum_for", obj_to_enum, -1);
|
2003-10-13 21:09:23 +04:00
|
|
|
|
|
|
|
rb_define_method(rb_mEnumerable, "each_slice", enum_each_slice, 1);
|
|
|
|
rb_define_method(rb_mEnumerable, "each_cons", enum_each_cons, 1);
|
2008-08-26 09:45:18 +04:00
|
|
|
rb_define_method(rb_mEnumerable, "each_with_object", enum_each_with_object, 1);
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2008-08-13 10:25:53 +04:00
|
|
|
rb_cEnumerator = rb_define_class("Enumerator", rb_cObject);
|
2003-10-13 21:09:23 +04:00
|
|
|
rb_include_module(rb_cEnumerator, rb_mEnumerable);
|
|
|
|
|
2005-07-11 18:50:42 +04:00
|
|
|
rb_define_alloc_func(rb_cEnumerator, enumerator_allocate);
|
2003-10-13 21:09:23 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "initialize", enumerator_initialize, -1);
|
2007-01-26 01:52:38 +03:00
|
|
|
rb_define_method(rb_cEnumerator, "initialize_copy", enumerator_init_copy, 1);
|
2003-10-13 21:09:23 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "each", enumerator_each, 0);
|
2009-02-08 17:42:01 +03:00
|
|
|
rb_define_method(rb_cEnumerator, "each_with_index", enumerator_each_with_index, 0);
|
2008-08-26 09:45:18 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "each_with_object", enumerator_with_object, 1);
|
2009-02-08 17:42:01 +03:00
|
|
|
rb_define_method(rb_cEnumerator, "with_index", enumerator_with_index, -1);
|
2008-06-16 04:49:25 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "with_object", enumerator_with_object, 1);
|
2009-08-19 20:36:00 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "next_values", enumerator_next_values, 0);
|
|
|
|
rb_define_method(rb_cEnumerator, "peek_values", enumerator_peek_values, 0);
|
2007-08-06 20:41:17 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "next", enumerator_next, 0);
|
2009-08-18 16:02:53 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "peek", enumerator_peek, 0);
|
2009-08-19 20:36:00 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "feed", enumerator_feed, 1);
|
2007-08-06 20:41:17 +04:00
|
|
|
rb_define_method(rb_cEnumerator, "rewind", enumerator_rewind, 0);
|
2008-12-04 05:44:38 +03:00
|
|
|
rb_define_method(rb_cEnumerator, "inspect", enumerator_inspect, 0);
|
2003-10-13 21:09:23 +04:00
|
|
|
|
2008-08-26 09:42:12 +04:00
|
|
|
rb_eStopIteration = rb_define_class("StopIteration", rb_eIndexError);
|
2009-08-19 20:36:00 +04:00
|
|
|
rb_define_method(rb_eStopIteration, "result", stop_result, 0);
|
2008-08-26 09:42:12 +04:00
|
|
|
|
|
|
|
/* 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);
|
2007-08-08 11:07:03 +04:00
|
|
|
|
2008-12-10 06:58:56 +03:00
|
|
|
id_rewind = rb_intern("rewind");
|
2009-02-02 14:50:49 +03:00
|
|
|
id_each = rb_intern("each");
|
|
|
|
sym_each = ID2SYM(id_each);
|
2005-07-14 19:15:22 +04:00
|
|
|
|
2005-08-04 19:09:03 +04:00
|
|
|
rb_provide("enumerator.so"); /* for backward compatibility */
|
2003-10-13 21:09:23 +04:00
|
|
|
}
|