
org.apache.tapestry5.hibernate.web.internal.HibernateEntityValueEncoder Maven / Gradle / Ivy
The newest version!
// Copyright 2008-2013 The Apache Software Foundation
//
// 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.apache.tapestry5.hibernate.web.internal;
import org.apache.tapestry5.ValueEncoder;
import org.apache.tapestry5.commons.services.PropertyAccess;
import org.apache.tapestry5.commons.services.PropertyAdapter;
import org.apache.tapestry5.commons.services.TypeCoercer;
import org.apache.tapestry5.commons.util.ExceptionUtils;
import org.apache.tapestry5.ioc.internal.util.InternalUtils;
import org.hibernate.Session;
import org.hibernate.mapping.Property;
import org.slf4j.Logger;
import java.io.Serializable;
public final class HibernateEntityValueEncoder implements ValueEncoder
{
private final Class entityClass;
private final Session session;
private final TypeCoercer typeCoercer;
private final PropertyAdapter propertyAdapter;
private final Logger logger;
public HibernateEntityValueEncoder(Class entityClass, String identifierPropertyName, Session session,
PropertyAccess propertyAccess, TypeCoercer typeCoercer, Logger logger)
{
this.entityClass = entityClass;
this.session = session;
this.typeCoercer = typeCoercer;
this.logger = logger;
propertyAdapter = propertyAccess.getAdapter(this.entityClass).getPropertyAdapter(identifierPropertyName);
}
@Override
public String toClient(E value)
{
if (value == null)
return null;
Object id = propertyAdapter.get(value);
if (id == null)
{
return null;
}
return typeCoercer.coerce(id, String.class);
}
@Override
@SuppressWarnings("unchecked")
public E toValue(String clientValue)
{
if (InternalUtils.isBlank(clientValue))
return null;
Object id = null;
try
{
id = typeCoercer.coerce(clientValue, propertyAdapter.getType());
} catch (Exception ex)
{
throw new RuntimeException(String.format(
"Exception converting '%s' to instance of %s (id type for entity %s): %s", clientValue,
propertyAdapter.getType().getName(), entityClass.getName(), ExceptionUtils.toMessage(ex)), ex);
}
Serializable ser = (Serializable) id;
E result = (E) session.get(entityClass, ser);
if (result == null)
{
// We don't identify the entity type in the message because the logger is based on the
// entity type.
logger.error(String.format("Unable to convert client value '%s' into an entity instance.", clientValue));
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy