Search in sources :

Example 6 with MethodDVO

use of com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO in project Gargoyle by callakrsos.

the class AbstractJavaProgramSpecFile method toMethodDVO.

/**
	 * 타입 + {static} + 메소드명 +( 파라미터 ) 형식을 을 갖는 메소드 문자열로부터 정규화된 MethodDVO를 반환받는다.
	 *
	 * @param fullMethodName
	 * @return
	 * @throws ProgramSpecSourceException
	 */
public static MethodDVO toMethodDVO(final String fullMethodName) throws ProgramSpecSourceException {
    String tempName = fullMethodName;
    MethodDVO methodDVO = new MethodDVO();
    // 접근지정자 추출.
    String accessModifiers = "";
    if (tempName.startsWith("public")) {
        accessModifiers = "public";
        tempName = tempName.substring(tempName.indexOf(accessModifiers) + accessModifiers.length(), tempName.length()).trim();
    } else if (tempName.startsWith("private")) {
        accessModifiers = "private";
        tempName = tempName.substring(tempName.indexOf(accessModifiers) + accessModifiers.length(), tempName.length()).trim();
    } else if (tempName.startsWith("protected")) {
        accessModifiers = "protected";
        tempName = tempName.substring(tempName.indexOf(accessModifiers) + accessModifiers.length(), tempName.length()).trim();
    } else if (tempName.startsWith("default")) {
        accessModifiers = "default";
        tempName = tempName.substring(tempName.indexOf(accessModifiers) + accessModifiers.length(), tempName.length()).trim();
    } else {
        accessModifiers = "default";
    }
    // 접근지정자 저장.
    methodDVO.setVisivility(accessModifiers);
    // static 존재유무 확인. static의 존재유무에 따라 instance인지 static인지 구분.
    int static_indexOf = tempName.indexOf("static ");
    if (static_indexOf != -1) {
        tempName = tempName.substring(static_indexOf + "static ".length(), tempName.length()).trim();
        methodDVO.setLevel("Static \nMethod");
    } else {
        methodDVO.setLevel("Instance \nMethod");
    }
    // 예외처리 존재하면 지움.
    int throw_indexOf = tempName.indexOf(" throws ");
    if (throw_indexOf != -1) {
        tempName = tempName.substring(0, throw_indexOf).trim();
    }
    // 파라미터부분 반환
    String parameterMatched = ValueUtil.regexMatch("\\([\\w\\W]{0,}\\)", tempName).trim();
    if (ValueUtil.isEmpty(parameterMatched)) {
        throw new ProgramSpecSourceException("[버그]파라미터 블록 확인바람.");
    }
    // 파라미터값 추출.
    int startParam_indexOf = parameterMatched.indexOf("(");
    int endParam_indexOf = parameterMatched.indexOf(")");
    String parameterContent = parameterMatched.substring(startParam_indexOf + 1, endParam_indexOf);
    System.out.println(parameterContent);
    List<MethodParameterDVO> convertParameterDVO = convertParameterDVO(parameterContent);
    System.out.println(convertParameterDVO);
    // Simple MethodName 추출.
    int indexOf = tempName.indexOf(parameterMatched);
    // [시작] 2015.3.5 파라미터에 [] 문자가 존재할 경우 정규식으로 인식하는 문제때문에 교체.
    // tempName = tempName.replaceAll(parameterMatched, "").trim();
    tempName = tempName.substring(0, indexOf).trim();
    // [끝] 2015.3.5 파라미터에 [] 문자가 존재할 경우 정규식으로 인식하는 문제때문에 교체.
    String[] args = tempName.split("\\s+");
    String simpleMethodName = args[args.length - 1];
    // 리턴타입 추출.
    String returnType = "";
    for (int i = 0; i < args.length - 1; i++) {
        returnType += args[i] + " ";
    }
    if (returnType.isEmpty()) {
        returnType = "void";
    }
    methodDVO.setReturnType(returnType);
    methodDVO.setMethodName(simpleMethodName);
    methodDVO.setMethodParameterDVOList(convertParameterDVO);
    return methodDVO;
}
Also used : MethodParameterDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodParameterDVO) ProgramSpecSourceException(com.kyj.fx.voeditor.visual.exceptions.ProgramSpecSourceException) MethodDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO)

Example 7 with MethodDVO

use of com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO in project Gargoyle by callakrsos.

the class ProgramSpecWordTemplate method body.

/**
	 * 메소드에 대한 자세한 항목 기술.
	 * 
	 * @param msWord
	 * @param svo
	 */
