Skip to content
Snippets Groups Projects
Commit e1a848d4 authored by Mick Jordan's avatar Mick Jordan
Browse files

refactor JNI-based OS calls from rfficall into osextras

parent c730fdbc
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,7 @@ all:
$(MAKE) -C gnur
$(MAKE) -C include
$(MAKE) -C builtinlibs
$(MAKE) -C osextras
$(MAKE) -C fficall
$(MAKE) -C library
$(MAKE) -C run
......@@ -46,6 +47,7 @@ all:
clean:
$(MAKE) -C include clean
$(MAKE) -C builtinlibs clean
$(MAKE) -C osextras clean
$(MAKE) -C fficall clean
$(MAKE) -C library clean
$(MAKE) -C run clean
......
#
# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.
#
# This code 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
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
ifeq ($(TOPDIR),)
TOPDIR = $(abspath ../..)
endif
ifneq ($(MAKECMDGOALS),clean)
include $(TOPDIR)/platform.mk
endif
.PHONY: all clean
OBJ = lib
SRC = src
C_SOURCES := $(wildcard $(SRC)/*.c)
C_LIBNAME := libosextras$(DYLIB_EXT)
C_OBJECTS := $(subst $(SRC),$(OBJ),$(C_SOURCES:.c=.o))
C_LIB := $(TOPDIR)/builtinlibs/$(OBJ)/$(C_LIBNAME)
CFLAGS := $(CFLAGS) -DFASTR
ifeq ($(OS_DIR),sunos)
OS_INCLUDE := solaris
else
OS_INCLUDE := $(OS_DIR)
endif
JNI_INCLUDES = -I $(JAVA_HOME)/include -I $(JAVA_HOME)/include/$(OS_INCLUDE)
INCLUDES := $(JNI_INCLUDES)
all: $(C_LIB)
$(C_LIB): $(OBJ) $(C_OBJECTS)
$(DYLIB_LD) $(DYLIB_LDFLAGS) -o $(C_LIB) $(C_OBJECTS)
$(OBJ):
mkdir -p $(OBJ)
$(OBJ)/%.o: $(SRC)/%.c
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
clean:
rm -rf $(OBJ) $(C_LIB)
/*
* Copyright (c) 2015, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.truffle.r.runtime.ffi;
import java.nio.file.*;
import com.oracle.truffle.r.runtime.*;
import com.oracle.truffle.r.runtime.RPlatform.*;
public class BuiltinLibPath {
/**
* Returns the absolute path to the builtin library {@code libName} for use with
* {@link System#load}.
*/
public static String getLibPath(String libName) {
String rHome = REnvVars.rHome();
String packageName = "com.oracle.truffle.r.native";
OSInfo osInfo = RPlatform.getOSInfo();
Path path = FileSystems.getDefault().getPath(rHome, packageName, "builtinlibs", "lib", "lib" + libName + "." + osInfo.libExt);
return path.toString();
}
}
......@@ -56,16 +56,13 @@ public class CallRFFIWithJNI implements CallRFFI {
*/
@TruffleBoundary
private static void loadLibrary() {
String rHome = REnvVars.rHome();
String packageName = "com.oracle.truffle.r.native";
OSInfo osInfo = RPlatform.getOSInfo();
Path path = FileSystems.getDefault().getPath(rHome, packageName, "builtinlibs", "lib", "librfficall." + osInfo.libExt);
String librffiPath = BuiltinLibPath.getLibPath("rfficall");
try {
DLL.load(path.toString(), ForceRTLDGlobal, false);
DLL.load(librffiPath, ForceRTLDGlobal, false);
} catch (DLLException ex) {
throw RError.error((SourceSection) null, ex);
}
System.load(path.toString());
System.load(librffiPath);
initialize(RNull.instance);
}
......
......@@ -204,12 +204,55 @@ public class JNR_RFFIFactory extends RFFIFactory implements RFFI, BaseRFFI, Stat
return com.kenai.jffi.Library.getLastError();
}
/*
* Missing from JNR and require non-trivial support. We use JNI.
*/
private interface OSExtras {
UtsName uname();
ArrayList<String> glob(String pattern);
}
private static class OSExtraProvider implements OSExtras {
private static OSExtras osExtras;
@TruffleBoundary
private static OSExtras createAndLoadLib() {
try {
System.load(BuiltinLibPath.getLibPath("osextras"));
return new OSExtraProvider();
} catch (UnsatisfiedLinkError ex) {
throw RInternalError.shouldNotReachHere("osextras");
}
}
static OSExtras osExtras() {
if (osExtras == null) {
osExtras = createAndLoadLib();
}
return osExtras;
}
public UtsName uname() {
return JNIUtsName.get();
}
public ArrayList<String> glob(String pattern) {
return JNIGlob.glob(pattern);
}
}
private static OSExtras osExtras() {
return OSExtraProvider.osExtras();
}
public UtsName uname() {
return JNIUtsName.get();
return osExtras().uname();
}
public ArrayList<String> glob(String pattern) {
return JNIGlob.glob(pattern);
return osExtras().glob(pattern);
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment