/** * Copyright 2006-2016 the original author or authors. * * 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 org.mybatis.generator.codegen.ibatis2.dao.elements; import java.util.Set; import java.util.TreeSet; import org.mybatis.generator.api.dom.java.FullyQualifiedJavaType; import org.mybatis.generator.api.dom.java.Interface; import org.mybatis.generator.api.dom.java.JavaVisibility; import org.mybatis.generator.api.dom.java.Method; import org.mybatis.generator.api.dom.java.Parameter; import org.mybatis.generator.api.dom.java.TopLevelClass; /** * * @author Jeff Butler * */ public class CountByExampleMethodGenerator extends AbstractDAOElementGenerator { private boolean generateForJava5; public CountByExampleMethodGenerator(boolean generateForJava5) { super(); this.generateForJava5 = generateForJava5; } @Override public void addImplementationElements(TopLevelClass topLevelClass) { Set<FullyQualifiedJavaType> importedTypes = new TreeSet<FullyQualifiedJavaType>(); Method method = getMethodShell(importedTypes); // generate the implementation method StringBuilder sb = new StringBuilder(); sb.append("Long count = (Long) "); //$NON-NLS-1$ sb.append(daoTemplate.getQueryForObjectMethod(introspectedTable .getIbatis2SqlMapNamespace(), introspectedTable .getCountByExampleStatementId(), "example")); //$NON-NLS-1$ method.addBodyLine(sb.toString()); if (generateForJava5) { method.addBodyLine("return count;"); //$NON-NLS-1$ } else { method.addBodyLine("return count.longValue();"); //$NON-NLS-1$ } if (context.getPlugins().clientCountByExampleMethodGenerated(method, topLevelClass, introspectedTable)) { topLevelClass.addImportedTypes(importedTypes); topLevelClass.addMethod(method); } } @Override public void addInterfaceElements(Interface interfaze) { if (getExampleMethodVisibility() == JavaVisibility.PUBLIC) { Set<FullyQualifiedJavaType> importedTypes = new TreeSet<FullyQualifiedJavaType>(); Method method = getMethodShell(importedTypes); if (context.getPlugins().clientCountByExampleMethodGenerated( method, interfaze, introspectedTable)) { interfaze.addImportedTypes(importedTypes); interfaze.addMethod(method); } } } private Method getMethodShell(Set<FullyQualifiedJavaType> importedTypes) { FullyQualifiedJavaType type = new FullyQualifiedJavaType( introspectedTable.getExampleType()); importedTypes.add(type); Method method = new Method(); method.setVisibility(getExampleMethodVisibility()); method.setReturnType(new FullyQualifiedJavaType("long")); //$NON-NLS-1$ method.setName(getDAOMethodNameCalculator() .getCountByExampleMethodName(introspectedTable)); method.addParameter(new Parameter(type, "example")); //$NON-NLS-1$ for (FullyQualifiedJavaType fqjt : daoTemplate.getCheckedExceptions()) { method.addException(fqjt); importedTypes.add(fqjt); } context.getCommentGenerator().addGeneralMethodComment(method, introspectedTable); return method; } }