ctags로부터 C++ 클래스 계승도 얻어내기

체스맨의 이미지

제목 그대로 입니다.
이런 걸 해주는 툴이 있나요?
vi 자체에 지원되는 지 모르겠네요.
되도록 vi 와 연동 돼서,
hierarchy 에서 소스로 찾아들어가는 기능 등이 되면 편할 것 같은데요.

고도리의 이미지

정확하게 ctags쓰는 방법을 얘기하는지 아니면 다른 툴을 원하는지
몰라서 제가 쓰는 ctags명령어를 올려봅니다.

옛날에 freeamp분석할 때 C++에 대해서도 해봤는데 그런대로 괜찮습니다.
가끔가다가 딴데로 가기도 하지만 이만하면 쓸만하죠...

ctags -R -a --lang=C --lang=C++ $DIR/*

보통 저는 스크립트를 만들어서 만들어진 tags파일을 모든 sub-dir로
복사해서 몽땅 점프를 할수 있도록 하는데 참조하세요...

제가 쓰는 방법이 틀린건지도 모르지만 저는 잘 쓰고 있습니다.

#!/bin/bash
# 이 파일은 자동으로 tag파일을 만들어주는 놈입니다.
# 당근 서브디렉토리도 되죵
# 만일 리눅스이면 변수, 스트럭쳐, 유니옹, 함수, define, typedef, enum
# 등등이 다 됩니다.

DIR=`pwd`
export DIR

echo "============================"
echo "deleting exist all tags file"
echo "============================"
find $DIR -name tags -exec rm -f {} \;

echo "=========================="
echo "= making tags file in $DIR"
echo "=========================="
ctags -R -a --lang=C --lang=C++ $DIR/*

mv $DIR/tags /tmp

echo "==================================="
echo "copying tags file to subdirectories"
echo "==================================="
find $DIR -type d -exec cp /tmp/tags {} \;

rm -f /tmp/tags

서명.....음, 서명이라...

아싸!!! Three Go!

체스맨의 이미지

질문이 약간 모호한 면이 있었네요.
일단, ctags 소스포지 홈페이지에, 사용법은 어느 정도 잘
나와 있는 것 같아서, FAQ 보고 적절한 소스로 점프하는 건
되고 있는데요.

전체 클래스 hierarchy tree 를 보여줬으면 하는 생각이거든요.
hierarchy 의 노드마다 멤버들을 나열할 수도
있고, 점프할 수도 있구요. visual c++ 로 치면, class wizard 가
가지고 있는 기능 정도가 될 것 같네요.

검색을 해보면 hierarchy 를 그려주는 프로그램이 있긴 한데,
아직 써보진 않았지만 ctags 나 vi 와 연동 ( 예를 들어, 클래스
hierarchy 를 얻기 위해 tags 파일을 같이 사용한다든가. )
이 되는지 잘 모르겠거든요.

Orion Project : http://orionids.org

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.