/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2017 Ruby-GNOME2 Project Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA */ #include "rbgprivate.h" #define RG_TARGET_NAMESPACE cBytes #define _SELF(s) (RVAL2BOXED(s, G_TYPE_BYTES)) #if GLIB_CHECK_VERSION(2, 32, 0) static VALUE RG_TARGET_NAMESPACE; static VALUE rg_initialize(int argc, VALUE *argv, VALUE self) { GBytes *bytes; VALUE rb_data; rb_scan_args(argc, argv, "01", &rb_data); if (NIL_P(rb_data)) { bytes = g_bytes_new(NULL, 0); } else { const gchar *data = RVAL2CSTR_PTR(rb_data); bytes = g_bytes_new(data, RSTRING_LEN(rb_data)); } G_INITIALIZE(self, bytes); return Qnil; } static VALUE rg_to_s(VALUE self) { GBytes *bytes; gconstpointer data; gsize size; VALUE rb_data; bytes = _SELF(self); data = g_bytes_get_data(bytes, &size); # ifdef HAVE_RB_ENC_STR_NEW_STATIC rb_data = rb_enc_str_new_static(data, size, rb_ascii8bit_encoding()); rb_iv_set(rb_data, "@bytes", self); # else rb_data = rb_enc_str_new(data, size, rb_ascii8bit_encoding()); # endif return rb_data; } #endif void Init_glib_bytes(void) { #if GLIB_CHECK_VERSION(2, 32, 0) RG_TARGET_NAMESPACE = G_DEF_CLASS(G_TYPE_BYTES, "Bytes", mGLib); RG_DEF_METHOD(initialize, -1); RG_DEF_METHOD(to_s, 0); RG_DEF_ALIAS("to_str", "to_s"); #endif }