Source Insight是Windows下最方便瀏覽代碼的工具。但是Source Insight是沒有Linux版本的。為了方便在Linux下瀏覽代碼並進行學習,可以利用Vim配合Cscope來打造Linux下的Source Insight。
Cscope是Vim適用的工具和外掛程式,通過Cscope可以方便地獲知某個函數的定義以及被哪些函數調用。
Cscope安裝
可以在http://cscope.sourceforge.net/下載源碼包,然後解壓,編譯安裝。
./configure
make
make install
產生Cscope資料庫
使用cscope前,必須為代碼產生一個cscope資料庫。假設當前代碼在/usr/src/linux目錄下,則運行下列命令。
cd /usr/src/linux
cscope –Rbq
然後會產生3個檔案:cscope.in.out,cscope.out,cscope.po.out。
用vim開啟代碼檔案,將剛才產生的cscope檔案匯入到vim中。
vim init/main.c
:cs add /usr/src/linux/cscope.out /usr/src/linux
也可以將下面語句添加到vim的設定檔.vimrc中。
if fileradable("cscope.out") cs add csope.outelseif $CSCOPE_DB != "" cs add $CSCOPE_DBendif
Cscope的功能
Cscope的功能通過它的子命令“find”來實現。
cs find c|d|e|g|f|i|s|t name
- s:尋找C代碼符號
- g:尋找本定義
- d:尋找本函數調用的函數
- c:尋找調用本函數的函數
- t:尋找本字串
- e:尋找本egrep模式
- f:尋找本檔案
- i:尋找包含本檔案的檔案
可以在.vimrc中添加下面的快速鍵,免得每次都要輸入一長串命令。
nmap <C-@>s :cs find s <C-R>=expand("<cword>")<CR><CR>nmap <C-@>g :cs find g <C-R>=expand("<cword>")<CR><CR>nmap <C-@>c :cs find c <C-R>=expand("<cword>")<CR><CR>nmap <C-@>t :cs find t <C-R>=expand("<cword>")<CR><CR>nmap <C-@>e :cs find e <C-R>=expand("<cword>")<CR><CR>nmap <C-@>f :cs find f <C-R>=expand("<cword>")<CR><CR>nmap <C-@>i :cs find i ^<C-R>=expand("<cword>")<CR>$<CR>nmap <C-@>d :cs find d <C-R>=expand("<cword>")<CR><CR>
使用時,將游標停留在要尋找的對象上,按下<C-@>g,即先按“Ctrl+@”,然後很快再按“g”,將會尋找該對象的定義。