All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
blanco.cg.transformer.vb.BlancoCgClassVbSourceExpander Maven / Gradle / Ivy
/*
* blanco Framework
* Copyright (C) 2004-2017 IGA Tosiki
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*/
/*
* Copyright 2017 Toshiki Iga
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package blanco.cg.transformer.vb;
import java.util.List;
import blanco.cg.valueobject.BlancoCgClass;
import blanco.cg.valueobject.BlancoCgField;
import blanco.cg.valueobject.BlancoCgLangDoc;
import blanco.cg.valueobject.BlancoCgMethod;
import blanco.cg.valueobject.BlancoCgSourceFile;
import blanco.cg.valueobject.BlancoCgType;
import blanco.commons.util.BlancoNameAdjuster;
import blanco.commons.util.BlancoStringUtil;
/**
* BlancoCgClassをソースコードへと展開します。
*
* このクラスはblancoCgのバリューオブジェクトからソースコードを自動生成するトランスフォーマーの個別の展開機能です。
*
* @author IGA Tosiki
*/
class BlancoCgClassVbSourceExpander {
/**
* ここでClassを展開します。
*
* @param cgClass
* 処理対象となるクラス。
* @param argSourceLines
* ソースコード。
*/
public void transformClass(final BlancoCgClass cgClass,
final BlancoCgSourceFile argSourceFile,
final List argSourceLines) {
// 最初にクラス情報をLangDocに展開。
if (cgClass.getLangDoc() == null) {
// LangDoc未指定の場合にはこちら側でインスタンスを生成。
cgClass.setLangDoc(new BlancoCgLangDoc());
}
if (cgClass.getLangDoc().getTitle() == null) {
cgClass.getLangDoc().setTitle(cgClass.getDescription());
}
// 次に LangDocをソースコード形式に展開。
new BlancoCgLangDocVbSourceExpander().transformLangDoc(cgClass
.getLangDoc(), argSourceLines);
// アノテーションを展開。
expandAnnotationList(cgClass, argSourceLines);
final StringBuffer buf = new StringBuffer();
if (BlancoStringUtil.null2Blank(cgClass.getAccess()).length() > 0) {
buf.append(BlancoNameAdjuster.toClassName(cgClass.getAccess())
+ " ");
}
if (cgClass.getAbstract()) {
buf.append("Abstract ");
}
if (cgClass.getFinal()) {
buf.append("Final ");
}
buf.append("Class " + cgClass.getName());
// 親クラスを展開。
expandExtendClassList(cgClass, argSourceFile, buf);
// 親インタフェースを展開。
expandImplementInterfaceList(cgClass, argSourceFile, buf);
// 行を確定して書き出しを実施。
argSourceLines.add(buf.toString());
// クラスのブロックの開始。
// argSourceLines.add("{");
// ここでフィールドを展開。
expandFieldList(cgClass, argSourceFile, argSourceLines);
// ここでメソッドを展開。
expandMethodList(cgClass, argSourceFile, argSourceLines);
// クラスのブロックの終了。
argSourceLines.add("End Class");
}
/**
* アノテーションを展開します。
*
* @param cgClass
* クラス。
* @param argSourceLines
* ソースコード。
*/
private void expandAnnotationList(final BlancoCgClass cgClass,
final List argSourceLines) {
for (int index = 0; index < cgClass.getAnnotationList().size(); index++) {
final String strAnnotation = cgClass.getAnnotationList().get(index);
// C#.NET言語のAnnotationは []で記述します。
argSourceLines.add("[" + strAnnotation + "]");
}
}
/**
* 親クラスを展開します。
*
* ※BlancoCgInterface展開の際に、このメソッドを共通処理として呼び出してはなりません。
* その共通化は、かえって理解を妨げると判断しています。
*
* @param cgClass
* クラスのバリューオブジェクト。
* @param argBuf
* 出力先文字列バッファ。
*/
private void expandExtendClassList(final BlancoCgClass cgClass,
final BlancoCgSourceFile argSourceFile, final StringBuffer argBuf) {
for (int index = 0; index < cgClass.getExtendClassList().size(); index++) {
final BlancoCgType type = cgClass.getExtendClassList().get(index);
// import文に型を追加。
argSourceFile.getImportList().add(type.getName());
if (index == 0) {
argBuf.append(" : Inherits "
+ BlancoCgTypeVbSourceExpander.toTypeString(type));
} else {
// TODO VB.NETの継承が一度きりだったかどうか確認を実施すること。
// throw new
// IllegalArgumentException("VB.NET言語では継承は一回しか実施できません。");
// TODO 現時点では多重継承がOKであると想定します。
argBuf.append(", "
+ BlancoCgTypeVbSourceExpander.toTypeString(type));
}
}
}
/**
* 親インタフェースを展開します。
*
* @param cgClass
* 処理中のクラス。
* @param argBuf
* 出力先文字列バッファ。
*/
private void expandImplementInterfaceList(final BlancoCgClass cgClass,
final BlancoCgSourceFile argSourceFile, final StringBuffer argBuf) {
for (int index = 0; index < cgClass.getImplementInterfaceList().size(); index++) {
final BlancoCgType type = cgClass.getImplementInterfaceList().get(
index);
// import文に型を追加。
argSourceFile.getImportList().add(type.getName());
if (index == 0 && cgClass.getExtendClassList().size() == 0) {
// 最初のインタフェースで、且つ継承が無い場合に : を出力します。
argBuf.append(" : ");
} else {
argBuf.append(", ");
}
argBuf.append(BlancoCgTypeVbSourceExpander.toTypeString(type));
}
}
/**
* クラスに含まれる各々のフィールドを展開します。
*
* TODO 定数宣言を優先して展開し、その後変数宣言を展開するなどの工夫が必要です。
* 現在は 登録順でソースコード展開します。
*
* @param cgClass
* 処理中のクラス。
* @param argSourceFile
* ソースファイル。
* @param argSourceLines
* ソースコード行リスト。
*/
private void expandFieldList(final BlancoCgClass cgClass,
final BlancoCgSourceFile argSourceFile,
final List argSourceLines) {
if (cgClass.getFieldList() == null) {
// フィールドのリストにnullが与えられました。
// かならずフィールドのリストにはListをセットしてください。
throw new IllegalArgumentException("フィールドのリストにnullが与えられました。");
}
for (int index = 0; index < cgClass.getFieldList().size(); index++) {
final BlancoCgField cgField = cgClass.getFieldList().get(index);
// クラスのフィールドとして展開を行います。
new BlancoCgFieldVbSourceExpander().transformField(cgField,
argSourceFile, argSourceLines, false);
}
}
/**
* クラスに含まれる各々のメソッドを展開します。
*
* @param cgClass
* 処理中のクラス。
* @param argSourceFile
* ソースファイル。
* @param argSourceLines
* ソースコード行リスト。
*/
private void expandMethodList(final BlancoCgClass cgClass,
final BlancoCgSourceFile argSourceFile,
final List argSourceLines) {
if (cgClass.getMethodList() == null) {
throw new IllegalArgumentException("メソッドのリストにnullが与えられました。");
}
for (int index = 0; index < cgClass.getMethodList().size(); index++) {
final BlancoCgMethod cgMethod = cgClass.getMethodList().get(index);
// クラスのメソッドとして展開を行います。
new BlancoCgMethodVbSourceExpander().transformMethod(cgMethod,
argSourceFile, argSourceLines, false);
}
}
}