ea.compoment.db.util.sql.InsertSqlBuilder.java Source code

Java tutorial

Introduction

Here is the source code for ea.compoment.db.util.sql.InsertSqlBuilder.java

Source

/*
 * Copyright (C) 2013  ethanchiu@126.com
 *
 * 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 ea.compoment.db.util.sql;

import java.lang.reflect.Field;

import org.apache.http.NameValuePair;

import ea.compoment.db.DBException;
import ea.compoment.db.annotation.PrimaryKey;
import ea.compoment.db.entity.NVArrayList;
import ea.compoment.db.util.DBAnnoUtils;
import ea.util.check.StringUtils;

/**
 * @Description: ?sql?
 * @author: ethanchiu@126.com
 * @date: 2013-6-21
 */
public class InsertSqlBuilder extends SqlBuilder {
    @Override
    public void onPreGetStatement() throws DBException, IllegalArgumentException, IllegalAccessException {
        if (getUpdateFields() == null) {
            setUpdateFields(getFieldsAndValue(entity));
        }
        super.onPreGetStatement();
    }

    @Override
    public String buildSql() throws DBException, IllegalArgumentException, IllegalAccessException {
        StringBuilder columns = new StringBuilder(256);
        StringBuilder values = new StringBuilder(256);
        columns.append("INSERT INTO ");
        columns.append(tableName).append(" (");
        values.append("(");
        NVArrayList updateFields = getUpdateFields();
        if (updateFields != null) {
            for (int i = 0; i < updateFields.size(); i++) {
                NameValuePair nameValuePair = updateFields.get(i);
                columns.append(nameValuePair.getName());
                String name = nameValuePair.getValue();
                // TODO ?? "''"
                if (nameValuePair.getValue() != null && nameValuePair.getValue().toString().contains("'")) {
                    name = nameValuePair.getValue().toString().replace("'", "''");
                }
                values.append(StringUtils.isNumeric(name != null ? name : "") ? name : "'" + name + "'");
                if (i + 1 < updateFields.size()) {
                    columns.append(", ");
                    values.append(", ");
                }
            }
        } else {
            throw new DBException("???");
        }
        columns.append(") values ");
        values.append(")");
        columns.append(values);
        return columns.toString();
    }

    /**
     * ,?
     * 
     * @return
     * @throws DBException
     * @throws IllegalArgumentException
     * @throws IllegalAccessException
     */
    public static NVArrayList getFieldsAndValue(Object entity)
            throws DBException, IllegalArgumentException, IllegalAccessException {
        NVArrayList arrayList = new NVArrayList();
        if (entity == null) {
            throw new DBException("?");
        }
        Class<?> clazz = entity.getClass();
        Field[] fields = clazz.getDeclaredFields();
        for (Field field : fields) {

            if (!DBAnnoUtils.isTransient(field)) {
                if (DBAnnoUtils.isBaseDateType(field)) {
                    PrimaryKey annotation = field.getAnnotation(PrimaryKey.class);
                    if (annotation != null && annotation.autoIncrement()) {

                    } else {
                        String columnName = DBAnnoUtils.getColumnByField(field);
                        field.setAccessible(true);
                        arrayList.add((columnName != null && !columnName.equals("")) ? columnName : field.getName(),
                                field.get(entity) == null ? null : field.get(entity).toString());
                    }

                }
            }
        }
        return arrayList;
    }
}