blanco.cg.transformer.cpp11.BlancoCgClassCpp11SourceExpander Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blanco-cg Show documentation
Show all versions of blanco-cg Show documentation
blancoCg is a simple code generator library. blancoCg supports Java/C#/JavaScript/VB.NET/PHP/Ruby/Python/Delphi/Swift/C++11.
/*
* 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.cpp11;
import java.util.List;
import blanco.cg.valueobject.BlancoCgClass;
import blanco.cg.valueobject.BlancoCgEnum;
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;
/**
* BlancoCgClassをソースコードへと展開します。
*
* このクラスはblancoCgのバリューオブジェクトからソースコードを自動生成するトランスフォーマーの個別の展開機能です。
*
* @author IGA Tosiki
*/
class BlancoCgClassCpp11SourceExpander {
/**
* ここで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 BlancoCgLangDocCpp11SourceExpander().transformLangDoc(cgClass
.getLangDoc(), argSourceLines);
// アノテーションを展開。
expandAnnotationList(cgClass, argSourceLines);
final StringBuffer buf = new StringBuffer();
// C++ においては、この記述は無い模様。if (BlancoStringUtil.null2Blank(cgClass.getAccess()).length() > 0) {
// C++ においては、この記述は無い模様。 buf.append(cgClass.getAccess() + " ");
// C++ においては、この記述は無い模様。}
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("{");
// ここで列挙体を展開。
expandEnumList(cgClass, argSourceFile, argSourceLines);
// ここでフィールドを展開。
expandFieldList(cgClass, argSourceFile, argSourceLines);
// ここでメソッドを展開。
expandMethodList(cgClass, argSourceFile, argSourceLines);
// クラスのブロックの終了。
argSourceLines.add("};");
}
/**
* アノテーションを展開します。
*
* @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++11 には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);
// C++ においては、この方式では追加不能。import文に型を追加。
// C++ においては、この方式では追加不能。argSourceFile.getImportList().add(type.getName());
if (index == 0) {
argBuf.append(" : public " /* デフォルトで public 継承とします */
+ BlancoCgTypeCpp11SourceExpander.toTypeString(type));
} else {
// TODO C#.NETの継承が一度きりだったかどうか確認を実施すること。
// throw new
// IllegalArgumentException("C#.NET言語では継承は一回しか実施できません。");
// TODO 現時点では多重継承がOKであると想定します。
argBuf.append(", public " /* デフォルトで public 継承とします */
+ BlancoCgTypeCpp11SourceExpander.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);
// C++ においては、この方式では追加不能。import文に型を追加。
// C++ においては、この方式では追加不能。argSourceFile.getImportList().add(type.getName());
if (index == 0 && cgClass.getExtendClassList().size() == 0) {
// 最初のインタフェースで、且つ継承が無い場合に : を出力します。
argBuf.append(" : public "); /* デフォルトで public 継承とします */
} else {
argBuf.append(", public "); /* デフォルトで public 継承とします */
}
argBuf.append(BlancoCgTypeCpp11SourceExpander.toTypeString(type));
}
}
/**
* クラスに含まれる各々の列挙体を展開します。
*
* @param cgClass
* 処理中のクラス。
* @param argSourceFile
* ソースファイル。
* @param argSourceLines
* ソースコード行リスト。
*/
private void expandEnumList(final BlancoCgClass cgClass,
final BlancoCgSourceFile argSourceFile,
final List argSourceLines) {
if (cgClass.getEnumList() == null) {
return;
}
for (BlancoCgEnum cgEnum : cgClass.getEnumList()) {
new BlancoCgEnumCpp11SourceExpander().transformEnum(cgEnum,
argSourceFile, argSourceLines);
}
}
/**
* クラスに含まれる各々のフィールドを展開します。
*
* 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 BlancoCgFieldCpp11SourceExpander().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 BlancoCgMethodCpp11SourceExpander().transformMethod(cgMethod,
argSourceFile, argSourceLines, false);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy