You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2016/09/28 08:54:53 UTC

[4/4] commons-rng git commit: Moved ProviderBuilder to the base package and made it package private

Moved ProviderBuilder to the base package and made it package private


Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/fd22dc61
Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/fd22dc61
Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/fd22dc61

Branch: refs/heads/master
Commit: fd22dc61fd0ea75563ed893ad4857595de58a5dc
Parents: 3dddd64
Author: Emmanuel Bourg <eb...@apache.org>
Authored: Wed Sep 28 10:40:08 2016 +0200
Committer: Emmanuel Bourg <eb...@apache.org>
Committed: Wed Sep 28 10:40:08 2016 +0200

----------------------------------------------------------------------
 .../org/apache/commons/rng/ProviderBuilder.java | 379 ++++++++++++++++++
 .../org/apache/commons/rng/RandomSource.java    |   2 +-
 .../commons/rng/internal/ProviderBuilder.java   | 380 -------------------
 .../commons/rng/internal/package-info.java      |   2 +-
 4 files changed, 381 insertions(+), 382 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/ProviderBuilder.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/rng/ProviderBuilder.java b/src/main/java/org/apache/commons/rng/ProviderBuilder.java
new file mode 100644
index 0000000..76f1668
--- /dev/null
+++ b/src/main/java/org/apache/commons/rng/ProviderBuilder.java
@@ -0,0 +1,379 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.commons.rng;
+
+import java.util.Arrays;
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Map;
+import java.util.HashMap;
+import java.lang.reflect.Constructor;
+import java.lang.reflect.InvocationTargetException;
+
+import org.apache.commons.rng.internal.util.SeedFactory;
+import org.apache.commons.rng.internal.util.NoOpConverter;
+import org.apache.commons.rng.internal.util.Int2Long;
+import org.apache.commons.rng.internal.util.Long2Int;
+import org.apache.commons.rng.internal.util.Long2IntArray;
+import org.apache.commons.rng.internal.util.Long2LongArray;
+import org.apache.commons.rng.internal.util.IntArray2LongArray;
+import org.apache.commons.rng.internal.util.LongArray2IntArray;
+import org.apache.commons.rng.internal.util.LongArray2Long;
+import org.apache.commons.rng.internal.util.IntArray2Int;
+import org.apache.commons.rng.internal.util.ByteArray2IntArray;
+import org.apache.commons.rng.internal.util.ByteArray2LongArray;
+import org.apache.commons.rng.internal.util.SeedConverter;
+import org.apache.commons.rng.internal.util.SeedConverterComposer;
+import org.apache.commons.rng.internal.source32.JDKRandom;
+import org.apache.commons.rng.internal.source32.Well512a;
+import org.apache.commons.rng.internal.source32.Well1024a;
+import org.apache.commons.rng.internal.source32.Well19937a;
+import org.apache.commons.rng.internal.source32.Well19937c;
+import org.apache.commons.rng.internal.source32.Well44497a;
+import org.apache.commons.rng.internal.source32.Well44497b;
+import org.apache.commons.rng.internal.source32.ISAACRandom;
+import org.apache.commons.rng.internal.source32.MersenneTwister;
+import org.apache.commons.rng.internal.source32.MultiplyWithCarry256;
+import org.apache.commons.rng.internal.source32.KISSRandom;
+import org.apache.commons.rng.internal.source64.SplitMix64;
+import org.apache.commons.rng.internal.source64.XorShift1024Star;
+import org.apache.commons.rng.internal.source64.TwoCmres;
+import org.apache.commons.rng.internal.source64.MersenneTwister64;
+
+/**
+ * RNG builder.
+ * <p>
+ * It uses reflection to find the factory method of the RNG implementation,
+ * and performs seed type conversions.
+ * </p>
+ */
+class ProviderBuilder {
+    /** Error message. */
+    private static final String INTERNAL_ERROR_MSG = "Internal error: Please file a bug report";
+    /** Length of the seed array (for random seed). */
+    private static final int RANDOM_SEED_ARRAY_SIZE = 128;
+    /** Seed converter. */
+    private static final Long2Int LONG_TO_INT = new Long2Int();
+    /** Seed converter. */
+    private static final Int2Long INT_TO_LONG = new Int2Long();
+    /** Seed converter. */
+    private static final Long2IntArray LONG_TO_INT_ARRAY = new Long2IntArray(RANDOM_SEED_ARRAY_SIZE);
+    /** Seed converter. */
+    private static final Long2LongArray LONG_TO_LONG_ARRAY = new Long2LongArray(RANDOM_SEED_ARRAY_SIZE);
+    /** Seed converter. */
+    private static final LongArray2Long LONG_ARRAY_TO_LONG = new LongArray2Long();
+    /** Seed converter. */
+    private static final IntArray2Int INT_ARRAY_TO_INT = new IntArray2Int();
+    /** Seed converter. */
+    private static final LongArray2IntArray LONG_ARRAY_TO_INT_ARRAY = new LongArray2IntArray();
+    /** Seed converter. */
+    private static final IntArray2LongArray INT_ARRAY_TO_LONG_ARRAY = new IntArray2LongArray();
+    /** Seed converter. */
+    private static final ByteArray2IntArray BYTE_ARRAY_TO_INT_ARRAY = new ByteArray2IntArray();
+    /** Seed converter. */
+    private static final ByteArray2LongArray BYTE_ARRAY_TO_LONG_ARRAY = new ByteArray2LongArray();
+    /** Map to convert "Integer" seeds. */
+    private static final Map<Class<?>, SeedConverter<Integer,?>> CONV_INT =
+        new HashMap<Class<?>, SeedConverter<Integer,?>>();
+    /** Map to convert "int[]" seeds. */
+    private static final Map<Class<?>, SeedConverter<int[],?>> CONV_INT_ARRAY =
+        new HashMap<Class<?>, SeedConverter<int[],?>>();
+    /** Map to convert "Long" seeds. */
+    private static final Map<Class<?>, SeedConverter<Long,?>> CONV_LONG =
+        new HashMap<Class<?>, SeedConverter<Long,?>>();
+    /** Map to convert "long[]" seeds. */
+    private static final Map<Class<?>, SeedConverter<long[],?>> CONV_LONG_ARRAY =
+        new HashMap<Class<?>, SeedConverter<long[],?>>();
+    /** Map to convert "byte[]" seeds. */
+    private static final Map<Class<?>, SeedConverter<byte[],?>> CONV_BYTE_ARRAY =
+        new HashMap<Class<?>, SeedConverter<byte[],?>>();
+
+    static {
+        // Input seed type is "Long".
+        // Key is the implementation's "native" seed type.
+        CONV_LONG.put(Integer.class, LONG_TO_INT);
+        CONV_LONG.put(Long.class, new NoOpConverter<Long>());
+        CONV_LONG.put(int[].class, LONG_TO_INT_ARRAY);
+        CONV_LONG.put(long[].class, LONG_TO_LONG_ARRAY);
+
+        // Input seed type is "Integer".
+        // Key is the implementation's "native" seed type.
+        CONV_INT.put(Integer.class, new NoOpConverter<Integer>());
+        CONV_INT.put(Long.class, INT_TO_LONG);
+        CONV_INT.put(int[].class, new SeedConverterComposer<Integer,Long,int[]>(INT_TO_LONG, LONG_TO_INT_ARRAY));
+        CONV_INT.put(long[].class, new SeedConverterComposer<Integer,Long,long[]>(INT_TO_LONG, LONG_TO_LONG_ARRAY));
+
+        // Input seed type is "int[]".
+        // Key is the implementation's "native" seed type.
+        CONV_INT_ARRAY.put(Integer.class, INT_ARRAY_TO_INT);
+        CONV_INT_ARRAY.put(Long.class, new SeedConverterComposer<int[],Integer,Long>(INT_ARRAY_TO_INT, INT_TO_LONG));
+        CONV_INT_ARRAY.put(int[].class, new NoOpConverter<int[]>());
+        CONV_INT_ARRAY.put(long[].class, INT_ARRAY_TO_LONG_ARRAY);
+
+        // Input seed type is "long[]".
+        // Key is the implementation's "native" seed type.
+        CONV_LONG_ARRAY.put(Integer.class, new SeedConverterComposer<long[],Long,Integer>(LONG_ARRAY_TO_LONG, LONG_TO_INT));
+        CONV_LONG_ARRAY.put(Long.class, LONG_ARRAY_TO_LONG);
+        CONV_LONG_ARRAY.put(int[].class, LONG_ARRAY_TO_INT_ARRAY);
+        CONV_LONG_ARRAY.put(long[].class, new NoOpConverter<long[]>());
+
+        // Input seed type is "byte[]".
+        // Key is the implementation's "native" seed type.
+        CONV_BYTE_ARRAY.put(Integer.class, new SeedConverterComposer<byte[],int[],Integer>(BYTE_ARRAY_TO_INT_ARRAY, INT_ARRAY_TO_INT));
+        CONV_BYTE_ARRAY.put(Long.class, new SeedConverterComposer<byte[],long[],Long>(BYTE_ARRAY_TO_LONG_ARRAY, LONG_ARRAY_TO_LONG));
+        CONV_BYTE_ARRAY.put(int[].class, BYTE_ARRAY_TO_INT_ARRAY);
+        CONV_BYTE_ARRAY.put(long[].class, BYTE_ARRAY_TO_LONG_ARRAY);
+    }
+
+    /**
+     * Class only contains static method.
+     */
+    private ProviderBuilder() {}
+
+    /**
+     * Creates a RNG instance.
+     *
+     * @param source RNG specification.
+     * @param seed Seed value.  It can be {@code null} (in which case a
+     * random value will be used).
+     * @param args Additional arguments to the implementation's constructor.
+     * @return a new RNG instance.
+     * @throws UnsupportedOperationException if the seed type is invalid.
+     */
+    public static UniformRandomProvider create(RandomSourceInternal source,
+                                               Object seed,
+                                               Object[] args) {
+        // Convert seed to native type.
+        final Object nativeSeed = createSeed(source, seed);
+
+        // Build a single array with all the arguments to be passed
+        // (in the right order) to the constructor.
+        final List<Object> all = new ArrayList<Object>();
+        all.add(nativeSeed);
+        if (args != null) {
+            all.addAll(Arrays.asList(args));
+        }
+
+        // Instantiate.
+        return create(createConstructor(source), all.toArray());
+    }
+
+    /**
+     * Creates a native seed from any of the supported seed types.
+     *
+     * @param source Source.
+     * @param seed Input seed.
+     * @return the native seed.
+     * @throw UnsupportedOperationException if the {@code seed} type is invalid.
+     */
+    private static Object createSeed(RandomSourceInternal source,
+                                     Object seed) {
+        Object nativeSeed = null;
+
+        if (seed == null) {
+            // Create a random seed of the appropriate native type.
+
+            if (source.getSeed().equals(Integer.class)) {
+                nativeSeed = SeedFactory.createInt();
+            } else if (source.getSeed().equals(Long.class)) {
+                nativeSeed = SeedFactory.createLong();
+            } else if (source.getSeed().equals(int[].class)) {
+                nativeSeed = SeedFactory.createIntArray(RANDOM_SEED_ARRAY_SIZE);
+            } else if (source.getSeed().equals(long[].class)) {
+                nativeSeed = SeedFactory.createLongArray(RANDOM_SEED_ARRAY_SIZE);
+            } else {
+                // Source's native type is not handled.
+                throw new IllegalStateException(INTERNAL_ERROR_MSG);
+            }
+        } else {
+            // Convert to native type.
+
+            if (seed instanceof Integer) {
+                nativeSeed = CONV_INT.get(source.getSeed()).convert((Integer) seed);
+            } else if (seed instanceof Long) {
+                nativeSeed = CONV_LONG.get(source.getSeed()).convert((Long) seed);
+            } else if (seed instanceof int[]) {
+                nativeSeed = CONV_INT_ARRAY.get(source.getSeed()).convert((int[]) seed);
+            } else if (seed instanceof long[]) {
+                nativeSeed = CONV_LONG_ARRAY.get(source.getSeed()).convert((long[]) seed);
+            } else if (seed instanceof byte[]) {
+                nativeSeed = CONV_BYTE_ARRAY.get(source.getSeed()).convert((byte[]) seed);
+            }
+
+            if (nativeSeed == null) {
+                // Since the input seed was not null, getting here means that
+                // no suitable converter is present in the maps.
+                throw new UnsupportedOperationException("Unrecognized seed type");
+            }
+
+            if (!source.isNativeSeed(nativeSeed)) {
+                // Conversion setup is wrong.
+                throw new IllegalStateException(INTERNAL_ERROR_MSG);
+            }
+        }
+
+        return nativeSeed;
+    }
+
+    /**
+     * Creates a constructor.
+     *
+     * @param source RNG specification.
+     * @return a RNG constructor.
+     */
+    private static Constructor<?> createConstructor(RandomSourceInternal source) {
+        try {
+            return source.getRng().getConstructor(source.getArgs());
+        } catch (NoSuchMethodException e) {
+            // Info in "RandomSourceInternal" is inconsistent with the
+            // constructor of the implementation.
+            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
+        }
+    }
+
+    /**
+     * Creates a RNG.
+     *
+     * @param rng RNG specification.
+     * @param args Arguments to the implementation's constructor.
+     * @return a new RNG instance.
+     */
+    private static UniformRandomProvider create(Constructor<?> rng,
+                                                Object[] args) {
+        try {
+            return (UniformRandomProvider) rng.newInstance(args);
+        } catch (InvocationTargetException e) {
+            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
+        } catch (InstantiationException e) {
+            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
+        } catch (IllegalAccessException e) {
+            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
+        }
+    }
+
+    /**
+     * Identifiers of the generators.
+     */
+    public enum RandomSourceInternal {
+        /** Source of randomness is {@link JDKRandom}. */
+        JDK(JDKRandom.class,
+            Long.class),
+        /** Source of randomness is {@link Well512a}. */
+        WELL_512_A(Well512a.class,
+                   int[].class),
+        /** Source of randomness is {@link Well1024a}. */
+        WELL_1024_A(Well1024a.class,
+                    int[].class),
+        /** Source of randomness is {@link Well19937a}. */
+        WELL_19937_A(Well19937a.class,
+                     int[].class),
+        /** Source of randomness is {@link Well19937c}. */
+        WELL_19937_C(Well19937c.class,
+                     int[].class),
+        /** Source of randomness is {@link Well44497a}. */
+        WELL_44497_A(Well44497a.class,
+                     int[].class),
+        /** Source of randomness is {@link Well44497b}. */
+        WELL_44497_B(Well44497b.class,
+                     int[].class),
+        /** Source of randomness is {@link MersenneTwister}. */
+        MT(MersenneTwister.class,
+           int[].class),
+        /** Source of randomness is {@link ISAACRandom}. */
+        ISAAC(ISAACRandom.class,
+              int[].class),
+        /** Source of randomness is {@link SplitMix64}. */
+        SPLIT_MIX_64(SplitMix64.class,
+                     Long.class),
+        /** Source of randomness is {@link XorShift1024Star}. */
+        XOR_SHIFT_1024_S(XorShift1024Star.class,
+                         long[].class),
+        /** Source of randomness is {@link TwoCmres}. */
+        TWO_CMRES(TwoCmres.class,
+                  Integer.class),
+        /**
+         * Source of randomness is {@link TwoCmres} with explicit selection
+         * of the two subcycle generators.
+         */
+        TWO_CMRES_SELECT(TwoCmres.class,
+                         Integer.class,
+                         Integer.TYPE,
+                         Integer.TYPE),
+        /** Source of randomness is {@link MersenneTwister64}. */
+        MT_64(MersenneTwister64.class,
+              long[].class),
+        /** Source of randomness is {@link MultiplyWithCarry256}. */
+        MWC_256(MultiplyWithCarry256.class,
+                int[].class),
+        /** Source of randomness is {@link KISSRandom}. */
+        KISS(KISSRandom.class,
+             int[].class);
+
+        /** Source type. */
+        private final Class<? extends UniformRandomProvider> rng;
+        /** Data needed to build the generator. */
+        private final Class<?>[] args;
+
+        /**
+         * @param rng Source type.
+         * @param args Data needed to create a generator instance.
+         * The first element must be the native seed type.
+         */
+        RandomSourceInternal(Class<? extends UniformRandomProvider> rng,
+                             Class<?> ... args) {
+            this.rng = rng;
+            this.args = Arrays.copyOf(args, args.length);
+        }
+
+        /**
+         * @return the source type.
+         */
+        public Class<?> getRng() {
+            return rng;
+        }
+
+        /**
+         * @return the seed type.
+         */
+        Class<?> getSeed() {
+            return args[0];
+        }
+
+        /**
+         * @return the data needed to build the generator.
+         */
+        Class<?>[] getArgs() {
+            return args;
+        }
+
+        /**
+         * Checks whether the type of given {@code seed} is the native type
+         * of the implementation.
+         *
+         * @param <SEED> Seed type.
+         *
+         * @param seed Seed value.
+         * @return {@code true} if the seed can be passed to the builder
+         * for this RNG type.
+         */
+        public <SEED> boolean isNativeSeed(SEED seed) {
+            return seed == null ?
+                false :
+                getSeed().equals(seed.getClass());
+        }
+    }
+}

