Search in sources :

Example 1 with IonBool

use of com.amazon.ion.IonBool in project ion-java by amzn.

the class Equivalence method ionCompareToImpl.

private static int ionCompareToImpl(final IonValue v1, final IonValue v2, final Configuration configuration) {
    int result = 0;
    if (v1 == null || v2 == null) {
        if (v1 != null)
            result = 1;
        if (v2 != null)
            result = -1;
        // otherwise v1 == v2 == null and result == 0
        return result;
    }
    // check type
    IonType ty1 = v1.getType();
    IonType ty2 = v2.getType();
    result = ty1.compareTo(ty2);
    if (result == 0) {
        boolean bo1 = v1.isNullValue();
        boolean bo2 = v2.isNullValue();
        if (bo1 || bo2) {
            // the same type
            if (!bo1)
                result = 1;
            if (!bo2)
                result = -1;
        // othersize they're equal (and null values)
        } else {
            // value compare only if both are not null
            switch(ty1) {
                case NULL:
                    // never visited, precondition is that both are not null
                    break;
                case BOOL:
                    if (((IonBool) v1).booleanValue()) {
                        result = ((IonBool) v2).booleanValue() ? 0 : 1;
                    } else {
                        result = ((IonBool) v2).booleanValue() ? -1 : 0;
                    }
                    break;
                case INT:
                    result = ((IonInt) v1).bigIntegerValue().compareTo(((IonInt) v2).bigIntegerValue());
                    break;
                case FLOAT:
                    double double1 = ((IonFloat) v1).doubleValue();
                    double double2 = ((IonFloat) v2).doubleValue();
                    if (configuration.epsilon != null && (double1 == double2 || Math.abs(double1 - double2) <= configuration.epsilon)) {
                        result = 0;
                    } else {
                        result = Double.compare(double1, double2);
                    }
                    break;
                case DECIMAL:
                    // TODO amzn/ion-java/issues/26
                    assert !PUBLIC_COMPARISON_API;
                    result = Decimal.equals(((IonDecimal) v1).decimalValue(), ((IonDecimal) v2).decimalValue()) ? 0 : 1;
                    break;
                case TIMESTAMP:
                    if (configuration.isStrict) {
                        // TODO amzn/ion-java/issues/26
                        assert !PUBLIC_COMPARISON_API;
                        result = (((IonTimestamp) v1).timestampValue().equals(((IonTimestamp) v2).timestampValue()) ? 0 : 1);
                    } else {
                        // This is kind of lying here, the 'strict' boolean
                        // (if false) denotes ONLY that annotations are not
                        // check for equality. But what this is doing here is
                        // that it is also ignoring IonTimesamps' precision and
                        // local offset.
                        result = ((IonTimestamp) v1).timestampValue().compareTo(((IonTimestamp) v2).timestampValue());
                    }
                    break;
                case STRING:
                    result = (((IonText) v1).stringValue()).compareTo(((IonText) v2).stringValue());
                    break;
                case SYMBOL:
                    result = compareSymbolTokens(((IonSymbol) v1).symbolValue(), ((IonSymbol) v2).symbolValue());
                    break;
                case BLOB:
                case CLOB:
                    result = compareLobContents((IonLob) v1, (IonLob) v2);
                    break;
                case STRUCT:
                    // TODO amzn/ion-java/issues/26
                    assert !PUBLIC_COMPARISON_API;
                    result = compareStructs((IonStruct) v1, (IonStruct) v2, configuration);
                    break;
                case LIST:
                case SEXP:
                case DATAGRAM:
                    result = compareSequences((IonSequence) v1, (IonSequence) v2, configuration);
                    break;
            }
        }
    }
    // comparison, then we check the annotations
    if ((result == 0) && configuration.isStrict) {
        // check tuple equality over the annotations
        // (which are symbol tokens)
        result = compareAnnotations(v1.getTypeAnnotationSymbols(), v2.getTypeAnnotationSymbols());
    }
    return result;
}
Also used : IonType(com.amazon.ion.IonType) IonInt(com.amazon.ion.IonInt) IonSequence(com.amazon.ion.IonSequence) IonBool(com.amazon.ion.IonBool) IonSymbol(com.amazon.ion.IonSymbol) IonText(com.amazon.ion.IonText) IonStruct(com.amazon.ion.IonStruct) IonTimestamp(com.amazon.ion.IonTimestamp) IonLob(com.amazon.ion.IonLob) IonFloat(com.amazon.ion.IonFloat)

Example 2 with IonBool

use of com.amazon.ion.IonBool in project ion-java by amzn.

the class _Private_CurriedValueFactory method newNullBool.

// -------------------------------------------------------------------------
public IonBool newNullBool() {
    IonBool v = myFactory.newNullBool();
    handle(v);
    return v;
}
Also used : IonBool(com.amazon.ion.IonBool)

Example 3 with IonBool

use of com.amazon.ion.IonBool in project ion-java by amzn.

the class PrinterTest method testPrintingBool.

@Test
public void testPrintingBool() throws Exception {
    IonBool value = system().newNullBool();
    checkNullRendering("null.bool", value);
    value.setValue(true);
    checkRendering("true", value);
    value.setValue(false);
    checkRendering("false", value);
    value.addTypeAnnotation("an");
    checkRendering("an::false", value);
}
Also used : IonBool(com.amazon.ion.IonBool) Test(org.junit.Test) IntTest(com.amazon.ion.IntTest) BlobTest(com.amazon.ion.BlobTest) ClobTest(com.amazon.ion.ClobTest)

Example 4 with IonBool

use of com.amazon.ion.IonBool in project ion-java by amzn.

the class _Private_CurriedValueFactory method newBool.

public IonBool newBool(boolean value) {
    IonBool v = myFactory.newBool(value);
    handle(v);
    return v;
}
Also used : IonBool(com.amazon.ion.IonBool)

Example 5 with IonBool

use of com.amazon.ion.IonBool in project ion-java by amzn.

the class _Private_CurriedValueFactory method newBool.

public IonBool newBool(Boolean value) {
    IonBool v = myFactory.newBool(value);
    handle(v);
    return v;
}
Also used : IonBool(com.amazon.ion.IonBool)

Aggregations

IonBool (com.amazon.ion.IonBool)6 IonFloat (com.amazon.ion.IonFloat)2 IonInt (com.amazon.ion.IonInt)2 IonStruct (com.amazon.ion.IonStruct)2 IonSymbol (com.amazon.ion.IonSymbol)2 IonTimestamp (com.amazon.ion.IonTimestamp)2 BlobTest (com.amazon.ion.BlobTest)1 ClobTest (com.amazon.ion.ClobTest)1 IntTest (com.amazon.ion.IntTest)1 IonBlob (com.amazon.ion.IonBlob)1 IonClob (com.amazon.ion.IonClob)1 IonDecimal (com.amazon.ion.IonDecimal)1 IonList (com.amazon.ion.IonList)1 IonLob (com.amazon.ion.IonLob)1 IonNull (com.amazon.ion.IonNull)1 IonSequence (com.amazon.ion.IonSequence)1 IonSexp (com.amazon.ion.IonSexp)1 IonString (com.amazon.ion.IonString)1 IonText (com.amazon.ion.IonText)1 IonType (com.amazon.ion.IonType)1