在同一包装上使用roxygen2和doxygen?[关闭]


91

我有一个R使用的软件包roxygen2。它在中有一些C代码/src,而我刚开始使用Doxygen。有什么方法可以合并文档或将编译器与roxygen2集成在一起?在哪里放置C代码文档有“最佳实践” 吗?

对roxygen2和doxygen进行谷歌搜索主要导致roxygen与doxygen结果相似。我发现了一些带有Doxyfiles的软件包,但是没有一致的组织。例如,lme4已inst/doc/Doxyfile输出到源目录doxygen外部的文件夹lme4。Matrix的根目录中也有一个Doxyfile(但在以前的版本中是inst。该文档也被导出到package目录之外。

是否有任何理由不将C文档包含在软件包中,或者尽管Doxygen广泛使用,为什么Doxygen在R软件包中却很少使用C

更新:请参阅相关的roxygen2功能请求


8
这不会回答您的问题,但是如果您使用Rcpp,则可以使用roxygen2来记录导出的C ++函数
hadley 2013年

2
我猜想Doxygen没有用在R包中,因为人们没有记录他们的C代码。C代码几乎从来都不是API和R包提供的一部分,因此人们只是不编写文档。如果要将C文档放入程序包中,只需从Makefile生成HTML并将其放在inst /中即可。
Gabor Csardi 2014年

1
我不了解roxygen,但也许它像doxygen一样具有一些xml输出,您可以将其与xslt结合使用并从中创建一个完整的文档。
Daniel Albuschat 2014年

您是要在Doxyten输出中包含roxygen2输入还是以其他方式包含其中?
丹妮丝·斯基德莫尔

Answers:


4

我亲自在所有脚本中调用的“ dataManagement”包中使用以下代码。它具有roxygen文档和示例。您实际上只是调用document()并在src /中的C代码上运行了doxygen。将文档放在inst / doxygen中,以便您的软件包可用于CRAN。

专为R 最终用户设计的R文档不应查看C代码我没有将C代码文档集成到经典R文档中,但是将生成的C文档复制为“渐晕”可能是一个好习惯。

    library("testthat")
    library("devtools")

    #' @title Replace a value for a given tag on file in memory
    #' @description Scan the lines and change the value for the named tag if one line has this tag, 
    #'    add a line at the end if no line has this tag and return a warning if several lines
    #'    matching the tag
    #' @param fileStrings A vector with each string containing a line of the file
    #' @param tag The tag to be searched for 
    #' @param newVal The new value for the tag
    #' @return The vector of strings with the new value
    #' @examples
    #' fakeFileStrings <- c("Hello = world","SURE\t= indeed","Hello = you")
    #' 
    #' expect_warning(ReplaceTag(fakeFileStrings,"Hello","me"))
    #' 
    #' newFake <- ReplaceTag(fakeFileStrings,"SURE","me")
    #' expect_equal(length(newFake), length(fakeFileStrings))
    #' expect_equal(length(grep("SURE",newFake)), 1)
    #' expect_equal(length(grep("me",newFake)), 1)
    #' 
    #' newFake <- ReplaceTag(fakeFileStrings,"Bouh","frightened?")
    #' expect_equal(length(newFake), length(fakeFileStrings)+1)
    #' expect_equal(length(grep("Bouh",newFake)), 1)
    #' expect_equal(length(grep("frightened?",newFake)), 1)
    ReplaceTag <- function(fileStrings,tag,newVal){
        iLine <- grep(paste0("^",tag,"\\>"),fileStrings)
        nLines <- length(iLine)
        if(nLines == 0){
            line <- paste0(tag,"\t= ",newVal)
            iLine <- length(fileStrings)+1
        }else if (nLines > 0){
            line <- gsub("=.*",paste0("= ",newVal),fileStrings[iLine])
            if(nLines >1){
                warning(paste0("File has",nLines,"for key",tag,"check it up manually"))
            }
        }
        fileStrings[iLine] <- line
        return(fileStrings)
    }
    #' Prepares the R package structure for use with doxygen
    #' @description Makes a configuration file in inst/doxygen
    #'     and set a few options: 
    #'     \itemize{
    #'        \item{EXTRACT_ALL = YES}
    #'        \item{INPUT = src/}
    #'        \item{OUTPUT_DIRECTORY = inst/doxygen/}
    #'     }
    #' @param rootFolder The root of the R package
    #' @return NULL
    #' @examples 
    #' \dontrun{
    #' DoxInit()
    #' }
    #' @export
    DoxInit <- function(rootFolder="."){
        doxyFileName <- "Doxyfile"
        initFolder <- getwd()
        if(rootFolder != "."){
            setwd(rootFolder)
        }
        rootFileYes <- length(grep("DESCRIPTION",dir()))>0
        # prepare the doxygen folder
        doxDir <- "inst/doxygen"
        if(!file.exists(doxDir)){
            dir.create(doxDir,recursive=TRUE)
        }
        setwd(doxDir)

        # prepare the doxygen configuration file
        system(paste0("doxygen -g ",doxyFileName))
        doxyfile <- readLines("Doxyfile")
        doxyfile <- ReplaceTag(doxyfile,"EXTRACT_ALL","YES")
        doxyfile <- ReplaceTag(doxyfile,"INPUT","src/")
        doxyfile <- ReplaceTag(doxyfile,"OUTPUT_DIRECTORY","inst/doxygen/")
        cat(doxyfile,file=doxyFileName,sep="\n")
        setwd(initFolder)
        return(NULL)
    }

    #' devtools document function when using doxygen
    #' @description Overwrites devtools::document() to include the treatment of 
    #'    doxygen documentation in src/
    #' @param doxygen A boolean: should doxygen be ran on documents in src?
    #'     the default is TRUE if a src folder exist and FALSE if not
    #' @return The value returned by devtools::document()
    #' @example
    #' \dontrun{
    #' document()
    #' }
    #' @export
    document <- function(doxygen=file.exists("src")){
        if(doxygen){
            doxyFileName<-"inst/doxygen/Doxyfile"
            if(!file.exists(doxyFileName)){
                DoxInit()
            }
            system(paste("doxygen",doxyFileName))
        }
        devtools::document()
    }

谢谢!我想我没有意识到简单的解决方案是重新定义devtools::document为添加系统调用doxygen path/to/Doxyfile。我已将此添加到我的包裹中。我还在roxygen2 github存储库 @hadley中添加了功能请求
安倍

就我所知,此功能的拉取请求未被接受。但是,由于我仍然希望有一种方便的方法来创建doxygen文档,因此我根据上述代码创建了一个小型R包
nevrome '17
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.