org.datanucleus.store.rdbms.query.StatementParameterMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datanucleus-rdbms Show documentation
Show all versions of datanucleus-rdbms Show documentation
Plugin for DataNucleus providing persistence to RDBMS datastores.
The newest version!
/**********************************************************************
Copyright (c) 2009 Andy Jefferson and others. All rights reserved.
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.
Contributors:
...
**********************************************************************/
package org.datanucleus.store.rdbms.query;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
/**
* Definition of the mapping of parameters in a datastore statement.
* A typical use is for RDBMS where we have a JDBC statement and each parameter is looked up
* via its name. The mapping information for the parameter provides the mapping and the parameter
* positions to use.
*/
public class StatementParameterMapping
{
/** Mappings for the parameters keyed by the parameter name. */
Map mappings = null;
public StatementParameterMapping()
{
}
/**
* Accessor for the mapping information for the parameter with the specified name.
* @param name Parameter name
* @return The mapping information
*/
public StatementMappingIndex getMappingForParameter(String name)
{
return (mappings == null) ? null : mappings.get(name);
}
/**
* Convenience method to return the mapping for the parameter that is at the specified position.
* The position should use the same origin as the parameter positions here.
* @param pos The position
* @return The mapping (if any)
*/
public StatementMappingIndex getMappingForParameterPosition(int pos)
{
if (mappings == null)
{
return null;
}
Iterator> iter = mappings.entrySet().iterator();
while (iter.hasNext())
{
Map.Entry entry = iter.next();
StatementMappingIndex idx = entry.getValue();
for (int i=0;i();
}
mappings.put(name, mapping);
}
public String[] getParameterNames()
{
if (mappings == null)
{
return null;
}
return mappings.keySet().toArray(new String[mappings.size()]);
}
public boolean isEmpty()
{
return (mappings == null || mappings.size() == 0);
}
public String toString()
{
StringBuilder str = new StringBuilder("StatementParameters:");
if (mappings != null)
{
Iterator> mapIter = mappings.entrySet().iterator();
while (mapIter.hasNext())
{
Map.Entry entry = mapIter.next();
str.append(" param=").append(entry.getKey());
str.append(" mapping=").append(entry.getValue());
if (mapIter.hasNext())
{
str.append(",");
}
}
}
return str.toString();
}
}