public void body(ProgramSpecSVO svo) {
    addBreak();
    // [START] #### ■ 프로그램 구성별 상세 사양서 작성(설계자) ####
    addText("■ 프로그램 구성별 상세 사양서 작성(설계자) ", MSWord.H4, true, false, false);
    addBreak();
    addText("0. Method 리스트와 Method 속성 ", true, false, false);
    // 전체 메소드에 대한 요약 정보 기술.
    List<List<String>> methodList = new ArrayList<List<String>>();
    // 0 row 헤더부분 기술
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("No ");
        arr.add("Method ");
        arr.add("Level");
        arr.add("Visivility");
        arr.add("Description");
        methodList.add(arr);
    }
    // 1,2,3,4 row 공백 기술.
    List<MethodDVO> methodDVOList = svo.getMethodDVOList();
    if (methodDVOList.size() == 0) {
        for (int seq = 0; seq < 6; seq++) {
            ArrayList<String> arr = new ArrayList<String>();
            arr.add(seq + 1 + " ");
            arr.add("");
            arr.add("");
            arr.add("");
            arr.add("");
            methodList.add(arr);
        }
    } else {
        for (int seq = 0; seq < methodDVOList.size(); seq++) {
            MethodDVO dvo = methodDVOList.get(seq);
            ArrayList<String> arr = new ArrayList<String>();
            arr.add(seq + 1 + " ");
            arr.add(dvo.getMethodName());
            arr.add(dvo.getLevel());
            arr.add(dvo.getVisivility());
            arr.add(dvo.getDescription());
            methodList.add(arr);
        }
    }
    addToTable(methodList);
    methodDetail(svo.getMethodDVOList());
    // [END] #### ■ 프로그램 구성별 상세 사양서 작성(설계자) ####
    // [START] #### ■ 프로그램 구성별 상세 사양서 작성(개발자) → 프로그램 개발/테스트 완료 후 기술 ####
    addText("■ 프로그램 구성별 상세 사양서 작성(개발자) → 프로그램 개발/테스트 완료 후 기술", MSWord.H4, true, false, false);
    addText(" N/A ");
    // [END] #### ■ 프로그램 구성별 상세 사양서 작성(개발자) → 프로그램 개발/테스트 완료 후 기술 ####
    addNewPage();
}
Also used : ArrayList(java.util.ArrayList) ArrayList(java.util.ArrayList) List(java.util.List) MethodDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO)

Example 8 with MethodDVO

use of com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO in project Gargoyle by callakrsos.

the class ProgramSpecWordTemplate method headerPage3.

/**
	 * 
	 * 전반적인 메소드에 대한 정보를 기록. 본문 요약 정보
	 * 
	 * @param msWord
	 * @param svo
	 * @throws ParseException
	 */
