X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=ext%2Fext.c;h=2fa47a942b54c6c907dff881ae6b46be2467acf5;hb=55a30d72d58511425905f5c25c9153a850710a6c;hp=d88367fc74162828afaf1f306572f4f94da57079;hpb=b1caf93615078a76dc4c83589d0234ddfa99f9c2;p=ruby-eet.git diff --git a/ext/ext.c b/ext/ext.c index d88367f..2fa47a9 100644 --- a/ext/ext.c +++ b/ext/ext.c @@ -1,6 +1,4 @@ /* - * $Id: ext.c 70 2005-07-15 20:31:58Z tilman $ - * * Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de) * * Permission is hereby granted, free of charge, to any person obtaining @@ -36,6 +34,15 @@ if (!*(ef)) \ rb_raise (rb_eIOError, "closed stream"); +#define CHECK_READABLE(ef) \ + switch (eet_mode_get (*ef)) { \ + case EET_FILE_MODE_READ: \ + case EET_FILE_MODE_READ_WRITE: \ + break; \ + default: \ + rb_raise (rb_eIOError, "permission denied"); \ + } + #ifdef WORDS_BIGENDIAN # define BSWAP32(x) \ ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \ @@ -47,11 +54,10 @@ static VALUE c_close (VALUE self); static VALUE cStream, cChunk, - eEetError, eNameError, ePropError, eStreamError, - eBadElementError, + eEetError, eNameError, ePropError, sym_lossy, sym_level, sym_quality, sym_char, sym_short, sym_long_long, sym_double; -static ID id_include, id_serialize, id_keys, id_pack, +static ID id_include, id_to_s, id_keys, id_pack, id_to_eet_chunks, id_to_eet_name, id_to_eet_properties, id_tag, id_data; @@ -180,47 +186,61 @@ c_close (VALUE self) return self; } +static VALUE +get_keys (Eet_File *ef, char *glob) +{ + VALUE ret; + char **keys; + int i, count = 0; + + keys = eet_list (ef, glob, &count); + ret = rb_ary_new2 (count); + + for (i = 0; i < count; i++) + rb_ary_store (ret, i, rb_str_new2 (keys[i])); + + free (keys); + + return ret; +} + /* * call-seq: - * ef.list([glob]) -> array + * ef.entries -> array * - * Returns an Array of entries in _ef_ that match the shell glob - * _glob_ (defaulting to "*"). + * Returns an Array with the keys of the entries in _ef_. + * If the keys cannot be retrieved, an +IOError+ is raised. */ static VALUE -c_list (int argc, VALUE *argv, VALUE self) +c_entries (VALUE self) { - VALUE glob = Qnil, ret; Eet_File **ef = NULL; - char **entries, *tmp = "*"; - int i, count = 0; Data_Get_Struct (self, Eet_File *, ef); CHECK_CLOSED (ef); + CHECK_READABLE (ef); - switch (eet_mode_get (*ef)) { - case EET_FILE_MODE_READ: - case EET_FILE_MODE_READ_WRITE: - break; - default: - rb_raise (rb_eIOError, "cannot list entries"); - } - - rb_scan_args (argc, argv, "01", &glob); - - if (!NIL_P (glob)) - tmp = StringValuePtr (glob); - - ret = rb_ary_new (); - - entries = eet_list (*ef, tmp, &count); + return get_keys (*ef, "*"); +} - for (i = 0; i < count; i++) - rb_ary_push (ret, rb_str_new2 (entries[i])); +/* + * call-seq: + * ef[glob] -> array + * + * Returns an Array with the keys of entries in _ef_ that match the + * shell glob _glob_. + * If the keys cannot be retrieved, an +IOError+ is raised. + */ +static VALUE +c_glob (VALUE self, VALUE glob) +{ + Eet_File **ef = NULL; - free (entries); + Data_Get_Struct (self, Eet_File *, ef); + CHECK_CLOSED (ef); + CHECK_READABLE (ef); - return ret; + return get_keys (*ef, StringValuePtr (glob)); } /* @@ -341,7 +361,8 @@ c_read_image (VALUE self, VALUE key) Eet_File **ef = NULL; void *data; char *ckey; - int w = 0, h = 0, has_alpha = 0, level = 0, quality = 0, lossy = 0; + unsigned int w = 0, h = 0; + int has_alpha = 0, level = 0, quality = 0, lossy = 0; Data_Get_Struct (self, Eet_File *, ef); CHECK_CLOSED (ef); @@ -437,33 +458,6 @@ c_write_image (int argc, VALUE *argv, VALUE self) return INT2FIX (n); } -static VALUE -stream_serialize (VALUE self) -{ - VALUE ret; - struct RArray *stream; - long i; - - stream = RARRAY (self); - if (!stream->len) - return rb_str_new2 (""); - - ret = rb_ary_new (); - - for (i = 0; i < stream->len; i++) { - VALUE str; - - if (rb_obj_is_kind_of (stream->ptr[i], cChunk) == Qfalse) - rb_raise (eBadElementError, "stream member is not a Chunk"); - - str = rb_funcall (stream->ptr[i], id_serialize, 0, NULL); - - rb_ary_push (ret, str); - } - - return rb_ary_join (ret, Qnil); -} - static VALUE chunk_init (VALUE self, VALUE tag, VALUE data) { @@ -492,7 +486,7 @@ chunk_init (VALUE self, VALUE tag, VALUE data) } static VALUE -chunk_serialize (VALUE self) +chunk_to_s (VALUE self) { VALUE tmp, ret; unsigned int size, buf_len; @@ -508,7 +502,7 @@ chunk_serialize (VALUE self) buf_len = 9 + tag->len + data->len; ret = rb_str_buf_new (buf_len); - buf = RSTRING (ret)->ptr; + buf = (unsigned char *) RSTRING (ret)->ptr; RSTRING (ret)->len = buf_len; memcpy (buf, "CHnK", 4); @@ -591,13 +585,13 @@ c_to_eet (VALUE self) #endif args[0] = name; - args[1] = rb_funcall (stream, id_serialize, 0); + args[1] = rb_ary_to_s (stream); rb_ary_clear (stream); /* give the GC a hand... */ chunk = rb_class_new_instance (2, args, cChunk); - return rb_funcall (chunk, id_serialize, 0); + return rb_funcall (chunk, id_to_s, 0); } static VALUE @@ -666,7 +660,8 @@ Init_eet_ext () rb_define_singleton_method (c, "open", c_open, -1); rb_define_method (c, "initialize", c_init, -1); rb_define_method (c, "close", c_close, 0); - rb_define_method (c, "list", c_list, -1); + rb_define_method (c, "entries", c_entries, 0); + rb_define_method (c, "[]", c_glob, 1); rb_define_method (c, "delete", c_delete, 1); rb_define_method (c, "read", c_read, 1); rb_define_method (c, "write", c_write, -1); @@ -674,11 +669,10 @@ Init_eet_ext () rb_define_method (c, "write_image", c_write_image, -1); cStream = rb_define_class_under (m, "Stream", rb_cArray); - rb_define_method (cStream, "serialize", stream_serialize, 0); cChunk = rb_define_class_under (m, "Chunk", rb_cObject); rb_define_method (cChunk, "initialize", chunk_init, 2); - rb_define_method (cChunk, "serialize", chunk_serialize, 0); + rb_define_method (cChunk, "to_s", chunk_to_s, 0); rb_define_attr (cChunk, "tag", 1, 0); rb_define_attr (cChunk, "data", 1, 0); @@ -691,12 +685,9 @@ Init_eet_ext () eEetError = rb_define_class_under (m, "EetError", rb_eStandardError); eNameError = rb_define_class_under (m, "NameError", eEetError); ePropError = rb_define_class_under (m, "PropertyError", eEetError); - eStreamError = rb_define_class_under (m, "StreamError", eEetError); - eBadElementError = rb_define_class_under (m, "BadElementError", - eStreamError); id_include = rb_intern ("include?"); - id_serialize = rb_intern ("serialize"); + id_to_s = rb_intern ("to_s"); id_keys = rb_intern ("keys"); id_pack = rb_intern ("pack"); id_to_eet_chunks = rb_intern ("to_eet_chunks");