All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.empire.db.expr.column.DBAliasExpr Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.apache.empire.db.expr.column;

// Java
import org.apache.empire.commons.StringUtils;
import org.apache.empire.data.DataType;
import org.apache.empire.db.DBColumn;
import org.apache.empire.db.DBColumnExpr;
import org.apache.empire.db.DBDatabase;
import org.apache.empire.db.DBDatabaseDriver;
import org.w3c.dom.Element;

import java.util.Set;

// XML


/**
 * This class allows column renaming in SQL.
 * 

* There is no need to explicitly create instances of this class.
* Instead use {@link DBColumnExpr#as(String) } *

*/ public class DBAliasExpr extends DBColumnExpr { private final static long serialVersionUID = 1L; private final DBColumnExpr expr; private final String alias; /** * Constructs a DBAliasExpr object combine the DBColumnExpr object with the alias name. * * @param expr an DBColumnExpr object, one column * @param alias the alias name of the column */ public DBAliasExpr(DBColumnExpr expr, String alias) { // Check whether already a AliasExpr if (expr.getClass().equals(getClass())) this.expr = ((DBAliasExpr) expr).expr; else this.expr = expr; // Set alias name this.alias = alias; // .toUpperCase() Why?; } /** * Returns the current DBDatabase object. * * @return the current DBDatabase object */ @Override public DBDatabase getDatabase() { return expr.getDatabase(); } /** * Returns the data type of the DBColumnExpr object. * * @return the data type */ @Override public DataType getDataType() { return expr.getDataType(); } /** * This helper function returns the alias name. * * @return the alias name */ @Override public String getName() { return alias; } /** * This helper function returns the underlying column expression. * * @return the underlying column expression */ public DBColumnExpr getExpr() { return expr; } /** * This function set the alias name to the XML tag. * * @return the XML tag (with the alias name) */ @Override public Element addXml(Element parent, long flags) { // Set name to Alias Element field = expr.addXml(parent, flags); if (field != null) { // Set Name if (field.hasAttribute("name")) field.setAttribute("source", StringUtils.toString(field.getAttribute("name"))); field.setAttribute("name", alias); } return field; } /** * Returns the DBColunm object. * * @return the DBColunm object */ @Override public DBColumn getUpdateColumn() { return expr.getUpdateColumn(); } /** * Always returns false since an alias expression cannot be an aggregate. * * @return false */ @Override public boolean isAggregate() { return false; } /** * @see org.apache.empire.db.DBExpr#addReferencedColumns(Set) */ @Override public void addReferencedColumns(Set list) { expr.addReferencedColumns(list); } /** * Creates the SQL-Command adds the alias name to the SQL-Command. * * @param buf the SQL statment * @param context the current SQL-Command context */ @Override public void addSQL(StringBuilder buf, long context) { // Append alias if((context & CTX_ALIAS)!=0) { // Add the column expression expr.addSQL(buf, context); // Rename String asExpr = getDatabase().getDriver().getSQLPhrase(DBDatabaseDriver.SQL_RENAME_COLUMN); if (asExpr!=null) { buf.append(asExpr); buf.append(alias); } } else { expr.addSQL(buf, context); } } /** * Overrides the equals method * * @return true if alias name and expression match */ @Override public boolean equals(Object other) { if (super.equals(other)) return true; // Check for another Alias Expression if (other instanceof DBAliasExpr) { // Compare with another alias expression DBAliasExpr otherExpr = ((DBAliasExpr)other); return this.alias.equalsIgnoreCase(otherExpr.getName()) && this.expr.equals(otherExpr.getExpr()); } return false; } /** * Overrides the toString method. * * @return the alias name */ @Override public String toString() { return alias; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy