mkxp-sunshine/binding-mri/filesystem-binding.cpp
2026-04-27 11:52:48 +04:00

239 lines
6.1 KiB
C++

/*
** filesystem-binding.cpp
**
** This file is part of mkxp.
**
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
**
** mkxp is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 2 of the License, or
** (at your option) any later version.
**
** mkxp 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
*/
#include "binding-util.h"
#include "sharedstate.h"
#include "filesystem.h"
#include "util.h"
#include "ruby/encoding.h"
#include "ruby/intern.h"
#include <ruby.h>
static void fileIntFreeInstance(void *inst){
SDL_IOStream *ops = static_cast<SDL_IOStream*>(inst);
if (ops) {
SDL_CloseIO(ops);
}
}
DEF_TYPE_CUSTOMFREE(FileInt, fileIntFreeInstance);
static VALUE fileIntForPath(const char *path, bool rubyExc){
SDL_IOStream* ops = nullptr;
try{
shState->fileSystem().openReadRaw(ops, path);
if (!ops){
printf("NULL guard! fileIntForPath broken!");
return Qnil;
}
}
catch (const Exception &e){
if (ops)
SDL_CloseIO(ops);
if (rubyExc)
raiseRbExc(e);
else
throw e;
}
VALUE klass = rb_const_get(rb_cObject, rb_intern("FileInt"));
VALUE obj = rb_obj_alloc(klass);
setPrivateData(obj, ops);
return obj;
}
RB_METHOD(fileIntRead){
int length = -1;
rb_get_args(argc, argv, "i", &length);
SDL_IOStream *ops = getPrivateData<SDL_IOStream>(self);
if (!ops){
printf("NULL guard! fileIntRead broken!");
return Qnil;
}
if (length == -1){
Sint64 cur = SDL_TellIO(ops);
Sint64 end = SDL_SeekIO(ops, 0, SDL_IO_SEEK_END);
length = static_cast<int>(end - cur);
SDL_SeekIO(ops, cur, SDL_IO_SEEK_SET);
}
if (length == 0)
return Qnil;
VALUE data = rb_str_new(0, length);
SDL_ReadIO(ops, RSTRING_PTR(data), length);
return data;
}
RB_NA_METHOD(fileIntClose){
SDL_IOStream *ops = getPrivateData<SDL_IOStream>(self);
if (!ops){
printf("NULL guard! fileIntClose broken!");
return Qnil;
}
SDL_CloseIO(ops);
setPrivateData(self, nullptr);
return Qnil;
}
RB_NA_METHOD(fileIntGetByte){
SDL_IOStream *ops = getPrivateData<SDL_IOStream>(self);
unsigned char byte = 0;
size_t result = SDL_ReadIO(ops, &byte, 1);
return (result == 1) ? INT2NUM(byte) : Qnil;
}
RB_NA_METHOD(fileIntBinmode){
return Qnil;
}
static VALUE load_protect(VALUE marsh_and_port) {
VALUE *arr = (VALUE *)marsh_and_port;
VALUE marsh = arr[0];
VALUE port = arr[1];
return rb_funcallv(marsh, rb_intern("load"), 1, &port);
}
VALUE kernelLoadDataInt(const char *filename, bool rubyExc){
VALUE port = fileIntForPath(filename, rubyExc);
VALUE marsh = rb_const_get(rb_cObject, rb_intern("Marshal"));
VALUE args[2] = { marsh, port };
int state = 0;
VALUE result = rb_protect(load_protect, (VALUE)args, &state);
if(RTEST(result) == false){
printf("DEBUG ERROR\n");
return 1;
}
rb_funcallv(port, rb_intern("close"), 0, nullptr);
if (state) {
VALUE err = rb_errinfo();
VALUE klass = rb_obj_class(err);
VALUE message = rb_funcall(err, rb_intern("message"), 0);
VALUE backtrace = rb_funcall(err, rb_intern("backtrace"), 0);
rb_p(klass);
rb_p(message);
rb_p(backtrace);
rb_jump_tag(state);
}
return result;
}
RB_METHOD(kernelLoadData){
RB_UNUSED_PARAM;
const char *filename;
rb_get_args(argc, argv, "z", &filename);
return kernelLoadDataInt(filename, true);
}
RB_METHOD(kernelSaveData){
RB_UNUSED_PARAM;
VALUE obj;
VALUE filename;
rb_get_args(argc, argv, "oS", &obj, &filename);
VALUE file = rb_file_open_str(filename, "wb");
VALUE marsh = rb_const_get(rb_cObject, rb_intern("Marshal"));
VALUE v[] = { obj, file };
rb_funcall2(marsh, rb_intern("dump"), ARRAY_SIZE(v), v);
rb_io_close(file);
return Qnil;
}
static VALUE stringForceUTF8(VALUE arg){
if (RB_TYPE_P(arg, RUBY_T_STRING)) {
/* If current encoding is ASCII-8BIT (binary), associate UTF-8 so
subsequent Ruby-level handling treats it as UTF-8. This preserves
the original logic while using newer C-API helpers. */
int enc_idx = rb_enc_get_index(arg);
if (enc_idx == rb_ascii8bit_encindex()) {
rb_enc_associate_index(arg, rb_utf8_encindex());
}
}
return arg;
}
static VALUE customProc(VALUE arg, VALUE proc){
VALUE obj = stringForceUTF8(arg);
obj = rb_funcall2(proc, rb_intern("call"), 1, &obj);
return obj;
}
RB_METHOD(_marshalLoad){
RB_UNUSED_PARAM;
VALUE port, proc = Qnil;
rb_scan_args(argc, argv, "01", &port, &proc);
VALUE utf8Proc;
if (NIL_P(proc))
utf8Proc = rb_proc_new(RUBY_METHOD_FUNC(stringForceUTF8), Qnil);
else
utf8Proc = rb_proc_new(RUBY_METHOD_FUNC(customProc), proc);
VALUE marsh = rb_const_get(rb_cObject, rb_intern("Marshal"));
VALUE v[] = { port, utf8Proc };
return rb_funcallv(marsh, rb_intern("_mkxp_load_alias"), ARRAY_SIZE(v), v);
}
void fileIntBindingInit(){
VALUE klass = rb_define_class("FileInt", rb_cIO);
rb_define_alloc_func(klass, classAllocate<&FileIntType>);
rb_define_method(klass, "read", RUBY_METHOD_FUNC(fileIntRead), -1);
rb_define_method(klass, "getbyte", RUBY_METHOD_FUNC(fileIntGetByte), 0);
rb_define_method(klass, "binmode1", RUBY_METHOD_FUNC(fileIntBinmode), 0);
rb_define_method(klass, "close", RUBY_METHOD_FUNC(fileIntClose), 0);
rb_define_module_function(rb_mKernel, "load_data", RUBY_METHOD_FUNC(kernelLoadData), -1);
rb_define_module_function(rb_mKernel, "save_data", RUBY_METHOD_FUNC(kernelSaveData), -1);
/* We overload the built-in 'Marshal::load()' function to silently
* insert our utf8proc that ensures all read strings will be
* UTF-8 encoded */
VALUE marsh = rb_const_get(rb_cObject, rb_intern("Marshal"));
rb_define_alias(rb_singleton_class(marsh), "_mkxp_load_alias", "load");
rb_define_module_function(marsh, "load", RUBY_METHOD_FUNC(_marshalLoad), -1);
}