| 30 |
ashish |
1 |
/**
|
|
|
2 |
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
3 |
* or more contributor license agreements. See the NOTICE file
|
|
|
4 |
* distributed with this work for additional information
|
|
|
5 |
* regarding copyright ownership. The ASF licenses this file
|
|
|
6 |
* to you under the Apache License, Version 2.0 (the
|
|
|
7 |
* "License"); you may not use this file except in compliance
|
|
|
8 |
* with the License. You may obtain a copy of the License at
|
|
|
9 |
*
|
|
|
10 |
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
11 |
*
|
|
|
12 |
* Unless required by applicable law or agreed to in writing,
|
|
|
13 |
* software distributed under the License is distributed on an
|
|
|
14 |
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
15 |
* KIND, either express or implied. See the License for the
|
|
|
16 |
* specific language governing permissions and limitations
|
|
|
17 |
* under the License.
|
|
|
18 |
*/
|
|
|
19 |
|
|
|
20 |
#include <ruby.h>
|
|
|
21 |
#include <constants.h>
|
|
|
22 |
#include "macros.h"
|
|
|
23 |
|
|
|
24 |
ID buf_ivar_id;
|
|
|
25 |
ID index_ivar_id;
|
|
|
26 |
|
|
|
27 |
ID slice_method_id;
|
|
|
28 |
|
|
|
29 |
int GARBAGE_BUFFER_SIZE;
|
|
|
30 |
|
|
|
31 |
#define GET_BUF(self) rb_ivar_get(self, buf_ivar_id)
|
|
|
32 |
|
|
|
33 |
VALUE rb_thrift_memory_buffer_write(VALUE self, VALUE str) {
|
|
|
34 |
VALUE buf = GET_BUF(self);
|
|
|
35 |
rb_str_buf_cat(buf, RSTRING_PTR(str), RSTRING_LEN(str));
|
|
|
36 |
return Qnil;
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
VALUE rb_thrift_memory_buffer_read(VALUE self, VALUE length_value) {
|
|
|
40 |
int length = FIX2INT(length_value);
|
|
|
41 |
|
|
|
42 |
VALUE index_value = rb_ivar_get(self, index_ivar_id);
|
|
|
43 |
int index = FIX2INT(index_value);
|
|
|
44 |
|
|
|
45 |
VALUE buf = GET_BUF(self);
|
|
|
46 |
VALUE data = rb_funcall(buf, slice_method_id, 2, index_value, length_value);
|
|
|
47 |
|
|
|
48 |
index += length;
|
|
|
49 |
if (index > RSTRING_LEN(buf)) {
|
|
|
50 |
index = RSTRING_LEN(buf);
|
|
|
51 |
}
|
|
|
52 |
if (index >= GARBAGE_BUFFER_SIZE) {
|
|
|
53 |
rb_ivar_set(self, buf_ivar_id, rb_funcall(buf, slice_method_id, 2, INT2FIX(index), INT2FIX(RSTRING_LEN(buf) - 1)));
|
|
|
54 |
index = 0;
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
if (RSTRING_LEN(data) < length) {
|
|
|
58 |
rb_raise(rb_eEOFError, "Not enough bytes remain in memory buffer");
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
rb_ivar_set(self, index_ivar_id, INT2FIX(index));
|
|
|
62 |
return data;
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
void Init_memory_buffer() {
|
|
|
66 |
VALUE thrift_memory_buffer_class = rb_const_get(thrift_module, rb_intern("MemoryBufferTransport"));
|
|
|
67 |
rb_define_method(thrift_memory_buffer_class, "write", rb_thrift_memory_buffer_write, 1);
|
|
|
68 |
rb_define_method(thrift_memory_buffer_class, "read", rb_thrift_memory_buffer_read, 1);
|
|
|
69 |
|
|
|
70 |
buf_ivar_id = rb_intern("@buf");
|
|
|
71 |
index_ivar_id = rb_intern("@index");
|
|
|
72 |
|
|
|
73 |
slice_method_id = rb_intern("slice");
|
|
|
74 |
|
|
|
75 |
GARBAGE_BUFFER_SIZE = FIX2INT(rb_const_get(thrift_memory_buffer_class, rb_intern("GARBAGE_BUFFER_SIZE")));
|
|
|
76 |
}
|