Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VVPPアンインストール時とディレクトリ見つからない時のエラーハンドリング追加 #1047

Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 35 additions & 18 deletions src/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -803,50 +803,67 @@ function openEngineDirectory(engineId: string) {

const engineDirectory = engineInfo.path;
if (engineDirectory == null) {
return;
throw new Error(`engineDirectory is null: engineId == ${engineId}`);
}

// Windows環境だとスラッシュ区切りのパスが動かない。
// path.resolveはWindowsだけバックスラッシュ区切りにしてくれるため、path.resolveを挟む。
shell.openPath(path.resolve(engineDirectory));
}

/**
* VVPPエンジンをインストールする。
*/
async function installVvppEngine(vvppPath: string) {
try {
await vvppManager.install(vvppPath);
return true;
} catch (e) {
dialog.showErrorBox(
"読み込みエラー",
`${vvppPath} を読み込めませんでした。`
"インストールエラー",
`${vvppPath} をインストールできませんでした。`
);
log.error(`Failed to load ${vvppPath}, ${e}`);
log.error(`Failed to install ${vvppPath}, ${e}`);
return false;
}
}

/**
* VVPPエンジンをアンインストールする。
* 関数を呼んだタイミングでアンインストール処理を途中まで行い、アプリ終了時に完遂する。
*/
async function uninstallVvppEngine(engineId: string) {
Comment on lines +831 to 835
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uninstallVvppEngineにドキュメントコメント書いてみました。

const engineInfos = fetchEngineInfos();
const engineInfo = engineInfos.find(
(engineInfo) => engineInfo.uuid === engineId
);
if (!engineInfo) {
throw new Error(`No such engineInfo registered: engineId == ${engineId}`);
}
try {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

installVvppEngine側はダイアログを出していたがuninstallVvppEngine側はダイアログを出しておらず、エラーが出ても何も表示されない状態になってたので合わせてみました

if (!engineInfo) {
throw new Error(`No such engineInfo registered: engineId == ${engineId}`);
}

if (engineInfo.type !== "vvpp") {
throw new Error(`engineInfo.type is not vvpp: engineId == ${engineId}`);
}
if (engineInfo.type !== "vvpp") {
throw new Error(`engineInfo.type is not vvpp: engineId == ${engineId}`);
}

const engineDirectory = engineInfo.path;
if (engineDirectory == null) {
throw new Error("engineDirectory == null");
}
const engineDirectory = engineInfo.path;
if (engineDirectory == null) {
throw new Error("engineDirectory == null");
}

// Windows環境だとエンジンを終了してから削除する必要がある。
// そのため、アプリの終了時に削除するようにする。
vvppManager.markWillDelete(engineId);
return true;
// Windows環境だとエンジンを終了してから削除する必要がある。
// そのため、アプリの終了時に削除するようにする。
vvppManager.markWillDelete(engineId);
return true;
} catch (e) {
const engineName = engineInfo?.name ?? engineId;
dialog.showErrorBox(
"アンインストールエラー",
`${engineName} をアンインストールできませんでした。`
);
log.error(`Failed to uninstall ${engineId}, ${e}`);
return false;
Hiroshiba marked this conversation as resolved.
Show resolved Hide resolved
}
}

// ディレクトリがエンジンとして正しいかどうかを判定する
Expand Down
14 changes: 8 additions & 6 deletions src/components/EngineManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,6 @@ export default defineComponent({
"addingEngine",
store.dispatch("INSTALL_VVPP_ENGINE", vvppFilePath.value)
);
uiLockedState.value = null;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

不要な処理だったのでついでに消去

if (success) {
requireRestart(
"エンジンを追加しました。反映には再起動が必要です。今すぐ再起動しますか?"
Expand Down Expand Up @@ -531,15 +530,18 @@ export default defineComponent({
);
break;
}
case "vvpp":
await lockUi(
case "vvpp": {
const success = await lockUi(
"deletingEngine",
store.dispatch("UNINSTALL_VVPP_ENGINE", selectedId.value)
);
requireRestart(
"エンジンの削除には再起動が必要です。今すぐ再起動しますか?"
);
if (success) {
requireRestart(
"エンジンの削除には再起動が必要です。今すぐ再起動しますか?"
);
}
break;
}
default:
throw new Error("assert engineInfos[selectedId.value].type");
}
Expand Down