Initial import
[jpf-core.git] / src / main / gov / nasa / jpf / vm / choice / DoubleChoiceFromList.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18 package gov.nasa.jpf.vm.choice;
19
20 import gov.nasa.jpf.Config;
21 import gov.nasa.jpf.JPFException;
22 import gov.nasa.jpf.vm.DoubleChoiceGenerator;
23
24 /**
25  * simple DoubleChoiceGenerator that takes it's values from a single
26  * property "values" (comma or blank separated list)
27  * 
28  */
29 public class DoubleChoiceFromList extends NumberChoiceFromList<Double> implements DoubleChoiceGenerator {
30
31   @Override
32   protected Double[] createValueArray(int len) {
33     return new Double[len];
34   }
35
36   @Override
37   protected Double getDefaultValue() {
38     return 0.0;
39   }
40
41   @Override
42   public Class<Double> getChoiceType() {
43     return Double.class;
44   }
45
46   @Override
47   protected Double parseLiteral(String literal, int sign) {
48     double val = Double.parseDouble(literal);
49     return new Double(val * sign);
50   }
51
52   @Override
53   protected Double newValue(Number num, int sign) {
54     return new Double(num.intValue() * sign);
55   }
56
57   /**
58    * super constructor for subclasses that want to configure themselves
59    * 
60    * @param id
61    *          name used in choice config
62    */
63   protected DoubleChoiceFromList(String id) {
64     super(id);
65   }
66
67   protected DoubleChoiceFromList(String id, Double[] vals) {
68     super(id, vals);
69   }
70
71   public DoubleChoiceFromList(Config conf, String id) {
72     super(conf, id);
73   }
74
75   public DoubleChoiceFromList(String id, double... val) {
76     super(id);
77
78     if (val != null) {
79       values = new Double[val.length];
80       for (int i = 0; i < val.length; i++) {
81         values[i] = val[i]; // enable use of cached Double values
82       }
83     } else {
84       throw new JPFException("empty set for DoubleChoiceFromList");
85     }
86
87     count = -1;
88   }
89 }