Class: Archive::Reader
- Inherits:
-
Object
- Object
- Archive::Reader
- Defined in:
- ext/libarchive-0.1.1/ext/libarchive_reader.c
Class Method Summary collapse
Instance Method Summary collapse
- #close ⇒ Object
- #compression ⇒ Object
- #compression_name ⇒ Object
- #extract(*args) ⇒ Object
- #format ⇒ Object
- #format_name ⇒ Object
- #header_position ⇒ Object
- #next_header ⇒ Object
- #position_compressed ⇒ Object
- #position_uncompressed ⇒ Object
- #read_data(*args) ⇒ Object
- #save_data(*args) ⇒ Object
Class Method Details
.open_filename(*args) ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 103
static VALUE rb_libarchive_reader_s_open_filename(int argc, VALUE *argv, VALUE self) {
VALUE v_filename, v_compression, v_format;
const char *filename = NULL;
int compression = -1, format = -1;
const char *cmd = NULL;
rb_scan_args(argc, argv, "12", &v_filename, &v_compression, &v_format);
Check_Type(v_filename, T_STRING);
filename = RSTRING_PTR(v_filename);
if (T_STRING == TYPE(v_compression)) {
compression = -1;
cmd = RSTRING_PTR(v_compression);
} else if (!NIL_P(v_compression)) {
compression = NUM2INT(v_compression);
}
if (!NIL_P(v_format)) {
format = NUM2INT(v_format);
}
return rb_libarchive_reader_s_open0(rb_libarchive_reader_s_open_filename0, (void *) filename, compression, format, cmd);
}
|
.open_memory(*args) ⇒ Object
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 132
static VALUE rb_libarchive_reader_s_open_memory(int argc, VALUE *argv, VALUE self) {
VALUE v_memory, v_compression, v_format;
int compression = -1, format = -1;
const char *cmd = NULL;
rb_scan_args(argc, argv, "12", &v_memory, &v_compression, &v_format);
Check_Type(v_memory, T_STRING);
if (T_STRING == TYPE(v_compression)) {
compression = -1;
cmd = RSTRING_PTR(v_compression);
} else if (!NIL_P(v_compression)) {
compression = NUM2INT(v_compression);
}
if (!NIL_P(v_format)) {
format = NUM2INT(v_format);
}
return rb_libarchive_reader_s_open0(rb_libarchive_reader_s_open_memory0, (void *) v_memory, compression, format, cmd);
}
|
Instance Method Details
#close ⇒ Object
15 16 17 18 19 20 21 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 15
static VALUE rb_libarchive_reader_close(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
rb_libarchive_reader_close0(p);
return Qnil;
}
|
#compression ⇒ Object
48 49 50 51 52 53 |
# File 'ext/libarchive-0.1.1/ext/libarchive_archive.c', line 48
static VALUE rb_libarchive_archive_compression(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
return INT2NUM(archive_filter_code(p->ar, 0));
}
|
#compression_name ⇒ Object
40 41 42 43 44 45 |
# File 'ext/libarchive-0.1.1/ext/libarchive_archive.c', line 40
static VALUE rb_libarchive_archive_filter_name(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
return rb_str_new2(archive_filter_name(p->ar, 0));
}
|
#extract(*args) ⇒ Object
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 287
static VALUE rb_libarchive_reader_extract(int argc, VALUE *argv, VALUE self) {
VALUE v_entry, v_flags;
struct rb_libarchive_archive_container *pa;
struct rb_libarchive_entry_container *pae;
int flags = 0;
rb_scan_args(argc, argv, "11", &v_entry, &v_flags);
Check_Class(v_entry, rb_cArchiveEntry);
if (!NIL_P(v_flags)) {
flags = (NUM2INT(v_flags) & EXTRACT_FLAGS);
}
Data_Get_Struct(self, struct rb_libarchive_archive_container, pa);
Check_Archive(pa);
if (pa->eof) {
rb_raise(rb_eArchiveError, "Extract archive failed: It has already reached EOF");
}
Data_Get_Struct(v_entry, struct rb_libarchive_entry_container, pae);
Check_Entry(pae);
if (archive_read_extract(pa->ar, pae->ae, flags) != ARCHIVE_OK) {
rb_raise(rb_eArchiveError, "Extract archive failed: %s", archive_error_string(pa->ar));
}
return Qnil;
}
|
#format ⇒ Object
64 65 66 67 68 69 |
# File 'ext/libarchive-0.1.1/ext/libarchive_archive.c', line 64
static VALUE rb_libarchive_archive_format(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
return NUM2INT(archive_format(p->ar));
}
|
#format_name ⇒ Object
56 57 58 59 60 61 |
# File 'ext/libarchive-0.1.1/ext/libarchive_archive.c', line 56
static VALUE rb_libarchive_archive_format_name(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
return rb_str_new2(archive_format_name(p->ar));
}
|
#header_position ⇒ Object
178 179 180 181 182 183 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 178
static VALUE rb_libarchive_reader_header_position(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
return LONG2NUM((long) archive_read_header_position(p->ar));
}
|
#next_header ⇒ Object
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 154
static VALUE rb_libarchive_reader_next_header(VALUE self) {
struct rb_libarchive_archive_container *p;
struct archive_entry *ae;
int r;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
if (p->eof) {
return Qnil;
}
r = archive_read_next_header(p->ar, &ae);
if (r == ARCHIVE_EOF) {
p->eof = 1;
return Qnil;
} else if (r != ARCHIVE_OK) {
rb_raise(rb_eArchiveError, "Fetch entry failed: %s", archive_error_string(p->ar));
}
return rb_libarchive_entry_new(ae, 0);
}
|
#position_compressed ⇒ Object
24 25 26 27 28 29 |
# File 'ext/libarchive-0.1.1/ext/libarchive_archive.c', line 24
static VALUE rb_libarchive_archive_position_compressed(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
return LL2NUM(archive_filter_bytes(p->ar, -1));
}
|
#position_uncompressed ⇒ Object
32 33 34 35 36 37 |
# File 'ext/libarchive-0.1.1/ext/libarchive_archive.c', line 32
static VALUE rb_libarchive_archive_position_uncompressed(VALUE self) {
struct rb_libarchive_archive_container *p;
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
return LL2NUM(archive_filter_bytes(p->ar, 0));
}
|
#read_data(*args) ⇒ Object
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 186
static VALUE rb_libarchive_reader_read_data(int argc, VALUE *argv, VALUE self) {
VALUE v_size;
struct rb_libarchive_archive_container *p;
char *buff;
size_t size = DATA_BUFFER_SIZE;
ssize_t n;
rb_scan_args(argc, argv, "01", &v_size);
if (!NIL_P(v_size)) {
size = NUM2INT(v_size);
}
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
if (p->eof) {
return Qnil;
}
if (rb_block_given_p()) {
ssize_t len = 0;
int status = 0;
buff = xmalloc(size);
while ((n = archive_read_data(p->ar, buff, size)) > 0) {
rb_protect(rb_yield, rb_str_new(buff, n), &status);
if (status != 0) {
break;
}
len += n;
}
xfree(buff);
if (status != 0) {
rb_jump_tag(status);
}
if (n < 0) {
rb_raise(rb_eArchiveError, "Read data failed: %s", archive_error_string(p->ar));
}
return LONG2NUM(len);
} else {
VALUE retval = rb_str_new("", 0);
buff = xmalloc(size);
while ((n = archive_read_data(p->ar, buff, size)) > 0) {
rb_str_cat(retval, buff, n);
}
xfree(buff);
if (n < 0) {
rb_raise(rb_eArchiveError, "Read data failed: %s", archive_error_string(p->ar));
}
return retval;
}
}
|
#save_data(*args) ⇒ Object
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 250
static VALUE rb_libarchive_reader_save_data(int argc, VALUE *argv, VALUE self) {
VALUE v_filename, v_flags;
struct rb_libarchive_archive_container *p;
const char *filename;
int flags, fd, r;
rb_scan_args(argc, argv, "11", &v_filename, &v_flags);
Check_Type(v_filename, T_STRING);
filename = RSTRING_PTR(v_filename);
if (!NIL_P(v_flags)) {
flags = ((O_WRONLY | NUM2INT(v_flags)) & O_FLAGS);
} else {
flags = (O_WRONLY | O_CREAT | O_EXCL
#ifdef O_BINARY
| O_BINARY
#endif
);
}
Data_Get_Struct(self, struct rb_libarchive_archive_container, p);
Check_Archive(p);
if ((fd = open(filename, flags)) == -1) {
rb_raise(rb_eArchiveError, "Save data failed: %s", strerror(errno));
}
r = archive_read_data_into_fd(p->ar, fd);
close(fd);
if (r != ARCHIVE_OK) {
rb_raise(rb_eArchiveError, "Save data failed: %s", archive_error_string(p->ar));
}
return Qnil;
}
|