在Nim中,我可以编写以下代码来导入外部模块:
import myFancyPantsModule
...
# And here I'd use the fancyPants proc
只要我有该模块,它就可以正常工作,但是对于可能下载代码但没有安装模块的人来说,编译将失败,并显示一条用户友好的消息:
$ nim c fancyProgram.nim
fancyProgram.nim(1, 7) Error: cannot open 'myFancyPantsModule'
有什么方法可以环绕它,import
以便我可以像异常一样捕获它并执行类似于when
语句的替代代码分支?我希望找到一些importable
类似宏或我可以使用的东西:
when importable(myFancyPantsModule):
# And here I'd use the fancyPants proc
else:
quit("Oh, sorry, go to https://github.com/nim-lang/nimble and install " &
" the myFancyPantsModule using the nimble package manager")
事实上,我想让一些模块成为可选模块,而不是一个简单的错误消息,这样编译仍然可以继续进行,也许功能会减少。这可能吗?
解决方案编辑:根据这里的答案是我的版本如何解决这个问题,首先你需要一个moduleChecker
具有以下来源的二进制文件:
import os, osproc
let tmpFile = getTempDir() / "dynamicModuleChecker.nim"
proc checkModule(module: string) =
except:
echo "Cannot write ", tmpFile, " to check the availability of modules"
quit(1)
writeFile(tmpFile, "import " & module & "\n")
finally: removeFile(tmpFile)
except:
echo("Cannot run \"nimrod check\" to check the availability of modules")
quit(1)
if execCmdEx("nim check " & tmpFile).exitCode != 0:
echo("Cannot import module " & module & ".")
quit(1)
else:
echo "OK"
if ParamCount() < 1:
quit("Pass as first parameter the module to check")
else:
checkModule(ParamStr(1))
然后,让这个命令可用,可以使用以下宏:
import macros
macro safeImport(module, message: string): stmt =
if "OK" == gorge("./moduleChecker " & module.strVal):
result = newNimNode(nnkStmtList).add(
newNimNode(nnkImportStmt).add(
newIdentNode(module.strVal)))
else:
error("\nModule " & module.strVal &
" not available.\n" & message.strVal)
safeImport("genieos",
"Please install \"http://gradha.github.io/genieos/\"")
不幸的是,必须生成一个单独的进程,不仅用于外部编译,而且还需要另一个进程来生成临时文件以进行检查,因为staticWrite
当前版本中没有在编译时生成文件。