blob: 136240b5ba8f758c3e4abe4b6da29ae078ac3ace [file] [log] [blame]
/* Copyright 2004 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.xmlbeans.impl.values;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.SchemaType;
import org.apache.xmlbeans.impl.common.ValidationContext;
import org.apache.xmlbeans.impl.common.QNameHelper;
public abstract class JavaDoubleHolderEx extends JavaDoubleHolder
{
public JavaDoubleHolderEx(SchemaType type, boolean complex)
{ _schemaType = type; initComplexType(complex, false); }
private SchemaType _schemaType;
public SchemaType schemaType()
{ return _schemaType; }
protected void set_double(double v)
{
if (_validateOnSet())
validateValue(v, _schemaType, _voorVc);
super.set_double(v);
}
public static double validateLexical(String v, SchemaType sType, ValidationContext context)
{
double d = JavaDoubleHolder.validateLexical(v, context);
if (!sType.matchPatternFacet(v))
context.invalid("Double (" + v + ") does not match pattern for " + QNameHelper.readable(sType));
return d;
}
public static void validateValue(double v, SchemaType sType, ValidationContext context)
{
XmlObject x;
double d;
if ((x = sType.getFacet(SchemaType.FACET_MIN_EXCLUSIVE)) != null)
{
if (compare(v, d = ((XmlObjectBase)x).doubleValue()) <= 0)
{
context.invalid(
"Double (" + v + ") is less than or equal to " +
"min exclusive facet (" + d + ") for " + QNameHelper.readable(sType));
}
}
if ((x = sType.getFacet(SchemaType.FACET_MIN_INCLUSIVE)) != null)
{
if (compare(v, d = ((XmlObjectBase)x).doubleValue()) < 0)
{
context.invalid(
"Double (" + v + ") is less than " +
"min inclusive facet (" + d + ") for " + QNameHelper.readable(sType));
}
}
if ((x = sType.getFacet(SchemaType.FACET_MAX_INCLUSIVE)) != null)
{
if (compare(v, d = ((XmlObjectBase)x).doubleValue()) > 0)
{
context.invalid(
"Double (" + v + ") is greater than " +
"max inclusive facet (" + d + ") for " + QNameHelper.readable(sType));
}
}
if ((x = sType.getFacet(SchemaType.FACET_MAX_EXCLUSIVE)) != null)
{
if (compare(v, d = ((XmlObjectBase)x).doubleValue()) >= 0)
{
context.invalid(
"Double (" + v + ") is greater than or equal to " +
"max exclusive facet (" + d + ") for " + QNameHelper.readable(sType));
}
}
XmlObject[] vals = sType.getEnumerationValues();
if (vals != null)
{
for (int i = 0; i < vals.length; i++)
if (compare(v, ((XmlObjectBase)vals[i]).doubleValue()) == 0)
return;
context.invalid("Double (" + v + ") is not a valid enumerated value for " + QNameHelper.readable(sType));
}
}
protected void validate_simpleval(String lexical, ValidationContext ctx)
{
validateLexical(lexical, schemaType(), ctx);
validateValue(doubleValue(), schemaType(), ctx);
}
}