15
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gitリポジトリ向けの高速ctagsラッパー:ptags

Last updated at Posted at 2018-03-15

はじめに

gitリポジトリ内のソースコードを高速にctagsするツールptagsを作りました。
複数のctagsを並列実行するので普通にctags -Rするより最大5倍程度速いです。
またデフォルトで.gitginoreを考慮するので、excludeオプションで除外する必要もありません。

このツールはRustで作成しました。簡単なソースコードの解説も書きましたので興味のある方は以下の記事もどうぞ。
gitリポジトリ向けの高速ctagsラッパー:ptags(ソースコード解説)

インストール

リリースページからダウンロードしてPATHの通ったところに展開してください。
あるいはcargoがインストール済みなら以下でもOKです。

> cargo install ptags

また、ツール内部でgitctagsを呼ぶのでこれらも必要です。
動作確認したバージョンは以下の通りです。
git-lfs--exclude-lfsオプションを使うときだけ必要です)

Command Version
ctags Universal Ctags 0.0.0(f9e6e3c1) / Exuberant Ctags 5.8
git git version 2.14.2
git-lfs git-lfs/2.3.3

使い方

デフォルトでctags -Rと同じ動作(カレントディレクトリから再帰検索)です。
gitリポジトリ外では動作しませんが、その代わり--exclude-lfs--include-untrackedなどgitリポジトリ上の扱いに応じてinclude/excludeを切り替えることができます。

また、以下のようにctagsのオプションも渡すことができます。

> ptags -c --links=no -c --languages=Rust

オプション一覧は以下の通りです。

ptags 0.1.6-pre
dalance@gmail.com
A parallel universal-ctags wrapper for git repository

USAGE:
    ptags [FLAGS] [OPTIONS] [--] [DIR]

FLAGS:
        --exclude-lfs          Exclude git-lfs tracked files
    -h, --help                 Prints help information
        --include-ignored      Include ignored files
        --include-submodule    Include submodule files
        --include-untracked    Include untracked files
    -s, --stat                 Show statistics
        --unsorted             Disable tags sort
        --validate-utf8        Validate UTF8 sequence of tag file
    -V, --version              Prints version information
    -v, --verbose              Verbose mode

OPTIONS:
        --bin-ctags <bin_ctags>           Path to ctags binary [default: ctags]
        --bin-git <bin_git>               Path to git binary [default: git]
    -e, --exclude <exclude>...            Glob pattern of exclude file ( ex. --exclude='*.rs' )
    -c, --opt-ctags <opt_ctags>...        Options passed to ctags
    -g, --opt-git <opt_git>...            Options passed to git
        --opt-git-lfs <opt_git_lfs>...    Options passed to git-lfs
    -f, --file <output>                   Output filename [default: tags]
    -t, --thread <thread>                 Number of threads [default: 8]

ARGS:
    <DIR>    Search directory [default: .]

ベンチマーク

githubから適当なリポジトリを取ってきて比較しました。ディスクI/Oの影響を受けないよう、事前に一度実行してリポジトリの中身がディスクキャッシュに載った状態から測定開始しています。結果は10回の平均値です。

測定環境

  • CPU: Ryzen Threadripper 1950X
  • MEM: 128GB
  • OS : CentOS 7.4.1708

データ

Name Repository Revision Files Size[GB]
source0 https://github.com/neovim/neovim f5b0f5e17 2370 0.1
source1 https://github.com/llvm-mirror/llvm ddf9edb4020 29670 1.2
source2 https://github.com/torvalds/linux 071e31e254e0 52998 2.2
source3 https://github.com/chromium/chromium d79c68510b7e 293205 13

測定結果

実行時間の比較はこちらになります。

ctagsを1にしたときの性能比較(大きいほどよい)はこちら。最大でctagsから5倍程度高速化しています。

15
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?