Package org.eclipse.sapphire.services.internal

Source Code of org.eclipse.sapphire.services.internal.CountConstraintValidationService$Condition

/******************************************************************************
* Copyright (c) 2014 Oracle
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*    Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/

package org.eclipse.sapphire.services.internal;

import org.eclipse.sapphire.ElementList;
import org.eclipse.sapphire.ListProperty;
import org.eclipse.sapphire.LocalizableText;
import org.eclipse.sapphire.PropertyDef;
import org.eclipse.sapphire.Text;
import org.eclipse.sapphire.modeling.CapitalizationType;
import org.eclipse.sapphire.modeling.Status;
import org.eclipse.sapphire.modeling.annotations.CountConstraint;
import org.eclipse.sapphire.services.ServiceCondition;
import org.eclipse.sapphire.services.ServiceContext;
import org.eclipse.sapphire.services.ValidationService;

/**
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
*/

public final class CountConstraintValidationService extends ValidationService
{
    @Text( "At least {1} {0} must be specified" )
    private static LocalizableText countConstraintTooFew;
   
    @Text( "At least one {0} must be specified" )
    private static LocalizableText countConstraintTooFewAtLeastOne;
   
    @Text( "Cannot specify more than {1} {0} items" )
    private static LocalizableText countConstraintTooMany;
   
    static
    {
        LocalizableText.init( CountConstraintValidationService.class );
    }

    private CountConstraint constraint;
   
    @Override
    protected void initValidationService()
    {
        this.constraint = context( PropertyDef.class ).getAnnotation( CountConstraint.class );
    }

    @Override
    protected Status compute()
    {
        final ElementList<?> list = context( ElementList.class );
        final int count = list.size();
        String message = null;
       
        if( count < this.constraint.min() )
        {
            if( this.constraint.min() == 1 )
            {
                message = countConstraintTooFewAtLeastOne.format
                (
                    context( PropertyDef.class ).getType().getLabel( true, CapitalizationType.NO_CAPS, false )
                );
            }
            else
            {
                message = countConstraintTooFew.format
                (
                    context( PropertyDef.class ).getType().getLabel( true, CapitalizationType.NO_CAPS, false ),
                    this.constraint.min()
                );
            }
        }
        else if( count > this.constraint.max() )
        {
            message = countConstraintTooMany.format
            (
                context( PropertyDef.class ).getType().getLabel( true, CapitalizationType.NO_CAPS, false ),
                this.constraint.max()
            );
        }
       
        if( message == null )
        {
            return Status.createOkStatus();
        }
        else
        {
            return Status.createErrorStatus( message );
        }
    }
   
    public static final class Condition extends ServiceCondition
    {
        @Override
        public boolean applicable( final ServiceContext context )
        {
            final ListProperty property = context.find( ListProperty.class );
            return ( property != null && property.hasAnnotation( CountConstraint.class ) );
        }
    }
   
}
TOP

Related Classes of org.eclipse.sapphire.services.internal.CountConstraintValidationService$Condition

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.