blanco.cg.transformer.python.BlancoCgFieldPythonSourceExpander 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.python;
import java.util.List;
import blanco.cg.BlancoCgSupportedLang;
import blanco.cg.valueobject.BlancoCgField;
import blanco.cg.valueobject.BlancoCgLangDoc;
import blanco.cg.valueobject.BlancoCgSourceFile;
import blanco.commons.util.BlancoStringUtil;
/**
* BlancoCgFieldをソースコードへと展開します。
*
* このクラスはblancoCgのバリューオブジェクトからソースコードを自動生成するトランスフォーマーの個別の展開機能です。
*
* @author IGA Tosiki
*/
class BlancoCgFieldPythonSourceExpander {
/**
* このクラスが処理対象とするプログラミング言語。
*/
protected static final int TARGET_LANG = BlancoCgSupportedLang.JAVA;
/**
* ここでフィールドを展開します。
*
* @param cgField
* 処理対象となるフィールド。
* @param argSourceFile
* ソースファイル。
* @param argSourceLines
* 出力先行リスト。
* @param argIsInterface
* インタフェースかどうか。クラスの場合にはfalse。インタフェースの場合にはtrue。
*/
public void transformField(final BlancoCgField cgField,
final BlancoCgSourceFile argSourceFile,
final List argSourceLines,
final boolean argIsInterface) {
if (BlancoStringUtil.null2Blank(cgField.getName()).length() == 0) {
throw new IllegalArgumentException("フィールドの名前に適切な値が設定されていません。");
}
// Pythonではフィールドの型を設定する必要はりません。
// if (BlancoStringUtil.null2Blank(cgField.getType().getName()).length()
// == 0) {
// throw new IllegalArgumentException("フィールド[" + cgField.getName()
// + "]の型が適切な値が設定されていません。");
// }
// 有無をいわさず改行を付与します。
argSourceLines.add("");
// 最初にフィールド情報をLangDocに展開。
if (cgField.getLangDoc() == null) {
// LangDoc未指定の場合にはこちら側でインスタンスを生成。
cgField.setLangDoc(new BlancoCgLangDoc());
}
if (cgField.getLangDoc().getTitle() == null) {
cgField.getLangDoc().setTitle(cgField.getDescription());
}
// 次に LangDocをソースコード形式に展開。
new BlancoCgLangDocPythonSourceExpander().transformLangDoc(cgField
.getLangDoc(), argSourceLines);
final StringBuffer buf = new StringBuffer();
// if (BlancoStringUtil.null2Blank(cgField.getAccess()).length() > 0) {
// if (argIsInterface && cgField.getAccess().equals("public")) {
// // インタフェース且つpublicの場合には出力を抑制します。
// // これはCheckstyle対策となります。
// } else {
// buf.append(cgField.getAccess() + " ");
// }
// }
// if (cgField.getStatic()) {
// buf.append("static ");
// }
// if (cgField.getFinal()) {
// buf.append("final ");
// }
// import文に型を追加。
argSourceFile.getImportList().add(cgField.getType().getName());
// フィールド生成の本体部分を展開します。
// buf.append(BlancoCgTypeJavaSourceExpander.toTypeString(cgField
// .getType())
// + " ");
buf.append(cgField.getName());
// デフォルト値の指定がある場合にはこれを展開します。
if (BlancoStringUtil.null2Blank(cgField.getDefault()).length() > 0) {
buf.append(" = " + cgField.getDefault());
}
// buf.append(BlancoCgLineUtil.getTerminator(TARGET_LANG));
argSourceLines.add(buf.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy