Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
バグ
carton.makeTemporaryFile
にバグがありました。prefixを使っていない
引数に渡された prefix が使われていません。
suffixを使っていない(使えない)
引数に渡された suffix が使われていません。
そもそも下請けの
mkstemp
はsuffixが使えません。エラーメッセージが変
ファイルを作る関数なのに文言がディレクトリになっています。
改善
修正のついでに以下の改善をします。
デフォルトのディレクトリ
ディレクトリを省略可能にし、デフォルトで
NSTemporaryDirectory
を使うようにします。用途から考えると妥当で便利だと思います。
下層のエラーを読む
errno
を参照してエラー文言に添えます。クラッシュさせずに例外を投げる
失敗してもクラッシュではなく例外を投げます。
将来の目的
carton, プラグイン, フロントエンドで様々なユーティリティが多重に実装されています。
これを統合したいと思っていて、
その前準備としてこの関数の仕様を整えました。