ฉันเพิ่งรวบรวมโครงสร้างข้อมูลที่ดีและเชนการประมวลผลเพื่อสร้างพฤติกรรมการสลับนี้ไม่จำเป็นต้องใช้ไลบรารี ฉันแน่ใจว่ามันจะถูกนำไปใช้หลายครั้งและเจอกระทู้นี้เพื่อดูตัวอย่าง - คิดว่าฉันจะชิป
ฉันไม่ต้องการแม้แต่แฟล็กเป็นพิเศษ (แฟล็กเดียวที่นี่คือโหมดดีบักการสร้างตัวแปรที่ฉันตรวจสอบว่าเป็นเงื่อนไขของการเริ่มฟังก์ชั่นดาวน์สตรีif (!exists(debug.mode)) {...} else {print(variables)})
มlapply
คำสั่งการตรวจสอบสถานะด้านล่างสร้างเหมือนกับ:
if ("--debug" %in% args) debug.mode <- T
if ("-h" %in% args || "--help" %in% args)
โดยที่args
ตัวแปรอ่านจากอาร์กิวเมนต์บรรทัดคำสั่ง (เวกเตอร์อักขระเทียบเท่าc('--debug','--help')
เมื่อคุณให้สิ่งเหล่านี้เป็นตัวอย่าง)
มันสามารถใช้ซ้ำได้สำหรับการตั้งค่าสถานะอื่น ๆ และคุณหลีกเลี่ยงการทำซ้ำทั้งหมดและไม่มีไลบรารีจึงไม่มีการพึ่งพา:
args <- commandArgs(TRUE)
flag.details <- list(
"debug" = list(
def = "Print variables rather than executing function XYZ...",
flag = "--debug",
output = "debug.mode <- T"),
"help" = list(
def = "Display flag definitions",
flag = c("-h","--help"),
output = "cat(help.prompt)") )
flag.conditions <- lapply(flag.details, function(x) {
paste0(paste0('"',x$flag,'"'), sep = " %in% args", collapse = " || ")
})
flag.truth.table <- unlist(lapply(flag.conditions, function(x) {
if (eval(parse(text = x))) {
return(T)
} else return(F)
}))
help.prompts <- lapply(names(flag.truth.table), function(x){
# joins 2-space-separatated flags with a tab-space to the flag description
paste0(c(paste0(flag.details[x][[1]][['flag']], collapse=" "),
flag.details[x][[1]][['def']]), collapse="\t")
} )
help.prompt <- paste(c(unlist(help.prompts),''),collapse="\n\n")
# The following lines handle the flags, running the corresponding 'output' entry in flag.details for any supplied
flag.output <- unlist(lapply(names(flag.truth.table), function(x){
if (flag.truth.table[x]) return(flag.details[x][[1]][['output']])
}))
eval(parse(text = flag.output))
ทราบว่าในflag.details
ที่นี่คำสั่งจะถูกเก็บไว้เป็นสตริง, eval(parse(text = '...'))
การประเมินด้วยแล้ว เห็นได้ชัดว่า Optparse เป็นที่ต้องการสำหรับสคริปต์ที่จริงจัง แต่บางครั้งโค้ดฟังก์ชั่นการทำงานขั้นต่ำก็ดีเช่นกัน
ตัวอย่างผลลัพธ์:
$ Rscript check_mail.Rscript - ช่วยเหลือ
--debug ตัวแปรการพิมพ์มากกว่าการดำเนินการฟังก์ชั่น XYZ ...
-h - ช่วยแสดงนิยามธง