同じパッケージでroxygen2とdoxygenを使用していますか?[閉まっている]


91

R使用するパッケージがありますroxygen2。にはいくつかのCコードが/srcあり、私はDoxygenでの作業を始めたところです。ドキュメントを組み合わせる方法、またはコンパイルをroxygen2と統合する方法はありますか?Cコードドキュメントを配置する場所の「ベストプラクティス」はありますか?

roxygen2とdoxygenのグーグルは主にroxygenにつながり、doxygenの結果と似ています。Doxyfilesを含むパッケージをいくつか見つけましたが、一貫した組織がありません。たとえば、lme4は、ソースディレクトリの外部inst/doc/Doxyfileと呼ばれるフォルダーに出力します。MatrixのルートディレクトリにもDoxyfileがあります(以前のリリースではにありました。このドキュメントもパッケージディレクトリの外にエクスポートされます)。doxygenlme4inst

Cパッケージ内にドキュメントを含めない理由はありますか?または、広く使用されているにもかかわらず、Rパッケージ内でDoxygenがあまり使用されないのはなぜCですか?

更新:関連するroxygen2機能リクエストを参照


8
これはあなたの質問には答えませんが、Rcppを使用している場合は、roxygen2を使用して、エクスポートされたC ++関数を文書化できます
hadley

2
人々がCコードを文書化していないため、RパッケージではDoxygenは使用されていないと思います。CコードがAPIの一部になることはほとんどなく、Rパッケージが提供するものなので、ドキュメント化しないでください。Cドキュメントをパッケージに入れたい場合は、MakefileからHTMLを生成してinst /に入れてください。
Gabor Csardi、2014

1
私はroxygenを知りませんが、おそらくdoxygenのようにxml出力があり、それをいくつかのxsltと組み合わせて、そこから完全なドキュメントを作成できます。
Daniel Albuschat 14

roxygen2入力をdoxyten出力に含めようとしていますか、それとも逆ですか?
Denise Skidmore、2015年

回答:


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
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.