IntelliJ IDEAでD言語を使ってみた


はじめに

D言語アドベントカレンダー 2020 19日目の記事です。

IntelliJ IDEAは、私にとって、なじみのあるツールです。
D言語の開発環境を構築することもできるので、紹介したいと思います。

IntelliJ IDEAとは

IntelliJ IDEA(以下、IntelliJ)とは、JetBrains社が開発した統合開発環境です。
gitをコマンドで操作するのが不慣れな私は、IntelliJを通して、gitを使ってたりします。

IntelliJのインストール手順(Windows版)

インストール手順は、D言語を使うかどうかに関わらず、汎用的な手順となります。
有料版のUltimateと無料版のコミュニティがあります。まずはコミュニティを試してみてはいかがでしょうか。
IntelliJのダウンロード先は、こちらです。

(1)ダウンロードしたEXEファイルを実行します。「Next」を押します。

(2)新規インストールの方は(5)へ進んでください。古いバージョンをインストールされている方は、アンインストールするかどうかを選んでください。デフォルトで選択されているので、そのまま「Next」で進みます。

(3)削除したいものがあれば選んで「Uninstall」を押します。デフォルトは選択されていないので、そのまま進みます。

(4)処理終了後、「Close」を押します。

(5)インストール先を決めて、「Next」を押します。

(6)ショートカットや関連付けが必要な方は選んで、「Next」を押します。

(7)「Install」を押します。

(8)「Finish」を押します。

IntelliJ Pluginインストール手順

次に、D言語のプラグインをインストールします。

(9)IntelliJを起動します。古いバージョンのD言語プラグインをインストールされている方は、画面のようなエラーが出ますが、一旦無視して先に進みます。新規インストールの方は、エラーは出ません。

(10)(9)の画面下にある「Configure」を押すとメニューが現れます。「Plugins」を選択します。

(11)日本語対応したい場合、検索欄に「japanese」と入力すると「Japanese Language Pack EAP」が表示されるので、選択して「Install」を押してください。この手順ではインストールしません。

(12)D言語対応プラグインを初めてインストールする場合、検索欄に「d language」と入力するとプラグインが表示されますので、選択して「Install」をを押してください。

(13)古いD言語対応プラグインをインストール済みの場合、「Installed」タブを押すとインストール済みのプラグインが表示されます。選んで「Update」を押します。

(14)インストールまたはアップデートが完了したら、「Restart IDE」を押します。

(15)「Restart」を押します。

(16)(9)の画面のようにプラグインのエラーが出ていなければ、インストール完了です。

(17)「Configure」メニューの「Plugins」を選択すると、バージョン1.25がインストールされていることがわかります。

D言語のツール設定

(18)(16)の初期画面で「Configure」を押します。メニューで「Settings」を選択します。

(19)「Languages & Frameworks」「D Tools」メニューで各ツールの保存先を指定します。私の環境での設定例を紹介します。各ツールはあらかじめ用意する必要があります。D言語ツールの実行モジュール作成で各ツールの作成方法を紹介します。





IntelliJでのプロジェクト作成

D言語のプロジェクトは「D Application with DUB」と「D Application」が選択できます。それぞれについて、手順を紹介します。

「D Application with DUB」編

(20)(16)の初期画面で「New Project」を選択します。「New Project」画面で「D Application with DUB」を選択し、「Next」を押します。

(21)dubがインストールされているフォルダを指定し、「Next」を押します。pathが通っていれば自動入力されます。

(22)「Next」を押します。

(23)「Project Name」「Project location」に入力して、「Finish」を押します。

(24)app.dが自動生成されます。この手順では、app.dをそのまま使います。

(25)コンパイル、実行方法です。「Run」メニューから「Run...」を選択します。

(26)「Run DUB」を選択します。

(27)コンパイルの後で、モジュールが実行されます。下の「4:Run」画面でwritelnの出力内容が正しく表示されています。

「D Application」編

通常「D Application with DUB」でプロジェクトを作成すればよいですが、「D Application」プロジェクトの作成例も紹介します。
(28)(16)の初期画面で「New Project」を選択します。D言語のプロジェクトは「D Application」を選択して、「Next」を押します。

(29)「Project Name」「Project location」に入力して、「Finish」を押します。

(30)「Create」を押します。

(31)左の「1:Project」タブを押した後、「source」を右クリックするとメニューが出ます。「New」「D New File」を選択します。

(32)「Module」を選択し、モジュール名を入力します。

(33)前の画面で「hello」と入力するとhello.dが作成されます。

(34)ソースコードを編集します。

hello.d
module hello;
import std;
void main()
{
    writeln("hello D!");
}

(35)コンパイル方法です。「Run」メニューから「Run...」を選択します。

(36)「Compile with DMD」を選択します。

(37)コンパイルが成功したとのメッセージが出力されます。

(38)実行方法です。(35)と同じように「Run」メニューから「Run...」を選択し、「Run D App」を選択します。

(39)「4:Run」タブに実行結果が表示されます。

D言語ツールの実行モジュール作成

手順(19)の「D Tools」で設定するD言語ツールの作成方法について、紹介します。

開発環境

  • OS : Windows 10 64ビット版 (バージョン 1909)
  • D言語コンパイラ : DMD v2.094.2

D言語コンパイラ(DMD)のインストール

事前にDMDをインストールします。
インストール手順は、こちらが参考になります。

DMDをインストールするとDUBはインストール済みとなるため、その他のツールをDUBコマンドで作成します。
gdbGNU Debuggerです。ソースコードを入手して実行モジュールを作成するか、ビルド済みファイルを入手するか(例えば、ここから)になります。

