/* * JBoss, Home of Professional Open Source. * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * * 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. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ package org.teiid.query.resolver; import org.teiid.core.types.DataTypeManagerService; import org.teiid.designer.runtime.version.spi.ITeiidServerVersion; import org.teiid.query.metadata.TempMetadataAdapter; import org.teiid.query.parser.TeiidNodeFactory; import org.teiid.query.parser.TeiidNodeFactory.ASTNodes; import org.teiid.query.sql.lang.Command; import org.teiid.query.sql.lang.LanguageObject; /** * This is the interface that is implemented for each type of command, telling how * to resolve that command. */ public abstract class CommandResolver { private final QueryResolver queryResolver; private DataTypeManagerService dataTypeManager; /** * @param queryResolver */ public CommandResolver(QueryResolver queryResolver) { this.queryResolver = queryResolver; } protected QueryResolver getQueryResolver() { return this.queryResolver; } protected ITeiidServerVersion getTeiidVersion() { return getQueryResolver().getTeiidVersion(); } protected <T extends LanguageObject> T createASTNode(ASTNodes type) { return TeiidNodeFactory.createASTNode(getTeiidVersion(), type); } protected DataTypeManagerService getDataTypeManager() { if (dataTypeManager == null) dataTypeManager = DataTypeManagerService.getInstance(getTeiidVersion()); return dataTypeManager; } /** * Resolve the command using the metadata. * @param command The command to resolve * @param metadata Metadata * @param resolveNullLiterals true if the resolver should consider replacing null literals with more appropriate types * @return the TempMetadataStore containing the metadata defined by this command * @throws Exception If there is a metadata problem * @throws Exception If the query cannot be resolved * @throws Exception If there is an internal error */ public abstract void resolveCommand(Command command, TempMetadataAdapter metadata, boolean resolveNullLiterals) throws Exception; }