blob: 35ded489157515f6da2e9cd9ab43f32dc78e8098 [file] [log] [blame]
/*
* 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.zest.library.rest.server.restlet.freemarker;
import freemarker.template.ObjectWrapper;
import freemarker.template.TemplateCollectionModel;
import freemarker.template.TemplateHashModelEx;
import freemarker.template.TemplateModel;
import freemarker.template.TemplateModelException;
import freemarker.template.TemplateScalarModel;
import org.apache.zest.api.Qi4j;
import org.apache.zest.api.property.Property;
import org.apache.zest.api.property.PropertyDescriptor;
import org.apache.zest.api.value.ValueComposite;
import org.apache.zest.api.value.ValueDescriptor;
import org.apache.zest.functional.Function;
import org.apache.zest.functional.Iterables;
/**
* TODO
*/
public class ValueCompositeTemplateModel
implements TemplateHashModelEx, TemplateScalarModel
{
private ValueComposite composite;
private ObjectWrapper wrapper;
private ValueDescriptor descriptor;
public ValueCompositeTemplateModel( ValueComposite composite, ObjectWrapper wrapper )
{
this.composite = composite;
this.wrapper = wrapper;
descriptor = (ValueDescriptor) Qi4j.FUNCTION_DESCRIPTOR_FOR.map( composite );
}
@Override
public int size()
throws TemplateModelException
{
return (int) Iterables.count( descriptor.state().properties() );
}
@Override
public TemplateCollectionModel keys()
throws TemplateModelException
{
return (TemplateCollectionModel) wrapper.wrap( Iterables.map( new Function<PropertyDescriptor, String>()
{
@Override
public String map( PropertyDescriptor propertyDescriptor )
{
return propertyDescriptor.qualifiedName().name();
}
}, descriptor.state().properties() ).iterator() );
}
@Override
public TemplateCollectionModel values()
throws TemplateModelException
{
return (TemplateCollectionModel) wrapper.wrap( Iterables.map( new Function<Property<?>, Object>()
{
@Override
public Object map( Property<?> objectProperty )
{
try
{
return wrapper.wrap( objectProperty.get() );
}
catch( TemplateModelException e )
{
throw new IllegalStateException( e );
}
}
}, Qi4j.FUNCTION_COMPOSITE_INSTANCE_OF.map( composite ).state().properties() ).iterator() );
}
@Override
public TemplateModel get( String key )
throws TemplateModelException
{
try
{
return wrapper.wrap( Qi4j.FUNCTION_COMPOSITE_INSTANCE_OF
.map( composite )
.state()
.propertyFor( descriptor.state().findPropertyModelByName( key ).accessor() )
.get() );
}
catch( IllegalArgumentException e )
{
return null;
}
}
@Override
public boolean isEmpty()
throws TemplateModelException
{
return size() == 0;
}
@Override
public String getAsString()
throws TemplateModelException
{
return composite.toString();
}
}