実行コマンド抜粋
dub build dscanner --build=release --arch=x86_64
dub build dcd --build=release --config=client --arch=x86_64
dub build dcd --build=release --config=server --arch=x86_64
dub build dfmt --build=release --arch=x86_64
dub build dfix --build=release --arch=x86_64

以下は、私の開発環境のコマンドプロンプトでの実行例です。
それぞれの実行ファイルが、C:\Users\ユーザ名\AppData\Local\dub\packages\フォルダ以下に作成されます。
手順(19)では、作成された実行ファイルをD:\Dev\Bin\Packagesフォルダに移動させています。(移動は必須ではありません)

コマンドプロンプトでの実行例
D:\Dev> dub build dscanner --build=release --arch=x86_64
Package 'dscanner' was not found locally but is available online:
---
Description: Swiss-army knife for D source code
Version: 0.11.0
---
Do you want to fetch 'dscanner' now? [Y/n]: Y
Fetching dscanner 0.11.0...
Building package dscanner in C:\Users\devmynote\AppData\Local\dub\packages\dscanner-0.11.0\dscanner\
Fetching emsi_containers 0.8.0 (getting selected version)...
Fetching dsymbol 0.11.3 (getting selected version)...
Fetching libddoc 0.7.4 (getting selected version)...
Fetching libdparse 0.17.0 (getting selected version)...
Fetching inifiled 1.3.3 (getting selected version)...
Invalid source/import path: C:\Users\devmynote\AppData\Local\dub\packages\dscanner-0.11.0\dscanner\bin
Running pre-generate commands for dscanner...
Invalid source/import path: C:\Users\devmynote\AppData\Local\dub\packages\dscanner-0.11.0\dscanner\bin
Performing "release" build using D:\Dev\dmd2\windows\bin\dmd.exe for x86_64.
stdx-allocator 2.77.5: target for configuration "library" is up to date.
emsi_containers 0.8.0: building configuration "library"...
libdparse 0.17.0: building configuration "library"...
dsymbol 0.11.3: building configuration "library"...
inifiled 1.3.3: building configuration "library-quiet"...
libddoc 0.7.4: building configuration "lib"...
dscanner 0.11.0: building configuration "application"...
Linking...

D:\Dev> dub build dcd --build=release --config=client --arch=x86_64
Package 'dcd' was not found locally but is available online:
---
Description: The D Completion Daemon is an auto-complete program for the D programming language
Version: 0.13.1
---
Do you want to fetch 'dcd' now? [Y/n]: Y
Fetching dcd 0.13.1...
Building package dcd in C:\Users\devmynote\AppData\Local\dub\packages\dcd-0.13.1\dcd\
Fetching msgpack-d 1.0.1 (getting selected version)...
Fetching libdparse 0.15.4 (getting selected version)...
Running pre-generate commands for dcd:common...
Performing "release" build using D:\Dev\dmd2\windows\bin\dmd.exe for x86_64.
dcd:common 0.13.1: building configuration "library"...
stdx-allocator 2.77.5: target for configuration "library" is up to date.
emsi_containers 0.8.0: building configuration "library"...
libdparse 0.15.4: building configuration "library"...
dsymbol 0.11.3: building configuration "library"...
dcd 0.13.1: building configuration "client"...
Linking...

D:\Dev> dub build dcd --build=release --config=server --arch=x86_64
Building package dcd in C:\Users\devmynote\AppData\Local\dub\packages\dcd-0.13.1\dcd\
Running pre-generate commands for dcd:common...
Performing "release" build using D:\Dev\dmd2\windows\bin\dmd.exe for x86_64.
msgpack-d 1.0.1: target for configuration "default" is up to date.
dcd:common 0.13.1: building configuration "library"...
stdx-allocator 2.77.5: target for configuration "library" is up to date.
emsi_containers 0.8.0: target for configuration "library" is up to date.
libdparse 0.15.4: target for configuration "library" is up to date.
dsymbol 0.11.3: target for configuration "library" is up to date.
dcd 0.13.1: building configuration "server"...
Linking...

D:\Dev> dub build dfmt --build=release --arch=x86_64
Package 'dfmt' was not found locally but is available online:
---
Description: Dfmt is a formatter for D source code
Version: 0.13.2
---
Do you want to fetch 'dfmt' now? [Y/n]: Y
Fetching dfmt 0.13.2...
Building package dfmt in C:\Users\devmynote\AppData\Local\dub\packages\dfmt-0.13.2\dfmt\
Invalid source/import path: C:\Users\devmynote\AppData\Local\dub\packages\dfmt-0.13.2\dfmt\bin
Running pre-generate commands for dfmt...
Invalid source/import path: C:\Users\devmynote\AppData\Local\dub\packages\dfmt-0.13.2\dfmt\bin
Performing "release" build using D:\Dev\dmd2\windows\bin\dmd.exe for x86_64.
stdx-allocator 2.77.5: building configuration "library"...
libdparse 0.15.4: building configuration "library"...
dfmt 0.13.2: building configuration "application"...
Linking...

D:\Dev> dub build dfix --build=release --arch=x86_64
Package 'dfix' was not found locally but is available online:
---
Description: Tool for automatically upgrading D source code
Version: 0.3.5
---
Do you want to fetch 'dfix' now? [Y/n]: Y
Fetching dfix 0.3.5...
Building package dfix in C:\Users\devmynote\AppData\Local\dub\packages\dfix-0.3.5\dfix\
Performing "release" build using D:\Dev\dmd2\windows\bin\dmd.exe for x86_64.
stdx-allocator 2.77.5: building configuration "library"...
libdparse 0.8.8: building configuration "library"...
dfix 0.3.5: building configuration "application"...
Linking...

参考情報

IntelliJ IDEA
IntelliJ IDEAダウンロード
IntelliJ IDEA D Language plugin
IntelliJ IDEA:日本語化