mruby-print: remove the gem; ref #6466

This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-01-14 13:27:32 +09:00
parent b9b505b5f2
commit 89d83c27f3
3 changed files with 0 additions and 105 deletions
-6
View File
@@ -1,6 +0,0 @@
MRuby::Gem::Specification.new('mruby-print') do |spec|
spec.license = 'MIT'
spec.author = 'mruby developers'
spec.summary = 'minimal print/puts'
# mruby-io provides full I/O functionality
end
-28
View File
@@ -1,28 +0,0 @@
##
# Kernel
#
# ISO 15.3.1
module Kernel
# ISO 15.3.1.2.11 Kernel.puts
# ISO 15.3.1.3.39 Kernel#puts
def puts(*args)
i = 0
len = args.size
while i < len
s = args[i]
if s.kind_of?(Array)
puts(*s)
else
s = s.to_s
print s
print "\n" if (s[-1] != "\n")
end
i += 1
end
print "\n" if len == 0
end
def printf(*args)
print(sprintf(*args))
end
end
-71
View File
@@ -1,71 +0,0 @@
#include <mruby.h>
#ifdef MRB_NO_STDIO
# error print conflicts 'MRB_NO_STDIO' in your build configuration
#endif
#include <mruby/string.h>
#include <mruby/presym.h>
#include <string.h>
#if defined(_WIN32)
# include <windows.h>
# include <io.h>
#ifdef _MSC_VER
# define isatty(x) _isatty(x)
# define fileno(x) _fileno(x)
#endif
#else
# include <unistd.h>
#endif
static void
printstr(mrb_state *mrb, mrb_value s)
{
if (mrb_string_p(s)) {
const char *p = RSTRING_PTR(s);
mrb_int len = RSTRING_LEN(s);
#if defined(_WIN32)
if (isatty(fileno(stdout))) {
DWORD written;
int wlen = MultiByteToWideChar(CP_UTF8, 0, p, (int)len, NULL, 0);
wchar_t* utf16 = (wchar_t*)mrb_malloc(mrb, (wlen+1) * sizeof(wchar_t));
if (MultiByteToWideChar(CP_UTF8, 0, p, (int)len, utf16, wlen) > 0) {
utf16[wlen] = 0;
WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE),
utf16, (DWORD)wlen, &written, NULL);
}
mrb_free(mrb, utf16);
return;
}
#endif
fwrite(p, (size_t)len, 1, stdout);
}
}
// ISO 15.3.1.2.10 Kernel.print
// ISO 15.3.1.3.35 Kernel#print
static mrb_value
mrb_print(mrb_state *mrb, mrb_value self)
{
mrb_int argc = mrb_get_argc(mrb);
const mrb_value *argv = mrb_get_argv(mrb);
for (mrb_int i=0; i<argc; i++) {
mrb_value str = mrb_obj_as_string(mrb, argv[i]);
printstr(mrb, str);
}
if (isatty(fileno(stdout))) fflush(stdout);
return mrb_nil_value();
}
void
mrb_mruby_print_gem_init(mrb_state* mrb)
{
mrb_define_method_id(mrb, mrb->kernel_module, MRB_SYM(print), mrb_print, MRB_ARGS_ANY()); /* 15.3.1.3.35 */
}
void
mrb_mruby_print_gem_final(mrb_state* mrb)
{
}