R/build.R

Defines functions asBuildPath isSparc gsLibPath pbLibPath pbLdFlags pbCxxFlags RProtoBufLibLibs LdFlags CxxFlags

Documented in LdFlags

# Output the CXX flags. These flags are propagated to sourceCpp via the 
# inlineCxxPlugin (defined below) and to packages via a line in Makevars[.win]
# like this:
#
#  PKG_CXXFLAGS += $(shell "${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe" -e "RProtoBufLib::CxxFlags()")
#
CxxFlags <- function() {
   cat(pbCxxFlags())
}


#' Output the LD flags for linking against pb. 
#' It is only needed to be called for windows.
#' For nix-OS, the other package simply import this for the side effect of loading RProtoBuflib.
#' @export 
LdFlags <- function() {
   cat(pbLdFlags())
}

# alias for backward compatibility
RProtoBufLibLibs <- function() {
   LdFlags()
}


pbCxxFlags <- function() {
   
   flags <- c()
   
   
   flags
}

# Return the linker flags requried for pb on this platform
pbLdFlags <- function() {
	lite = FALSE
   # on Windows and Solaris we need to explicitly link against pb.dll
   if ((Sys.info()['sysname'] %in% c("Windows", "SunOS")) && !isSparc()) {
	  suffix <- ifelse(lite, "-lite", "")
	  pb <- pbLibPath(suffix)
      gs <- gsLibPath()
#      res <- asBuildPath(pb)
      res <- paste(asBuildPath(gs), " -L", asBuildPath(dirname(pb)), " -lprotobuf ", sep = "")
   } else {
     res <- ""
   }
	# if(all)
	  # res <- paste(res, gslibs)
	res
}

# Determine the platform-specific path to the pb library
pbLibPath <- function(suffix = "") {
   sysname <- Sys.info()['sysname']
   pbSupported <- list(
      "Darwin" = paste("libprotobuf", suffix, ".dylib", sep = ""), 
      "Linux" = paste("libprotobuf", suffix, ".so", sep = ""), 
      "Windows" = paste("libprotobuf", suffix, ".a", sep = ""),
      "SunOS" = paste("libprotobuf", suffix, ".so", sep = "")
   )
   # browser()
   if ((sysname %in% names(pbSupported)) && !isSparc()) {
      libDir <- "lib/"
      if (sysname == "Windows")
         libDir <- paste(libDir, .Platform$r_arch, "/", sep="")
      system.file(paste(libDir, pbSupported[[sysname]], sep = ""), 
                  package = "RProtoBufLib")
   } else {
      NULL
   }
}

gsLibPath <- function(suffix = "") {
  sysname <- Sys.info()['sysname']
  pbSupported <- list(
    "Darwin" = paste("libGatingSet.pb", suffix, ".dylib", sep = ""), 
    "Linux" = paste("libGatingSet.pb", suffix, ".so", sep = ""), 
    "Windows" = paste("GatingSet.pb", suffix, ".o", sep = ""),
    "SunOS" = paste("libGatingSet.pb", suffix, ".so", sep = "")
  )
  # browser()
  if ((sysname %in% names(pbSupported)) && !isSparc()) {
    libDir <- "lib/"
    if (sysname == "Windows")
      libDir <- paste(libDir, .Platform$r_arch, "/", sep="")
    system.file(paste(libDir, pbSupported[[sysname]], sep = ""), 
                package = "RProtoBufLib")
  } else {
    NULL
  }
}

isSparc <- function() {
   Sys.info()['sysname'] == "SunOS" && Sys.info()[["machine"]] != "i86pc"
}

# Helper function to ape the behavior of the R build system
# when providing paths to libraries
asBuildPath <- function(path) {
   if (.Platform$OS.type == "windows") {
      path <- normalizePath(path)
      if (grepl(' ', path, fixed=TRUE))
         path <- utils::shortPathName(path)
      path <- gsub("\\\\", "/", path)
   }
   return(path)
}
RGLab/RProtoBufLib documentation built on July 31, 2023, 5:40 p.m.