samples/composition/src-api2.0-runtime/org/apidesign/math/Arithmetica.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Feb 2009 17:30:06 +0100
changeset 321 06bf3a32eaa0
parent 210 samples/composition/src-api2.0-runtime/api/Arithmetica.java@acf2c31e22d4
child 323 4e59b6b0e907
permissions -rw-r--r--
Moving code to org.apidesign.math package
jtulach@321
     1
package org.apidesign.math;
jtulach@155
     2
jtulach@321
     3
import org.apidesign.math.Arithmetica;
jtulach@155
     4
import org.apidesign.runtime.check.RuntimeCheck;
jtulach@155
     5
jtulach@155
     6
/** Class to simplify arithmetical operations, improved version to compute
jtulach@155
     7
 * the sum for ranges, but only if the virtual machine is configured to
jtulach@155
     8
 * run in incompatible mode.
jtulach@155
     9
 *
jtulach@155
    10
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jtulach@155
    11
 * @version 2.0
jtulach@155
    12
 */
jtulach@155
    13
public class Arithmetica {
jtulach@155
    14
    public int sumTwo(int one, int second) {
jtulach@155
    15
        return one + second;
jtulach@155
    16
    }
jtulach@155
    17
    
jtulach@155
    18
    public int sumAll(int... numbers) {
jtulach@187
    19
        if (numbers.length == 0) {
jtulach@187
    20
            return 0;
jtulach@187
    21
        }
jtulach@155
    22
        int sum = numbers[0];
jtulach@155
    23
        for (int i = 1; i < numbers.length; i++) {
jtulach@155
    24
            sum = sumTwo(sum, numbers[i]);
jtulach@155
    25
        }
jtulach@155
    26
        return sum;
jtulach@155
    27
    }
jtulach@155
    28
    
jtulach@155
    29
    public int sumRange(int from, int to) {
jtulach@155
    30
        if (calledByV2AwareLoader()) {
jtulach@155
    31
            return sumRange2(from, to);
jtulach@155
    32
        } else {
jtulach@155
    33
            return sumRange1(from, to);
jtulach@155
    34
        }
jtulach@155
    35
    }
jtulach@155
    36
jtulach@155
    37
    private int sumRange1(int from, int to) {
jtulach@155
    38
        int len = to - from;
jtulach@210
    39
        if (len < 0) {
jtulach@210
    40
            len = -len;
jtulach@210
    41
            from = to;
jtulach@210
    42
        }
jtulach@155
    43
        int[] array = new int[len + 1];
jtulach@155
    44
        for (int i = 0; i <= len; i++) {
jtulach@155
    45
            array[i] = from + i;
jtulach@155
    46
        }
jtulach@155
    47
        return sumAll(array);
jtulach@155
    48
    }
jtulach@155
    49
    
jtulach@155
    50
    private int sumRange2(int from, int to) {
jtulach@210
    51
        return (from + to) * (Math.abs(to - from) + 1) / 2;
jtulach@155
    52
    }
jtulach@155
    53
jtulach@155
    54
    private static boolean calledByV2AwareLoader() {
jtulach@155
    55
        // BEGIN: design.composition.arith2.6.runtime
jtulach@155
    56
        StackTraceElement[] arr = Thread.currentThread().getStackTrace();
jtulach@155
    57
        ClassLoader myLoader = Arithmetica.class.getClassLoader();
jtulach@155
    58
        for (int i = 0; i < arr.length; i++) {
jtulach@155
    59
            ClassLoader caller = arr[i].getClass().getClassLoader();
jtulach@155
    60
            if (myLoader == caller) {
jtulach@155
    61
                continue;
jtulach@155
    62
            }
jtulach@155
    63
            if (RuntimeCheck.requiresAtLeast("2.6", "api.Arithmetica", caller)) {
jtulach@155
    64
                return true;
jtulach@155
    65
            }
jtulach@155
    66
            return false;
jtulach@155
    67
        }
jtulach@155
    68
        return true;
jtulach@155
    69
        // END: design.composition.arith2.6.runtime
jtulach@155
    70
    }
jtulach@155
    71
    
jtulach@155
    72
}