Package etch.bindings.java.support

Source Code of etch.bindings.java.support.Validator_custom

/* $Id: Validator_custom.java 712730 2008-07-29 06:31:55Z jadixson $
*
* Copyright 2007-2008 Cisco Systems Inc.
*
* 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 etch.bindings.java.support;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

import etch.bindings.java.msg.Validator;

/**
* Validator for custom type.
*/
public class Validator_custom extends TypeValidator
{
  /**
   * @param clss the class of the custom type.
   * @param nDims the number of dimensions. 0 for a scalar.
   * @param subclassOk if true allow subclasses of the
   * class.
   * @return an instance of Validator.
   */
  public static Validator get( Class<?> clss, int nDims, boolean subclassOk )
  {
    checkDims( nDims );
   
    if (nDims > MAX_CACHED)
      return new Validator_custom( clss, nDims, subclassOk );
   
    Key key = new Key( clss, nDims, subclassOk );
    Validator v = validators.get( key );
   
    if (v == null)
    {
      v = new Validator_custom( clss, nDims, subclassOk );
      validators.put( key, v );
    }
   
    return v;
  }
 
  private static class Key
  {
    /**
     * Constructs the key
     * @param clss
     * @param dims
     * @param subclassOk
     */
    public Key( Class<?> clss, int dims, boolean subclassOk )
    {
      this.clss = clss;
      this.dims = dims;
      this.subclassOk = subclassOk;
    }
   
    private final Class<?> clss;
   
    private final int dims;
   
    private final boolean subclassOk;
   
    @Override
    public int hashCode()
    {
      return clss.hashCode() ^ (dims * 9131) ^ (subclassOk ? 21357 : 8547);
    }
   
    @Override
    public boolean equals( Object obj )
    {
      if (obj == this)
        return true;
     
      if (obj == null)
        return false;
     
      if (obj.getClass() != getClass())
        return false;
     
      Key other = (Key) obj;
     
      return other.clss.equals( clss)
        && other.dims == dims
        && other.subclassOk == subclassOk;
    }
  }
 
  private final static Map<Key, Validator> validators =
    Collections.synchronizedMap( new HashMap<Key, Validator>() );
 
  /**
   * Constructs the Validator.
   *
   * @param clss the class of the custom type.
   * @param nDims the number of dimensions. 0 for a scalar.
   */
  private Validator_custom( Class<?> clss, int nDims, boolean subclassOk )
  {
    super( clss, clss, nDims,
      subclassOk
        ? clss.toString()+"["+nDims+"]*"
        : clss.toString()+"["+nDims+"]",
      subclassOk );
    this.clss = clss;
  }
 
  private final Class<?> clss;

  public Validator elementValidator()
  {
    return get( clss, nDims-1, subclassOk );
  }
}
TOP

Related Classes of etch.bindings.java.support.Validator_custom

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.