http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/RandomSource.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/rng/RandomSource.java b/src/main/java/org/apache/commons/rng/RandomSource.java
index 27b67bb..efacdca 100644
--- a/src/main/java/org/apache/commons/rng/RandomSource.java
+++ b/src/main/java/org/apache/commons/rng/RandomSource.java
@@ -17,7 +17,7 @@
 package org.apache.commons.rng;
 
 import java.util.Arrays;
-import org.apache.commons.rng.internal.ProviderBuilder;
+
 import org.apache.commons.rng.internal.BaseProvider;
 import org.apache.commons.rng.internal.util.SeedFactory;
 

http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java b/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java
deleted file mode 100644
index 93ad3d9..0000000
--- a/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java
+++ /dev/null
@@ -1,380 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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.commons.rng.internal;
-
-import java.util.Arrays;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.HashMap;
-import java.lang.reflect.Constructor;
-import java.lang.reflect.InvocationTargetException;
-
-import org.apache.commons.rng.UniformRandomProvider;
-import org.apache.commons.rng.internal.util.SeedFactory;
-import org.apache.commons.rng.internal.util.NoOpConverter;
-import org.apache.commons.rng.internal.util.Int2Long;
-import org.apache.commons.rng.internal.util.Long2Int;
-import org.apache.commons.rng.internal.util.Long2IntArray;
-import org.apache.commons.rng.internal.util.Long2LongArray;
-import org.apache.commons.rng.internal.util.IntArray2LongArray;
-import org.apache.commons.rng.internal.util.LongArray2IntArray;
-import org.apache.commons.rng.internal.util.LongArray2Long;
-import org.apache.commons.rng.internal.util.IntArray2Int;
-import org.apache.commons.rng.internal.util.ByteArray2IntArray;
-import org.apache.commons.rng.internal.util.ByteArray2LongArray;
-import org.apache.commons.rng.internal.util.SeedConverter;
-import org.apache.commons.rng.internal.util.SeedConverterComposer;
-import org.apache.commons.rng.internal.source32.JDKRandom;
-import org.apache.commons.rng.internal.source32.Well512a;
-import org.apache.commons.rng.internal.source32.Well1024a;
-import org.apache.commons.rng.internal.source32.Well19937a;
-import org.apache.commons.rng.internal.source32.Well19937c;
-import org.apache.commons.rng.internal.source32.Well44497a;
-import org.apache.commons.rng.internal.source32.Well44497b;
-import org.apache.commons.rng.internal.source32.ISAACRandom;
-import org.apache.commons.rng.internal.source32.MersenneTwister;
-import org.apache.commons.rng.internal.source32.MultiplyWithCarry256;
-import org.apache.commons.rng.internal.source32.KISSRandom;
-import org.apache.commons.rng.internal.source64.SplitMix64;
-import org.apache.commons.rng.internal.source64.XorShift1024Star;
-import org.apache.commons.rng.internal.source64.TwoCmres;
-import org.apache.commons.rng.internal.source64.MersenneTwister64;
-
-/**
- * RNG builder.
- * <p>
- * It uses reflection to find the factory method of the RNG implementation,
- * and performs seed type conversions.
- * </p>
- */
-public class ProviderBuilder {
-    /** Error message. */
-    private static final String INTERNAL_ERROR_MSG = "Internal error: Please file a bug report";
-    /** Length of the seed array (for random seed). */
-    private static final int RANDOM_SEED_ARRAY_SIZE = 128;
-    /** Seed converter. */
-    private static final Long2Int LONG_TO_INT = new Long2Int();
-    /** Seed converter. */
-    private static final Int2Long INT_TO_LONG = new Int2Long();
-    /** Seed converter. */
-    private static final Long2IntArray LONG_TO_INT_ARRAY = new Long2IntArray(RANDOM_SEED_ARRAY_SIZE);
-    /** Seed converter. */
-    private static final Long2LongArray LONG_TO_LONG_ARRAY = new Long2LongArray(RANDOM_SEED_ARRAY_SIZE);
-    /** Seed converter. */
-    private static final LongArray2Long LONG_ARRAY_TO_LONG = new LongArray2Long();
-    /** Seed converter. */
-    private static final IntArray2Int INT_ARRAY_TO_INT = new IntArray2Int();
-    /** Seed converter. */
-    private static final LongArray2IntArray LONG_ARRAY_TO_INT_ARRAY = new LongArray2IntArray();
-    /** Seed converter. */
-    private static final IntArray2LongArray INT_ARRAY_TO_LONG_ARRAY = new IntArray2LongArray();
-    /** Seed converter. */
-    private static final ByteArray2IntArray BYTE_ARRAY_TO_INT_ARRAY = new ByteArray2IntArray();
-    /** Seed converter. */
-    private static final ByteArray2LongArray BYTE_ARRAY_TO_LONG_ARRAY = new ByteArray2LongArray();
-    /** Map to convert "Integer" seeds. */
-    private static final Map<Class<?>, SeedConverter<Integer,?>> CONV_INT =
-        new HashMap<Class<?>, SeedConverter<Integer,?>>();
-    /** Map to convert "int[]" seeds. */
-    private static final Map<Class<?>, SeedConverter<int[],?>> CONV_INT_ARRAY =
-        new HashMap<Class<?>, SeedConverter<int[],?>>();
-    /** Map to convert "Long" seeds. */
-    private static final Map<Class<?>, SeedConverter<Long,?>> CONV_LONG =
-        new HashMap<Class<?>, SeedConverter<Long,?>>();
-    /** Map to convert "long[]" seeds. */
-    private static final Map<Class<?>, SeedConverter<long[],?>> CONV_LONG_ARRAY =
-        new HashMap<Class<?>, SeedConverter<long[],?>>();
-    /** Map to convert "byte[]" seeds. */
-    private static final Map<Class<?>, SeedConverter<byte[],?>> CONV_BYTE_ARRAY =
-        new HashMap<Class<?>, SeedConverter<byte[],?>>();
-
-    static {
-        // Input seed type is "Long".
-        // Key is the implementation's "native" seed type.
-        CONV_LONG.put(Integer.class, LONG_TO_INT);
-        CONV_LONG.put(Long.class, new NoOpConverter<Long>());
-        CONV_LONG.put(int[].class, LONG_TO_INT_ARRAY);
-        CONV_LONG.put(long[].class, LONG_TO_LONG_ARRAY);
-
-        // Input seed type is "Integer".
-        // Key is the implementation's "native" seed type.
-        CONV_INT.put(Integer.class, new NoOpConverter<Integer>());
-        CONV_INT.put(Long.class, INT_TO_LONG);
-        CONV_INT.put(int[].class, new SeedConverterComposer<Integer,Long,int[]>(INT_TO_LONG, LONG_TO_INT_ARRAY));
-        CONV_INT.put(long[].class, new SeedConverterComposer<Integer,Long,long[]>(INT_TO_LONG, LONG_TO_LONG_ARRAY));
-
-        // Input seed type is "int[]".
-        // Key is the implementation's "native" seed type.
-        CONV_INT_ARRAY.put(Integer.class, INT_ARRAY_TO_INT);
-        CONV_INT_ARRAY.put(Long.class, new SeedConverterComposer<int[],Integer,Long>(INT_ARRAY_TO_INT, INT_TO_LONG));
-        CONV_INT_ARRAY.put(int[].class, new NoOpConverter<int[]>());
-        CONV_INT_ARRAY.put(long[].class, INT_ARRAY_TO_LONG_ARRAY);
-
-        // Input seed type is "long[]".
-        // Key is the implementation's "native" seed type.
-        CONV_LONG_ARRAY.put(Integer.class, new SeedConverterComposer<long[],Long,Integer>(LONG_ARRAY_TO_LONG, LONG_TO_INT));
-        CONV_LONG_ARRAY.put(Long.class, LONG_ARRAY_TO_LONG);
-        CONV_LONG_ARRAY.put(int[].class, LONG_ARRAY_TO_INT_ARRAY);
-        CONV_LONG_ARRAY.put(long[].class, new NoOpConverter<long[]>());
-
-        // Input seed type is "byte[]".
-        // Key is the implementation's "native" seed type.
-        CONV_BYTE_ARRAY.put(Integer.class, new SeedConverterComposer<byte[],int[],Integer>(BYTE_ARRAY_TO_INT_ARRAY, INT_ARRAY_TO_INT));
-        CONV_BYTE_ARRAY.put(Long.class, new SeedConverterComposer<byte[],long[],Long>(BYTE_ARRAY_TO_LONG_ARRAY, LONG_ARRAY_TO_LONG));
-        CONV_BYTE_ARRAY.put(int[].class, BYTE_ARRAY_TO_INT_ARRAY);
-        CONV_BYTE_ARRAY.put(long[].class, BYTE_ARRAY_TO_LONG_ARRAY);
-    }
-
-    /**
-     * Class only contains static method.
-     */
-    private ProviderBuilder() {}
-
-    /**
-     * Creates a RNG instance.
-     *
-     * @param source RNG specification.
-     * @param seed Seed value.  It can be {@code null} (in which case a
-     * random value will be used).
-     * @param args Additional arguments to the implementation's constructor.
-     * @return a new RNG instance.
-     * @throws UnsupportedOperationException if the seed type is invalid.
-     */
-    public static UniformRandomProvider create(RandomSourceInternal source,
-                                               Object seed,
-                                               Object[] args) {
-        // Convert seed to native type.
-        final Object nativeSeed = createSeed(source, seed);
-
-        // Build a single array with all the arguments to be passed
-        // (in the right order) to the constructor.
-        final List<Object> all = new ArrayList<Object>();
-        all.add(nativeSeed);
-        if (args != null) {
-            all.addAll(Arrays.asList(args));
-        }
-
-        // Instantiate.
-        return create(createConstructor(source), all.toArray());
-    }
-
-    /**
-     * Creates a native seed from any of the supported seed types.
-     *
-     * @param source Source.
-     * @param seed Input seed.
-     * @return the native seed.
-     * @throw UnsupportedOperationException if the {@code seed} type is invalid.
-     */
-    private static Object createSeed(RandomSourceInternal source,
-                                     Object seed) {
-        Object nativeSeed = null;
-
-        if (seed == null) {
-            // Create a random seed of the appropriate native type.
-
-            if (source.getSeed().equals(Integer.class)) {
-                nativeSeed = SeedFactory.createInt();
-            } else if (source.getSeed().equals(Long.class)) {
-                nativeSeed = SeedFactory.createLong();
-            } else if (source.getSeed().equals(int[].class)) {
-                nativeSeed = SeedFactory.createIntArray(RANDOM_SEED_ARRAY_SIZE);
-            } else if (source.getSeed().equals(long[].class)) {
-                nativeSeed = SeedFactory.createLongArray(RANDOM_SEED_ARRAY_SIZE);
-            } else {
-                // Source's native type is not handled.
-                throw new IllegalStateException(INTERNAL_ERROR_MSG);
-            }
-        } else {
-            // Convert to native type.
-
-            if (seed instanceof Integer) {
-                nativeSeed = CONV_INT.get(source.getSeed()).convert((Integer) seed);
-            } else if (seed instanceof Long) {
-                nativeSeed = CONV_LONG.get(source.getSeed()).convert((Long) seed);
-            } else if (seed instanceof int[]) {
-                nativeSeed = CONV_INT_ARRAY.get(source.getSeed()).convert((int[]) seed);
-            } else if (seed instanceof long[]) {
-                nativeSeed = CONV_LONG_ARRAY.get(source.getSeed()).convert((long[]) seed);
-            } else if (seed instanceof byte[]) {
-                nativeSeed = CONV_BYTE_ARRAY.get(source.getSeed()).convert((byte[]) seed);
-            }
-
-            if (nativeSeed == null) {
-                // Since the input seed was not null, getting here means that
-                // no suitable converter is present in the maps.
-                throw new UnsupportedOperationException("Unrecognized seed type");
-            }
-
-            if (!source.isNativeSeed(nativeSeed)) {
-                // Conversion setup is wrong.
-                throw new IllegalStateException(INTERNAL_ERROR_MSG);
-            }
-        }
-
-        return nativeSeed;
-    }
-
-    /**
-     * Creates a constructor.
-     *
-     * @param source RNG specification.
-     * @return a RNG constructor.
-     */
-    private static Constructor<?> createConstructor(RandomSourceInternal source) {
-        try {
-            return source.getRng().getConstructor(source.getArgs());
-        } catch (NoSuchMethodException e) {
-            // Info in "RandomSourceInternal" is inconsistent with the
-            // constructor of the implementation.
-            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
-        }
-    }
-
-    /**
-     * Creates a RNG.
-     *
-     * @param rng RNG specification.
-     * @param args Arguments to the implementation's constructor.
-     * @return a new RNG instance.
-     */
-    private static UniformRandomProvider create(Constructor<?> rng,
-                                                Object[] args) {
-        try {
-            return (UniformRandomProvider) rng.newInstance(args);
-        } catch (InvocationTargetException e) {
-            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
-        } catch (InstantiationException e) {
-            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
-        } catch (IllegalAccessException e) {
-            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
-        }
-    }
-
-    /**
-     * Identifiers of the generators.
-     */
-    public enum RandomSourceInternal {
-        /** Source of randomness is {@link JDKRandom}. */
-        JDK(JDKRandom.class,
-            Long.class),
-        /** Source of randomness is {@link Well512a}. */
-        WELL_512_A(Well512a.class,
-                   int[].class),
-        /** Source of randomness is {@link Well1024a}. */
-        WELL_1024_A(Well1024a.class,
-                    int[].class),
-        /** Source of randomness is {@link Well19937a}. */
-        WELL_19937_A(Well19937a.class,
-                     int[].class),
-        /** Source of randomness is {@link Well19937c}. */
-        WELL_19937_C(Well19937c.class,
-                     int[].class),
-        /** Source of randomness is {@link Well44497a}. */
-        WELL_44497_A(Well44497a.class,
-                     int[].class),
-        /** Source of randomness is {@link Well44497b}. */
-        WELL_44497_B(Well44497b.class,
-                     int[].class),
-        /** Source of randomness is {@link MersenneTwister}. */
-        MT(MersenneTwister.class,
-           int[].class),
-        /** Source of randomness is {@link ISAACRandom}. */
-        ISAAC(ISAACRandom.class,
-              int[].class),
-        /** Source of randomness is {@link SplitMix64}. */
-        SPLIT_MIX_64(SplitMix64.class,
-                     Long.class),
-        /** Source of randomness is {@link XorShift1024Star}. */
-        XOR_SHIFT_1024_S(XorShift1024Star.class,
-                         long[].class),
-        /** Source of randomness is {@link TwoCmres}. */
-        TWO_CMRES(TwoCmres.class,
-                  Integer.class),
-        /**
-         * Source of randomness is {@link TwoCmres} with explicit selection
-         * of the two subcycle generators.
-         */
-        TWO_CMRES_SELECT(TwoCmres.class,
-                         Integer.class,
-                         Integer.TYPE,
-                         Integer.TYPE),
-        /** Source of randomness is {@link MersenneTwister64}. */
-        MT_64(MersenneTwister64.class,
-              long[].class),
-        /** Source of randomness is {@link MultiplyWithCarry256}. */
-        MWC_256(MultiplyWithCarry256.class,
-                int[].class),
-        /** Source of randomness is {@link KISSRandom}. */
-        KISS(KISSRandom.class,
-             int[].class);
-
-        /** Source type. */
-        private final Class<? extends UniformRandomProvider> rng;
-        /** Data needed to build the generator. */
-        private final Class<?>[] args;
-
-        /**
-         * @param rng Source type.
-         * @param args Data needed to create a generator instance.
-         * The first element must be the native seed type.
-         */
-        RandomSourceInternal(Class<? extends UniformRandomProvider> rng,
-                             Class<?> ... args) {
-            this.rng = rng;
-            this.args = Arrays.copyOf(args, args.length);
-        }
-
-        /**
-         * @return the source type.
-         */
-        public Class<?> getRng() {
-            return rng;
-        }
-
-        /**
-         * @return the seed type.
-         */
-        Class<?> getSeed() {
-            return args[0];
-        }
-
-        /**
-         * @return the data needed to build the generator.
-         */
-        Class<?>[] getArgs() {
-            return args;
-        }
-
-        /**
-         * Checks whether the type of given {@code seed} is the native type
-         * of the implementation.
-         *
-         * @param <SEED> Seed type.
-         *
-         * @param seed Seed value.
-         * @return {@code true} if the seed can be passed to the builder
-         * for this RNG type.
-         */
-        public <SEED> boolean isNativeSeed(SEED seed) {
-            return seed == null ?
-                false :
-                getSeed().equals(seed.getClass());
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/internal/package-info.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/rng/internal/package-info.java b/src/main/java/org/apache/commons/rng/internal/package-info.java
index dba9e64..e3590c9 100644
--- a/src/main/java/org/apache/commons/rng/internal/package-info.java
+++ b/src/main/java/org/apache/commons/rng/internal/package-info.java
@@ -43,7 +43,7 @@
  *
  * <p>
  * Each implementation must have an identifier in
- * {@link org.apache.commons.rng.internal.ProviderBuilder.RandomSourceInternal}
+ * {@link org.apache.commons.rng.ProviderBuilder.RandomSourceInternal}
  * which must be referred to from the {@link org.apache.commons.rng.RandomSource public API}.
  * </p>
  */


Re: [4/4] commons-rng git commit: Moved ProviderBuilder to the base package and made it package private

Posted by Gilles <gi...@harfang.homelinux.org>.
On Wed, 28 Sep 2016 19:55:21 -0500, Brent Worden wrote:
> On Wed, Sep 28, 2016 at 6:08 PM, Emmanuel Bourg <eb...@apache.org> 
> wrote:
>
>> Le 28/09/2016 � 17:11, Gilles a �crit :
>>
>> > This what you've done, but it doesn't say why.
>>
>> The class is only used by RandomSource, moving it to the same 
>> package
>> and marking it package private ensures that it can't be mistakenly 
>> used
>> (even if it's marked as internal).
>>
>> Emmanuel Bourg
>>
>>
> If it is only used by RandomSource, would making ProviderBuilder a 
> private,
> inner class provide better isolation and further prevent misuse?

Misuse cannot be prevented; if someone really wants to instantiate it,
he can. [And "misuse" is a strong word: what can one do with that 
class?
Why would someone use it in a way that brings no benefit whatsoever, a
way that would only jeopardize the future of his application?]

The point of putting "non-API" inside an "internal" package is to
clarify the design as much as possible:
* Users, don't use what's in "internal"!
* Contributors, you may need to fiddle with what's in there!

Singling out a class on the basis that in that one case we can use
the package-private feature blurs the design for no significant
advantage.

The same issue of protecting access is posed for all classes in the
"internal" package.
We prevent usage of that one class but not of the others.
If someone wants to shoot himself in the foot, he can do so with
all the other guns.

Consequently, I'm still against that change.


Gilles

>
> Brent


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org


Re: [4/4] commons-rng git commit: Moved ProviderBuilder to the base package and made it package private

Posted by Emmanuel Bourg <eb...@apache.org>.
Le 29/09/2016 � 02:55, Brent Worden a �crit :

> If it is only used by RandomSource, would making ProviderBuilder a private,
> inner class provide better isolation and further prevent misuse?

From a user point of view this would make no difference. A separate
package private class is as good as a static private inner class.

That said other simplifications are certainly possible, for example the
RandomSourceInternal enum in ProviderBuilder could be merged into
RandomSource. There is no benefit in duplicating this enumeration

Emmanuel Bourg


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org


Re: [4/4] commons-rng git commit: Moved ProviderBuilder to the base package and made it package private

Posted by Brent Worden <br...@gmail.com>.
On Wed, Sep 28, 2016 at 6:08 PM, Emmanuel Bourg <eb...@apache.org> wrote:

> Le 28/09/2016 à 17:11, Gilles a écrit :
>
> > This what you've done, but it doesn't say why.
>
> The class is only used by RandomSource, moving it to the same package
> and marking it package private ensures that it can't be mistakenly used
> (even if it's marked as internal).
>
> Emmanuel Bourg
>
>
If it is only used by RandomSource, would making ProviderBuilder a private,
inner class provide better isolation and further prevent misuse?

Brent

Re: [4/4] commons-rng git commit: Moved ProviderBuilder to the base package and made it package private

Posted by Emmanuel Bourg <eb...@apache.org>.
Le 28/09/2016 � 17:11, Gilles a �crit :

> This what you've done, but it doesn't say why.

The class is only used by RandomSource, moving it to the same package
and marking it package private ensures that it can't be mistakenly used
(even if it's marked as internal).

Emmanuel Bourg


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org


Re: [4/4] commons-rng git commit: Moved ProviderBuilder to the base package and made it package private

Posted by Gilles <gi...@harfang.homelinux.org>.
Emmanuel,

On Wed, 28 Sep 2016 08:54:53 -0000, ebourg@apache.org wrote:
> Moved ProviderBuilder to the base package and made it package private

This what you've done, but it doesn't say why.

I previously noted that I was wary of crippling the Javadoc (if
the output would not show up for package-private classes).

As far as I can guess, there is no more interest[1] of putting this
at top-level than for any other.

As an internal class, its place is under "internal".

I typically think that such moves should either be discussed,
and/or performed in a branch, so that they are not forced on
everyone before other can understand it and agree on the
implications.

Please revert.


Gilles

[1] Rather less actually as it is quite low-level and frankly ugly.

> Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo
> Commit: 
> http://git-wip-us.apache.org/repos/asf/commons-rng/commit/fd22dc61
> Tree: 
> http://git-wip-us.apache.org/repos/asf/commons-rng/tree/fd22dc61
> Diff: 
> http://git-wip-us.apache.org/repos/asf/commons-rng/diff/fd22dc61
>
> Branch: refs/heads/master
> Commit: fd22dc61fd0ea75563ed893ad4857595de58a5dc
> Parents: 3dddd64
> Author: Emmanuel Bourg <eb...@apache.org>
> Authored: Wed Sep 28 10:40:08 2016 +0200
> Committer: Emmanuel Bourg <eb...@apache.org>
> Committed: Wed Sep 28 10:40:08 2016 +0200
>
> 
> ----------------------------------------------------------------------
>  .../org/apache/commons/rng/ProviderBuilder.java | 379 
> ++++++++++++++++++
>  .../org/apache/commons/rng/RandomSource.java    |   2 +-
>  .../commons/rng/internal/ProviderBuilder.java   | 380 
> -------------------
>  .../commons/rng/internal/package-info.java      |   2 +-
>  4 files changed, 381 insertions(+), 382 deletions(-)
> 
> ----------------------------------------------------------------------
>
>
> 
> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/ProviderBuilder.java
> 
> ----------------------------------------------------------------------
> diff --git
> a/src/main/java/org/apache/commons/rng/ProviderBuilder.java
> b/src/main/java/org/apache/commons/rng/ProviderBuilder.java
> new file mode 100644
> index 0000000..76f1668
> --- /dev/null
> +++ b/src/main/java/org/apache/commons/rng/ProviderBuilder.java
> @@ -0,0 +1,379 @@
> +/*
> + * Licensed to the Apache Software Foundation (ASF) under one or 
> more
> + * contributor license agreements.  See the NOTICE file distributed 
> with
> + * this work for additional information regarding copyright 
> ownership.
> + * The ASF licenses this file to You 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.commons.rng;
> +
> +import java.util.Arrays;
> +import java.util.List;
> +import java.util.ArrayList;
> +import java.util.Map;
> +import java.util.HashMap;
> +import java.lang.reflect.Constructor;
> +import java.lang.reflect.InvocationTargetException;
> +
> +import org.apache.commons.rng.internal.util.SeedFactory;
> +import org.apache.commons.rng.internal.util.NoOpConverter;
> +import org.apache.commons.rng.internal.util.Int2Long;
> +import org.apache.commons.rng.internal.util.Long2Int;
> +import org.apache.commons.rng.internal.util.Long2IntArray;
> +import org.apache.commons.rng.internal.util.Long2LongArray;
> +import org.apache.commons.rng.internal.util.IntArray2LongArray;
> +import org.apache.commons.rng.internal.util.LongArray2IntArray;
> +import org.apache.commons.rng.internal.util.LongArray2Long;
> +import org.apache.commons.rng.internal.util.IntArray2Int;
> +import org.apache.commons.rng.internal.util.ByteArray2IntArray;
> +import org.apache.commons.rng.internal.util.ByteArray2LongArray;
> +import org.apache.commons.rng.internal.util.SeedConverter;
> +import org.apache.commons.rng.internal.util.SeedConverterComposer;
> +import org.apache.commons.rng.internal.source32.JDKRandom;
> +import org.apache.commons.rng.internal.source32.Well512a;
> +import org.apache.commons.rng.internal.source32.Well1024a;
> +import org.apache.commons.rng.internal.source32.Well19937a;
> +import org.apache.commons.rng.internal.source32.Well19937c;
> +import org.apache.commons.rng.internal.source32.Well44497a;
> +import org.apache.commons.rng.internal.source32.Well44497b;
> +import org.apache.commons.rng.internal.source32.ISAACRandom;
> +import org.apache.commons.rng.internal.source32.MersenneTwister;
> +import 
> org.apache.commons.rng.internal.source32.MultiplyWithCarry256;
> +import org.apache.commons.rng.internal.source32.KISSRandom;
> +import org.apache.commons.rng.internal.source64.SplitMix64;
> +import org.apache.commons.rng.internal.source64.XorShift1024Star;
> +import org.apache.commons.rng.internal.source64.TwoCmres;
> +import org.apache.commons.rng.internal.source64.MersenneTwister64;
> +
> +/**
> + * RNG builder.
> + * <p>
> + * It uses reflection to find the factory method of the RNG 
> implementation,
> + * and performs seed type conversions.
> + * </p>
> + */
> +class ProviderBuilder {
> +    /** Error message. */
> +    private static final String INTERNAL_ERROR_MSG = "Internal
> error: Please file a bug report";
> +    /** Length of the seed array (for random seed). */
> +    private static final int RANDOM_SEED_ARRAY_SIZE = 128;
> +    /** Seed converter. */
> +    private static final Long2Int LONG_TO_INT = new Long2Int();
> +    /** Seed converter. */
> +    private static final Int2Long INT_TO_LONG = new Int2Long();
> +    /** Seed converter. */
> +    private static final Long2IntArray LONG_TO_INT_ARRAY = new
> Long2IntArray(RANDOM_SEED_ARRAY_SIZE);
> +    /** Seed converter. */
> +    private static final Long2LongArray LONG_TO_LONG_ARRAY = new
> Long2LongArray(RANDOM_SEED_ARRAY_SIZE);
> +    /** Seed converter. */
> +    private static final LongArray2Long LONG_ARRAY_TO_LONG = new
> LongArray2Long();
> +    /** Seed converter. */
> +    private static final IntArray2Int INT_ARRAY_TO_INT = new 
> IntArray2Int();
> +    /** Seed converter. */
> +    private static final LongArray2IntArray LONG_ARRAY_TO_INT_ARRAY
> = new LongArray2IntArray();
> +    /** Seed converter. */
> +    private static final IntArray2LongArray INT_ARRAY_TO_LONG_ARRAY
> = new IntArray2LongArray();
> +    /** Seed converter. */
> +    private static final ByteArray2IntArray BYTE_ARRAY_TO_INT_ARRAY
> = new ByteArray2IntArray();
> +    /** Seed converter. */
> +    private static final ByteArray2LongArray
> BYTE_ARRAY_TO_LONG_ARRAY = new ByteArray2LongArray();
> +    /** Map to convert "Integer" seeds. */
> +    private static final Map<Class<?>, SeedConverter<Integer,?>> 
> CONV_INT =
> +        new HashMap<Class<?>, SeedConverter<Integer,?>>();
> +    /** Map to convert "int[]" seeds. */
> +    private static final Map<Class<?>, SeedConverter<int[],?>>
> CONV_INT_ARRAY =
> +        new HashMap<Class<?>, SeedConverter<int[],?>>();
> +    /** Map to convert "Long" seeds. */
> +    private static final Map<Class<?>, SeedConverter<Long,?>> 
> CONV_LONG =
> +        new HashMap<Class<?>, SeedConverter<Long,?>>();
> +    /** Map to convert "long[]" seeds. */
> +    private static final Map<Class<?>, SeedConverter<long[],?>>
> CONV_LONG_ARRAY =
> +        new HashMap<Class<?>, SeedConverter<long[],?>>();
> +    /** Map to convert "byte[]" seeds. */
> +    private static final Map<Class<?>, SeedConverter<byte[],?>>
> CONV_BYTE_ARRAY =
> +        new HashMap<Class<?>, SeedConverter<byte[],?>>();
> +
> +    static {
> +        // Input seed type is "Long".
> +        // Key is the implementation's "native" seed type.
> +        CONV_LONG.put(Integer.class, LONG_TO_INT);
> +        CONV_LONG.put(Long.class, new NoOpConverter<Long>());
> +        CONV_LONG.put(int[].class, LONG_TO_INT_ARRAY);
> +        CONV_LONG.put(long[].class, LONG_TO_LONG_ARRAY);
> +
> +        // Input seed type is "Integer".
> +        // Key is the implementation's "native" seed type.
> +        CONV_INT.put(Integer.class, new NoOpConverter<Integer>());
> +        CONV_INT.put(Long.class, INT_TO_LONG);
> +        CONV_INT.put(int[].class, new
> SeedConverterComposer<Integer,Long,int[]>(INT_TO_LONG,
> LONG_TO_INT_ARRAY));
> +        CONV_INT.put(long[].class, new
> SeedConverterComposer<Integer,Long,long[]>(INT_TO_LONG,
> LONG_TO_LONG_ARRAY));
> +
> +        // Input seed type is "int[]".
> +        // Key is the implementation's "native" seed type.
> +        CONV_INT_ARRAY.put(Integer.class, INT_ARRAY_TO_INT);
> +        CONV_INT_ARRAY.put(Long.class, new
> SeedConverterComposer<int[],Integer,Long>(INT_ARRAY_TO_INT,
> INT_TO_LONG));
> +        CONV_INT_ARRAY.put(int[].class, new NoOpConverter<int[]>());
> +        CONV_INT_ARRAY.put(long[].class, INT_ARRAY_TO_LONG_ARRAY);
> +
> +        // Input seed type is "long[]".
> +        // Key is the implementation's "native" seed type.
> +        CONV_LONG_ARRAY.put(Integer.class, new
> SeedConverterComposer<long[],Long,Integer>(LONG_ARRAY_TO_LONG,
> LONG_TO_INT));
> +        CONV_LONG_ARRAY.put(Long.class, LONG_ARRAY_TO_LONG);
> +        CONV_LONG_ARRAY.put(int[].class, LONG_ARRAY_TO_INT_ARRAY);
> +        CONV_LONG_ARRAY.put(long[].class, new 
> NoOpConverter<long[]>());
> +
> +        // Input seed type is "byte[]".
> +        // Key is the implementation's "native" seed type.
> +        CONV_BYTE_ARRAY.put(Integer.class, new
> SeedConverterComposer<byte[],int[],Integer>(BYTE_ARRAY_TO_INT_ARRAY,
> INT_ARRAY_TO_INT));
> +        CONV_BYTE_ARRAY.put(Long.class, new
> SeedConverterComposer<byte[],long[],Long>(BYTE_ARRAY_TO_LONG_ARRAY,
> LONG_ARRAY_TO_LONG));
> +        CONV_BYTE_ARRAY.put(int[].class, BYTE_ARRAY_TO_INT_ARRAY);
> +        CONV_BYTE_ARRAY.put(long[].class, BYTE_ARRAY_TO_LONG_ARRAY);
> +    }
> +
> +    /**
> +     * Class only contains static method.
> +     */
> +    private ProviderBuilder() {}
> +
> +    /**
> +     * Creates a RNG instance.
> +     *
> +     * @param source RNG specification.
> +     * @param seed Seed value.  It can be {@code null} (in which 
> case a
> +     * random value will be used).
> +     * @param args Additional arguments to the implementation's 
> constructor.
> +     * @return a new RNG instance.
> +     * @throws UnsupportedOperationException if the seed type is 
> invalid.
> +     */
> +    public static UniformRandomProvider create(RandomSourceInternal 
> source,
> +                                               Object seed,
> +                                               Object[] args) {
> +        // Convert seed to native type.
> +        final Object nativeSeed = createSeed(source, seed);
> +
> +        // Build a single array with all the arguments to be passed
> +        // (in the right order) to the constructor.
> +        final List<Object> all = new ArrayList<Object>();
> +        all.add(nativeSeed);
> +        if (args != null) {
> +            all.addAll(Arrays.asList(args));
> +        }
> +
> +        // Instantiate.
> +        return create(createConstructor(source), all.toArray());
> +    }
> +
> +    /**
> +     * Creates a native seed from any of the supported seed types.
> +     *
> +     * @param source Source.
> +     * @param seed Input seed.
> +     * @return the native seed.
> +     * @throw UnsupportedOperationException if the {@code seed} type
> is invalid.
> +     */
> +    private static Object createSeed(RandomSourceInternal source,
> +                                     Object seed) {
> +        Object nativeSeed = null;
> +
> +        if (seed == null) {
> +            // Create a random seed of the appropriate native type.
> +
> +            if (source.getSeed().equals(Integer.class)) {
> +                nativeSeed = SeedFactory.createInt();
> +            } else if (source.getSeed().equals(Long.class)) {
> +                nativeSeed = SeedFactory.createLong();
> +            } else if (source.getSeed().equals(int[].class)) {
> +                nativeSeed =
> SeedFactory.createIntArray(RANDOM_SEED_ARRAY_SIZE);
> +            } else if (source.getSeed().equals(long[].class)) {
> +                nativeSeed =
> SeedFactory.createLongArray(RANDOM_SEED_ARRAY_SIZE);
> +            } else {
> +                // Source's native type is not handled.
> +                throw new IllegalStateException(INTERNAL_ERROR_MSG);
> +            }
> +        } else {
> +            // Convert to native type.
> +
> +            if (seed instanceof Integer) {
> +                nativeSeed =
> CONV_INT.get(source.getSeed()).convert((Integer) seed);
> +            } else if (seed instanceof Long) {
> +                nativeSeed =
> CONV_LONG.get(source.getSeed()).convert((Long) seed);
> +            } else if (seed instanceof int[]) {
> +                nativeSeed =
> CONV_INT_ARRAY.get(source.getSeed()).convert((int[]) seed);
> +            } else if (seed instanceof long[]) {
> +                nativeSeed =
> CONV_LONG_ARRAY.get(source.getSeed()).convert((long[]) seed);
> +            } else if (seed instanceof byte[]) {
> +                nativeSeed =
> CONV_BYTE_ARRAY.get(source.getSeed()).convert((byte[]) seed);
> +            }
> +
> +            if (nativeSeed == null) {
> +                // Since the input seed was not null, getting here
> means that
> +                // no suitable converter is present in the maps.
> +                throw new
> UnsupportedOperationException("Unrecognized seed type");
> +            }
> +
> +            if (!source.isNativeSeed(nativeSeed)) {
> +                // Conversion setup is wrong.
> +                throw new IllegalStateException(INTERNAL_ERROR_MSG);
> +            }
> +        }
> +
> +        return nativeSeed;
> +    }
> +
> +    /**
> +     * Creates a constructor.
> +     *
> +     * @param source RNG specification.
> +     * @return a RNG constructor.
> +     */
> +    private static Constructor<?>
> createConstructor(RandomSourceInternal source) {
> +        try {
> +            return source.getRng().getConstructor(source.getArgs());
> +        } catch (NoSuchMethodException e) {
> +            // Info in "RandomSourceInternal" is inconsistent with 
> the
> +            // constructor of the implementation.
> +            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> +        }
> +    }
> +
> +    /**
> +     * Creates a RNG.
> +     *
> +     * @param rng RNG specification.
> +     * @param args Arguments to the implementation's constructor.
> +     * @return a new RNG instance.
> +     */
> +    private static UniformRandomProvider create(Constructor<?> rng,
> +                                                Object[] args) {
> +        try {
> +            return (UniformRandomProvider) rng.newInstance(args);
> +        } catch (InvocationTargetException e) {
> +            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> +        } catch (InstantiationException e) {
> +            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> +        } catch (IllegalAccessException e) {
> +            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> +        }
> +    }
> +
> +    /**
> +     * Identifiers of the generators.
> +     */
> +    public enum RandomSourceInternal {
> +        /** Source of randomness is {@link JDKRandom}. */
> +        JDK(JDKRandom.class,
> +            Long.class),
> +        /** Source of randomness is {@link Well512a}. */
> +        WELL_512_A(Well512a.class,
> +                   int[].class),
> +        /** Source of randomness is {@link Well1024a}. */
> +        WELL_1024_A(Well1024a.class,
> +                    int[].class),
> +        /** Source of randomness is {@link Well19937a}. */
> +        WELL_19937_A(Well19937a.class,
> +                     int[].class),
> +        /** Source of randomness is {@link Well19937c}. */
> +        WELL_19937_C(Well19937c.class,
> +                     int[].class),
> +        /** Source of randomness is {@link Well44497a}. */
> +        WELL_44497_A(Well44497a.class,
> +                     int[].class),
> +        /** Source of randomness is {@link Well44497b}. */
> +        WELL_44497_B(Well44497b.class,
> +                     int[].class),
> +        /** Source of randomness is {@link MersenneTwister}. */
> +        MT(MersenneTwister.class,
> +           int[].class),
> +        /** Source of randomness is {@link ISAACRandom}. */
> +        ISAAC(ISAACRandom.class,
> +              int[].class),
> +        /** Source of randomness is {@link SplitMix64}. */
> +        SPLIT_MIX_64(SplitMix64.class,
> +                     Long.class),
> +        /** Source of randomness is {@link XorShift1024Star}. */
> +        XOR_SHIFT_1024_S(XorShift1024Star.class,
> +                         long[].class),
> +        /** Source of randomness is {@link TwoCmres}. */
> +        TWO_CMRES(TwoCmres.class,
> +                  Integer.class),
> +        /**
> +         * Source of randomness is {@link TwoCmres} with explicit 
> selection
> +         * of the two subcycle generators.
> +         */
> +        TWO_CMRES_SELECT(TwoCmres.class,
> +                         Integer.class,
> +                         Integer.TYPE,
> +                         Integer.TYPE),
> +        /** Source of randomness is {@link MersenneTwister64}. */
> +        MT_64(MersenneTwister64.class,
> +              long[].class),
> +        /** Source of randomness is {@link MultiplyWithCarry256}. */
> +        MWC_256(MultiplyWithCarry256.class,
> +                int[].class),
> +        /** Source of randomness is {@link KISSRandom}. */
> +        KISS(KISSRandom.class,
> +             int[].class);
> +
> +        /** Source type. */
> +        private final Class<? extends UniformRandomProvider> rng;
> +        /** Data needed to build the generator. */
> +        private final Class<?>[] args;
> +
> +        /**
> +         * @param rng Source type.
> +         * @param args Data needed to create a generator instance.
> +         * The first element must be the native seed type.
> +         */
> +        RandomSourceInternal(Class<? extends UniformRandomProvider> 
> rng,
> +                             Class<?> ... args) {
> +            this.rng = rng;
> +            this.args = Arrays.copyOf(args, args.length);
> +        }
> +
> +        /**
> +         * @return the source type.
> +         */
> +        public Class<?> getRng() {
> +            return rng;
> +        }
> +
> +        /**
> +         * @return the seed type.
> +         */
> +        Class<?> getSeed() {
> +            return args[0];
> +        }
> +
> +        /**
> +         * @return the data needed to build the generator.
> +         */
> +        Class<?>[] getArgs() {
> +            return args;
> +        }
> +
> +        /**
> +         * Checks whether the type of given {@code seed} is the 
> native type
> +         * of the implementation.
> +         *
> +         * @param <SEED> Seed type.
> +         *
> +         * @param seed Seed value.
> +         * @return {@code true} if the seed can be passed to the 
> builder
> +         * for this RNG type.
> +         */
> +        public <SEED> boolean isNativeSeed(SEED seed) {
> +            return seed == null ?
> +                false :
> +                getSeed().equals(seed.getClass());
> +        }
> +    }
> +}
>
> 
> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/RandomSource.java
> 
> ----------------------------------------------------------------------
> diff --git a/src/main/java/org/apache/commons/rng/RandomSource.java
> b/src/main/java/org/apache/commons/rng/RandomSource.java
> index 27b67bb..efacdca 100644
> --- a/src/main/java/org/apache/commons/rng/RandomSource.java
> +++ b/src/main/java/org/apache/commons/rng/RandomSource.java
> @@ -17,7 +17,7 @@
>  package org.apache.commons.rng;
>
>  import java.util.Arrays;
> -import org.apache.commons.rng.internal.ProviderBuilder;
> +
>  import org.apache.commons.rng.internal.BaseProvider;
>  import org.apache.commons.rng.internal.util.SeedFactory;
>
>
> 
> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java
> 
> ----------------------------------------------------------------------
> diff --git
> a/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java
> b/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java
> deleted file mode 100644
> index 93ad3d9..0000000
> --- 
> a/src/main/java/org/apache/commons/rng/internal/ProviderBuilder.java
> +++ /dev/null
> @@ -1,380 +0,0 @@
> -/*
> - * Licensed to the Apache Software Foundation (ASF) under one or 
> more
> - * contributor license agreements.  See the NOTICE file distributed 
> with
> - * this work for additional information regarding copyright 
> ownership.
> - * The ASF licenses this file to You 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.commons.rng.internal;
> -
> -import java.util.Arrays;
> -import java.util.List;
> -import java.util.ArrayList;
> -import java.util.Map;
> -import java.util.HashMap;
> -import java.lang.reflect.Constructor;
> -import java.lang.reflect.InvocationTargetException;
> -
> -import org.apache.commons.rng.UniformRandomProvider;
> -import org.apache.commons.rng.internal.util.SeedFactory;
> -import org.apache.commons.rng.internal.util.NoOpConverter;
> -import org.apache.commons.rng.internal.util.Int2Long;
> -import org.apache.commons.rng.internal.util.Long2Int;
> -import org.apache.commons.rng.internal.util.Long2IntArray;
> -import org.apache.commons.rng.internal.util.Long2LongArray;
> -import org.apache.commons.rng.internal.util.IntArray2LongArray;
> -import org.apache.commons.rng.internal.util.LongArray2IntArray;
> -import org.apache.commons.rng.internal.util.LongArray2Long;
> -import org.apache.commons.rng.internal.util.IntArray2Int;
> -import org.apache.commons.rng.internal.util.ByteArray2IntArray;
> -import org.apache.commons.rng.internal.util.ByteArray2LongArray;
> -import org.apache.commons.rng.internal.util.SeedConverter;
> -import org.apache.commons.rng.internal.util.SeedConverterComposer;
> -import org.apache.commons.rng.internal.source32.JDKRandom;
> -import org.apache.commons.rng.internal.source32.Well512a;
> -import org.apache.commons.rng.internal.source32.Well1024a;
> -import org.apache.commons.rng.internal.source32.Well19937a;
> -import org.apache.commons.rng.internal.source32.Well19937c;
> -import org.apache.commons.rng.internal.source32.Well44497a;
> -import org.apache.commons.rng.internal.source32.Well44497b;
> -import org.apache.commons.rng.internal.source32.ISAACRandom;
> -import org.apache.commons.rng.internal.source32.MersenneTwister;
> -import 
> org.apache.commons.rng.internal.source32.MultiplyWithCarry256;
> -import org.apache.commons.rng.internal.source32.KISSRandom;
> -import org.apache.commons.rng.internal.source64.SplitMix64;
> -import org.apache.commons.rng.internal.source64.XorShift1024Star;
> -import org.apache.commons.rng.internal.source64.TwoCmres;
> -import org.apache.commons.rng.internal.source64.MersenneTwister64;
> -
> -/**
> - * RNG builder.
> - * <p>
> - * It uses reflection to find the factory method of the RNG 
> implementation,
> - * and performs seed type conversions.
> - * </p>
> - */
> -public class ProviderBuilder {
> -    /** Error message. */
> -    private static final String INTERNAL_ERROR_MSG = "Internal
> error: Please file a bug report";
> -    /** Length of the seed array (for random seed). */
> -    private static final int RANDOM_SEED_ARRAY_SIZE = 128;
> -    /** Seed converter. */
> -    private static final Long2Int LONG_TO_INT = new Long2Int();
> -    /** Seed converter. */
> -    private static final Int2Long INT_TO_LONG = new Int2Long();
> -    /** Seed converter. */
> -    private static final Long2IntArray LONG_TO_INT_ARRAY = new
> Long2IntArray(RANDOM_SEED_ARRAY_SIZE);
> -    /** Seed converter. */
> -    private static final Long2LongArray LONG_TO_LONG_ARRAY = new
> Long2LongArray(RANDOM_SEED_ARRAY_SIZE);
> -    /** Seed converter. */
> -    private static final LongArray2Long LONG_ARRAY_TO_LONG = new
> LongArray2Long();
> -    /** Seed converter. */
> -    private static final IntArray2Int INT_ARRAY_TO_INT = new 
> IntArray2Int();
> -    /** Seed converter. */
> -    private static final LongArray2IntArray LONG_ARRAY_TO_INT_ARRAY
> = new LongArray2IntArray();
> -    /** Seed converter. */
> -    private static final IntArray2LongArray INT_ARRAY_TO_LONG_ARRAY
> = new IntArray2LongArray();
> -    /** Seed converter. */
> -    private static final ByteArray2IntArray BYTE_ARRAY_TO_INT_ARRAY
> = new ByteArray2IntArray();
> -    /** Seed converter. */
> -    private static final ByteArray2LongArray
> BYTE_ARRAY_TO_LONG_ARRAY = new ByteArray2LongArray();
> -    /** Map to convert "Integer" seeds. */
> -    private static final Map<Class<?>, SeedConverter<Integer,?>> 
> CONV_INT =
> -        new HashMap<Class<?>, SeedConverter<Integer,?>>();
> -    /** Map to convert "int[]" seeds. */
> -    private static final Map<Class<?>, SeedConverter<int[],?>>
> CONV_INT_ARRAY =
> -        new HashMap<Class<?>, SeedConverter<int[],?>>();
> -    /** Map to convert "Long" seeds. */
> -    private static final Map<Class<?>, SeedConverter<Long,?>> 
> CONV_LONG =
> -        new HashMap<Class<?>, SeedConverter<Long,?>>();
> -    /** Map to convert "long[]" seeds. */
> -    private static final Map<Class<?>, SeedConverter<long[],?>>
> CONV_LONG_ARRAY =
> -        new HashMap<Class<?>, SeedConverter<long[],?>>();
> -    /** Map to convert "byte[]" seeds. */
> -    private static final Map<Class<?>, SeedConverter<byte[],?>>
> CONV_BYTE_ARRAY =
> -        new HashMap<Class<?>, SeedConverter<byte[],?>>();
> -
> -    static {
> -        // Input seed type is "Long".
> -        // Key is the implementation's "native" seed type.
> -        CONV_LONG.put(Integer.class, LONG_TO_INT);
> -        CONV_LONG.put(Long.class, new NoOpConverter<Long>());
> -        CONV_LONG.put(int[].class, LONG_TO_INT_ARRAY);
> -        CONV_LONG.put(long[].class, LONG_TO_LONG_ARRAY);
> -
> -        // Input seed type is "Integer".
> -        // Key is the implementation's "native" seed type.
> -        CONV_INT.put(Integer.class, new NoOpConverter<Integer>());
> -        CONV_INT.put(Long.class, INT_TO_LONG);
> -        CONV_INT.put(int[].class, new
> SeedConverterComposer<Integer,Long,int[]>(INT_TO_LONG,
> LONG_TO_INT_ARRAY));
> -        CONV_INT.put(long[].class, new
> SeedConverterComposer<Integer,Long,long[]>(INT_TO_LONG,
> LONG_TO_LONG_ARRAY));
> -
> -        // Input seed type is "int[]".
> -        // Key is the implementation's "native" seed type.
> -        CONV_INT_ARRAY.put(Integer.class, INT_ARRAY_TO_INT);
> -        CONV_INT_ARRAY.put(Long.class, new
> SeedConverterComposer<int[],Integer,Long>(INT_ARRAY_TO_INT,
> INT_TO_LONG));
> -        CONV_INT_ARRAY.put(int[].class, new NoOpConverter<int[]>());
> -        CONV_INT_ARRAY.put(long[].class, INT_ARRAY_TO_LONG_ARRAY);
> -
> -        // Input seed type is "long[]".
> -        // Key is the implementation's "native" seed type.
> -        CONV_LONG_ARRAY.put(Integer.class, new
> SeedConverterComposer<long[],Long,Integer>(LONG_ARRAY_TO_LONG,
> LONG_TO_INT));
> -        CONV_LONG_ARRAY.put(Long.class, LONG_ARRAY_TO_LONG);
> -        CONV_LONG_ARRAY.put(int[].class, LONG_ARRAY_TO_INT_ARRAY);
> -        CONV_LONG_ARRAY.put(long[].class, new 
> NoOpConverter<long[]>());
> -
> -        // Input seed type is "byte[]".
> -        // Key is the implementation's "native" seed type.
> -        CONV_BYTE_ARRAY.put(Integer.class, new
> SeedConverterComposer<byte[],int[],Integer>(BYTE_ARRAY_TO_INT_ARRAY,
> INT_ARRAY_TO_INT));
> -        CONV_BYTE_ARRAY.put(Long.class, new
> SeedConverterComposer<byte[],long[],Long>(BYTE_ARRAY_TO_LONG_ARRAY,
> LONG_ARRAY_TO_LONG));
> -        CONV_BYTE_ARRAY.put(int[].class, BYTE_ARRAY_TO_INT_ARRAY);
> -        CONV_BYTE_ARRAY.put(long[].class, BYTE_ARRAY_TO_LONG_ARRAY);
> -    }
> -
> -    /**
> -     * Class only contains static method.
> -     */
> -    private ProviderBuilder() {}
> -
> -    /**
> -     * Creates a RNG instance.
> -     *
> -     * @param source RNG specification.
> -     * @param seed Seed value.  It can be {@code null} (in which 
> case a
> -     * random value will be used).
> -     * @param args Additional arguments to the implementation's 
> constructor.
> -     * @return a new RNG instance.
> -     * @throws UnsupportedOperationException if the seed type is 
> invalid.
> -     */
> -    public static UniformRandomProvider create(RandomSourceInternal 
> source,
> -                                               Object seed,
> -                                               Object[] args) {
> -        // Convert seed to native type.
> -        final Object nativeSeed = createSeed(source, seed);
> -
> -        // Build a single array with all the arguments to be passed
> -        // (in the right order) to the constructor.
> -        final List<Object> all = new ArrayList<Object>();
> -        all.add(nativeSeed);
> -        if (args != null) {
> -            all.addAll(Arrays.asList(args));
> -        }
> -
> -        // Instantiate.
> -        return create(createConstructor(source), all.toArray());
> -    }
> -
> -    /**
> -     * Creates a native seed from any of the supported seed types.
> -     *
> -     * @param source Source.
> -     * @param seed Input seed.
> -     * @return the native seed.
> -     * @throw UnsupportedOperationException if the {@code seed} type
> is invalid.
> -     */
> -    private static Object createSeed(RandomSourceInternal source,
> -                                     Object seed) {
> -        Object nativeSeed = null;
> -
> -        if (seed == null) {
> -            // Create a random seed of the appropriate native type.
> -
> -            if (source.getSeed().equals(Integer.class)) {
> -                nativeSeed = SeedFactory.createInt();
> -            } else if (source.getSeed().equals(Long.class)) {
> -                nativeSeed = SeedFactory.createLong();
> -            } else if (source.getSeed().equals(int[].class)) {
> -                nativeSeed =
> SeedFactory.createIntArray(RANDOM_SEED_ARRAY_SIZE);
> -            } else if (source.getSeed().equals(long[].class)) {
> -                nativeSeed =
> SeedFactory.createLongArray(RANDOM_SEED_ARRAY_SIZE);
> -            } else {
> -                // Source's native type is not handled.
> -                throw new IllegalStateException(INTERNAL_ERROR_MSG);
> -            }
> -        } else {
> -            // Convert to native type.
> -
> -            if (seed instanceof Integer) {
> -                nativeSeed =
> CONV_INT.get(source.getSeed()).convert((Integer) seed);
> -            } else if (seed instanceof Long) {
> -                nativeSeed =
> CONV_LONG.get(source.getSeed()).convert((Long) seed);
> -            } else if (seed instanceof int[]) {
> -                nativeSeed =
> CONV_INT_ARRAY.get(source.getSeed()).convert((int[]) seed);
> -            } else if (seed instanceof long[]) {
> -                nativeSeed =
> CONV_LONG_ARRAY.get(source.getSeed()).convert((long[]) seed);
> -            } else if (seed instanceof byte[]) {
> -                nativeSeed =
> CONV_BYTE_ARRAY.get(source.getSeed()).convert((byte[]) seed);
> -            }
> -
> -            if (nativeSeed == null) {
> -                // Since the input seed was not null, getting here
> means that
> -                // no suitable converter is present in the maps.
> -                throw new
> UnsupportedOperationException("Unrecognized seed type");
> -            }
> -
> -            if (!source.isNativeSeed(nativeSeed)) {
> -                // Conversion setup is wrong.
> -                throw new IllegalStateException(INTERNAL_ERROR_MSG);
> -            }
> -        }
> -
> -        return nativeSeed;
> -    }
> -
> -    /**
> -     * Creates a constructor.
> -     *
> -     * @param source RNG specification.
> -     * @return a RNG constructor.
> -     */
> -    private static Constructor<?>
> createConstructor(RandomSourceInternal source) {
> -        try {
> -            return source.getRng().getConstructor(source.getArgs());
> -        } catch (NoSuchMethodException e) {
> -            // Info in "RandomSourceInternal" is inconsistent with 
> the
> -            // constructor of the implementation.
> -            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> -        }
> -    }
> -
> -    /**
> -     * Creates a RNG.
> -     *
> -     * @param rng RNG specification.
> -     * @param args Arguments to the implementation's constructor.
> -     * @return a new RNG instance.
> -     */
> -    private static UniformRandomProvider create(Constructor<?> rng,
> -                                                Object[] args) {
> -        try {
> -            return (UniformRandomProvider) rng.newInstance(args);
> -        } catch (InvocationTargetException e) {
> -            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> -        } catch (InstantiationException e) {
> -            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> -        } catch (IllegalAccessException e) {
> -            throw new IllegalStateException(INTERNAL_ERROR_MSG, e);
> -        }
> -    }
> -
> -    /**
> -     * Identifiers of the generators.
> -     */
> -    public enum RandomSourceInternal {
> -        /** Source of randomness is {@link JDKRandom}. */
> -        JDK(JDKRandom.class,
> -            Long.class),
> -        /** Source of randomness is {@link Well512a}. */
> -        WELL_512_A(Well512a.class,
> -                   int[].class),
> -        /** Source of randomness is {@link Well1024a}. */
> -        WELL_1024_A(Well1024a.class,
> -                    int[].class),
> -        /** Source of randomness is {@link Well19937a}. */
> -        WELL_19937_A(Well19937a.class,
> -                     int[].class),
> -        /** Source of randomness is {@link Well19937c}. */
> -        WELL_19937_C(Well19937c.class,
> -                     int[].class),
> -        /** Source of randomness is {@link Well44497a}. */
> -        WELL_44497_A(Well44497a.class,
> -                     int[].class),
> -        /** Source of randomness is {@link Well44497b}. */
> -        WELL_44497_B(Well44497b.class,
> -                     int[].class),
> -        /** Source of randomness is {@link MersenneTwister}. */
> -        MT(MersenneTwister.class,
> -           int[].class),
> -        /** Source of randomness is {@link ISAACRandom}. */
> -        ISAAC(ISAACRandom.class,
> -              int[].class),
> -        /** Source of randomness is {@link SplitMix64}. */
> -        SPLIT_MIX_64(SplitMix64.class,
> -                     Long.class),
> -        /** Source of randomness is {@link XorShift1024Star}. */
> -        XOR_SHIFT_1024_S(XorShift1024Star.class,
> -                         long[].class),
> -        /** Source of randomness is {@link TwoCmres}. */
> -        TWO_CMRES(TwoCmres.class,
> -                  Integer.class),
> -        /**
> -         * Source of randomness is {@link TwoCmres} with explicit 
> selection
> -         * of the two subcycle generators.
> -         */
> -        TWO_CMRES_SELECT(TwoCmres.class,
> -                         Integer.class,
> -                         Integer.TYPE,
> -                         Integer.TYPE),
> -        /** Source of randomness is {@link MersenneTwister64}. */
> -        MT_64(MersenneTwister64.class,
> -              long[].class),
> -        /** Source of randomness is {@link MultiplyWithCarry256}. */
> -        MWC_256(MultiplyWithCarry256.class,
> -                int[].class),
> -        /** Source of randomness is {@link KISSRandom}. */
> -        KISS(KISSRandom.class,
> -             int[].class);
> -
> -        /** Source type. */
> -        private final Class<? extends UniformRandomProvider> rng;
> -        /** Data needed to build the generator. */
> -        private final Class<?>[] args;
> -
> -        /**
> -         * @param rng Source type.
> -         * @param args Data needed to create a generator instance.
> -         * The first element must be the native seed type.
> -         */
> -        RandomSourceInternal(Class<? extends UniformRandomProvider> 
> rng,
> -                             Class<?> ... args) {
> -            this.rng = rng;
> -            this.args = Arrays.copyOf(args, args.length);
> -        }
> -
> -        /**
> -         * @return the source type.
> -         */
> -        public Class<?> getRng() {
> -            return rng;
> -        }
> -
> -        /**
> -         * @return the seed type.
> -         */
> -        Class<?> getSeed() {
> -            return args[0];
> -        }
> -
> -        /**
> -         * @return the data needed to build the generator.
> -         */
> -        Class<?>[] getArgs() {
> -            return args;
> -        }
> -
> -        /**
> -         * Checks whether the type of given {@code seed} is the 
> native type
> -         * of the implementation.
> -         *
> -         * @param <SEED> Seed type.
> -         *
> -         * @param seed Seed value.
> -         * @return {@code true} if the seed can be passed to the 
> builder
> -         * for this RNG type.
> -         */
> -        public <SEED> boolean isNativeSeed(SEED seed) {
> -            return seed == null ?
> -                false :
> -                getSeed().equals(seed.getClass());
> -        }
> -    }
> -}
>
> 
> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/fd22dc61/src/main/java/org/apache/commons/rng/internal/package-info.java
> 
> ----------------------------------------------------------------------
> diff --git
> a/src/main/java/org/apache/commons/rng/internal/package-info.java
> b/src/main/java/org/apache/commons/rng/internal/package-info.java
> index dba9e64..e3590c9 100644
> --- a/src/main/java/org/apache/commons/rng/internal/package-info.java
> +++ b/src/main/java/org/apache/commons/rng/internal/package-info.java
> @@ -43,7 +43,7 @@
>   *
>   * <p>
>   * Each implementation must have an identifier in
> - * {@link
> org.apache.commons.rng.internal.ProviderBuilder.RandomSourceInternal}
> + * {@link 
> org.apache.commons.rng.ProviderBuilder.RandomSourceInternal}
>   * which must be referred to from the {@link
> org.apache.commons.rng.RandomSource public API}.
>   * </p>
>   */



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org