public void headerPage3(ProgramSpecSVO svo) {
    // [START] #### 선언부 테이블에 전체적인 내용 기술 ####
    List<List<String>> list = new ArrayList<List<String>>();
    // 0 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("프로그램 사양서");
        list.add(arr);
    }
    // 1 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("a.시스템 명");
        arr.add(" - ");
        arr.add("b.시스템");
        arr.add(" - ");
        arr.add("c.서브시스템");
        arr.add(getSubSystemName(svo.getUserSourceMetaDVO().getProjectName(), svo.getUserSourceMetaDVO().getPackages()));
        list.add(arr);
    }
    // 2 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("d.프로그램ID");
        arr.add(svo.getUserSourceMetaDVO().getSimpleFileName());
        arr.add("e.작성자");
        arr.add(svo.getUserSourceMetaDVO().getUserPcName());
        arr.add("f.작성일");
        arr.add(DateUtil.getCurrentDateString("yyyy-MM-dd"));
        list.add(arr);
    }
    // 3 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("g.프로그램명");
        // 프로그램명정의
        String programName = svo.getUserSourceMetaDVO().getProgramName();
        arr.add(programName == null ? "" : programName);
        list.add(arr);
    }
    // 4 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("h.개발 유형");
        arr.add(svo.getFile().getFileType().toString());
        arr.add("i.프로그램 유형");
        arr.add(" - ");
        list.add(arr);
    }
    // 5 row
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("j. 프로그램 개요");
        arr.add(" - ");
        list.add(arr);
    }
    XWPFTable table = addToTable(list);
    mergeCellHorizon(table, 0, 0, 6);
    mergeCellHorizon(table, 3, 1, 6);
    mergeCellHorizon(table, 4, 1, 2);
    mergeCellHorizon(table, 4, 3, 6);
    mergeCellHorizon(table, 5, 1, 6);
    // [END] #### 선언부 테이블에 전체적인 내용 기술 ####
    // 공백
    addBreak();
    addText("■. 화면/Report/비즈니스 로직 설계", MSWord.H4, true, false, false);
    addBreak();
    addText("■ Object  리스트", true, false, false);
    List<List<String>> objList = new ArrayList<List<String>>();
    // 0 row 테이블 헤더.
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("순번 ");
        arr.add("Object ID ");
        arr.add("주요 기능 ");
        arr.add("신규/변경 ");
        objList.add(arr);
    }
    // [START] #### 데이터부 ####
    List<MethodDVO> methodDVOList = svo.getMethodDVOList();
    for (int i = 0; i < methodDVOList.size(); i++) {
        MethodDVO methodDVO = methodDVOList.get(i);
        if (methodDVO == null || methodDVO.getMethodName() == null) {
            continue;
        }
        ArrayList<String> arr = new ArrayList<String>();
        // seq
        arr.add(String.valueOf((i + 1)));
        // 메소드명
        arr.add(methodDVO.getMethodName());
        // 주요기능-- Main펑션이 빈경우 Description으로 설정됨.
        arr.add(ValueUtil.isEmpty(methodDVO.getMainFunction()) ? methodDVO.getDescription() : methodDVO.getMainFunction());
        // 신규 or 변경
        arr.add(methodDVO.getIsNewOrChg());
        objList.add(arr);
    }
    // [END] #### 데이터부 ####
    addToTable(objList);
    addBreak();
    // [START] #### Object 선언부(패키지) ####
    addText("■ Object  선언", true, false, false);
    ImportsDVO importsDVO = svo.getImportsDVO();
    if (importsDVO != null) {
        List<String> imports = importsDVO.getImports();
        doNotEmptyTextureScope(imports, new ITextureBlock() {

            @Override
            public void doScope(String text) {
                addText(text);
            }

            @Override
            public void emptyThen() {
                addText("N/A");
            }
        });
    } else {
        addText("디폴트 (N/A)");
    }
    // [END] #### Object 선언부(패키지) ####
    addBreak();
    // [START] #### ObjectID (Object 리스트에 기술된 Object ID와 일치하게 기술함) ####
    addText("■ Object ID (Object 리스트에 기술된 Object ID와 일치하게 기술함) ", true, false, false);
    for (int i = 0; i < methodDVOList.size(); i++) {
        MethodDVO methodDVO = methodDVOList.get(i);
        if (methodDVO == null || methodDVO.getMethodName() == null) {
            continue;
        }
        String visivility = methodDVO.getVisivility();
        String methodName = methodDVO.getMethodName();
        String returnType = methodDVO.getReturnType();
        String parameters = methodDVO.getParameters();
        addText(new StringBuffer().append((i + 1)).append(". ").append(visivility).append(" ").append(returnType).append(" ").append(methodName).append(" ").append(parameters).toString());
    }
    // [END] #### (Object 리스트에 기술된 Object ID와 일치하게 기술함) ####
    addBreak();
    // [START] #### Table 리스트(프로그램에서 사용되는 Table을 모두 기술) ####
    addText("  ○ Table 리스트(프로그램에서 사용되는 Table을 모두 기술)", true, false, false);
    List<List<String>> tableList = new ArrayList<List<String>>();
    // 0 row 헤더부분 기술
    {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add("Table ID");
        arr.add("Table 명");
        arr.add("CRUD");
        tableList.add(arr);
    }
    List<TableDVO> tableDVOList = svo.getTableDVOList();
    int DEFAULT_ROW = 4;
    // /
    if (tableDVOList != null) {
        for (TableDVO dvo : tableDVOList) {
            ArrayList<String> arr = new ArrayList<String>();
            arr.add(dvo.getTableId());
            arr.add(dvo.getTableName());
            arr.add(dvo.getCrud());
            tableList.add(arr);
        }
    }
    // 여유 공간이 남는다면 빈공간을 추가한다.
    int loopCnt = DEFAULT_ROW;
    if (tableDVOList != null) {
        loopCnt = DEFAULT_ROW - tableDVOList.size();
    }
    for (int i = 0; i < loopCnt; i++) {
        ArrayList<String> arr = new ArrayList<String>();
        arr.add(" ");
        arr.add(" ");
        arr.add(" ");
        tableList.add(arr);
    }
    // /
    addToTable(tableList);
// [END] #### Table 리스트(프로그램에서 사용되는 Table을 모두 기술) ####
}
Also used : ImportsDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.ImportsDVO) XWPFTable(org.apache.poi.xwpf.usermodel.XWPFTable) ArrayList(java.util.ArrayList) ITextureBlock(com.kyj.fx.voeditor.visual.words.spec.auto.msword.interfaces.ITextureBlock) TableDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.TableDVO) ArrayList(java.util.ArrayList) List(java.util.List) MethodDVO(com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO)

Aggregations

MethodDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodDVO)8 ProgramSpecSourceException (com.kyj.fx.voeditor.visual.exceptions.ProgramSpecSourceException)4 ArrayList (java.util.ArrayList)4 ImportsDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.ImportsDVO)3 MethodParameterDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.MethodParameterDVO)2 ProgramSpecSVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.ProgramSpecSVO)2 SourceAnalysisDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.SourceAnalysisDVO)2 UserSourceMetaDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.UserSourceMetaDVO)2 List (java.util.List)2 AnnotateBizOptions (com.kyj.fx.voeditor.visual.component.grid.AnnotateBizOptions)1 ITextureBlock (com.kyj.fx.voeditor.visual.words.spec.auto.msword.interfaces.ITextureBlock)1 BaseInfoComposite (com.kyj.fx.voeditor.visual.words.spec.auto.msword.ui.skin.BaseInfoComposite)1 TableDVO (com.kyj.fx.voeditor.visual.words.spec.auto.msword.vo.TableDVO)1 IOException (java.io.IOException)1 ListChangeListener (javafx.collections.ListChangeListener)1 Insets (javafx.geometry.Insets)1 Button (javafx.scene.control.Button)1 BorderPane (javafx.scene.layout.BorderPane)1 HBox (javafx.scene.layout.HBox)1 XWPFTable (org.apache.poi.xwpf.usermodel.XWPFTable)1