如何自动生成eclipse-indigo方法块注释?

时间:2012-04-30 07:05:24

标签: c++ comments eclipse-indigo

我想像这样使用eclipse-Indigo生成块注释。我是C ++程序员。

/**
 * 
 * @param bar
 * @return
 */
int foo(int bar);

我怎么能这样做。

1 个答案:

答案 0 :(得分:0)

如果您的输入非常静态,您可以编写一个可以工作的简化词法分析器,需要简单的字符串挖掘。 string中有很多很好的编辑功能,里面有.substr()和.find()。所有你需要做的就是弄清楚perens在哪里。你知道你可以选择将它作为一个字符串流处理,这使得这个FAR更容易(不要忘记使用std :: skipws来跳过空格。

http://www.cplusplus.com/reference/string/string/substr/

http://www.cplusplus.com/reference/string/string/find/

#include <vector>
#include <string>

typedef STRUCT arg_s {
string sVarArgDataType, sVarArg;
} arg_s ARG;
ARG a;
vector<ARG> va;
char line[65000];

filein.getline(line, 65000);
line[65000-1]='\0'; //force null termination if it hasn't happened
get line and store in string sline0
size_t firstSpacePos=sline.find(' ');
size_t nextSpacePos = sline.find(' ',firstSpacePos+1);
size_t prevCommaPos = string::npos;
size_t nextCommaPos = sline.find(',');
size_t openPerenPos=sline.find('(');
size_t closePerenPos=sline.find(");");
string sReturnDataType, sFuncName;
if (
    string::npos==firstSpacePos||
    string::npos==semicolonPos||
    string::npos==openPerenPos||
    string::npos==closePerenPos) {
    return false; //failure
}
while (string::npos != nextSpacePos) {
    if (string::npos != nextCommaPos) {
        //found another comma, a next argument. use next comma as a string terminator and prevCommaPos as an arg beginning.
        //assume all keywords are globs of text
        a.sVarArgDataType=sline.substr(prevCommaPos+1,nextSpacePos-(prevCommaPos+1));
        a.sVarArg=sline.substr(nextSpacePos+1,nextCommaPos-(nextSpacePos+1));
    } else {
        //didn't find another comma. use ) as a string terminator and prevCommaPos as an arg beginning.
        //assume all keywords are globs of text
        a.sVarArgDataType=sline.substr(prevCommaPos+1,nextSpacePos-(prevCommaPos+1));
        a.sVarArg=sline.substr(nextSpacePos+1,closePerenPos-(nextSpacePos+1));
    }
    va.push_back(a); //add structure to list
    //move indices to next argument
    nextCommaPos = sline.find(',', secondSpacePos+1);
    nextSpacePos = sline.find(' ', secondSpacePos+1);
}
int i;

fileout<<"/**
 * 
";
for (i=0; i < va.size(); i++) {
    fileout<<" * @param "<<va[i].sVarArg;
}
fileout<<"
 * @return
 */
"<<sReturnDataType<<" "<<sFuncName<<'(';
for (i=0; i < va.size(); i++) {
    fileout<<va[i].sArgDataType<<" "<<va[i].sVarArg;
    if (i != va.size()-1) {
        fileout<<", "; //don;t show a comma-space for the last item
    }
}

fileout<<");"<<std::endl;

这将处理任意数量的参数EXCEPT ...变量参数类型。但是你可以输入自己的检测代码以及在...和2关键字参数类型之间切换的if语句。这里我只支持我的struct中的2个关键字。你可以通过使用一段时间在while循环中搜索下一个,逗号或右边peren之前的所有空格来支持更多,将你可变数量的字符串添加到你要替换的结构内的vector<string> - 不,只需要vector<vector<string> >。或者,只需一个向量,并在每个函数完成后执行va.clear()

我刚刚注意到了eclipse标签。我不太了解日食。我甚至无法让它发挥作用。一些程序。