All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ext.JRubyPOSIXHelper Maven / Gradle / Ivy

There is a newer version: 9.4.7.0
Show newest version
package org.jruby.ext;

import com.kenai.constantine.platform.Errno;
import org.jruby.Ruby;
import org.jruby.RubyClass;
import org.jruby.exceptions.RaiseException;

public class JRubyPOSIXHelper {
    /**
     * Helper for handling common POSIX situations where a negative return value
     * from a function call indicates an error, and errno must be consulted to
     * determine how exactly the function failed.
     * @param runtime Ruby runtime
     * @param result return value of a POSIX call
     */

    public static void checkErrno(Ruby runtime, int result) {
        if (result < 0) {
        // FIXME: The error message is a bit off.
        // e.g., No such process - No such process (Errno::ESRCH)
        // Note the repetition of 'No such process'.
            Errno errno = Errno.valueOf(runtime.getPosix().errno());
            String name = errno.name();
            String msg  = errno.toString();
            RubyClass errnoClass = runtime.getErrno().fastGetClass(name);
            if (errnoClass != null) {
                throw new RaiseException(runtime, errnoClass, msg, true);
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy