Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 605a2478dde4de11911d833b2a35664ad5d76e1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
 * Copyright (c) 2014 Eike Stepper (Loehne, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.internal.util.table;

/**
 * @author Eike Stepper
 */
public interface Formula
{
  public Object evaluate();

  /**
   * @author Eike Stepper
   */
  public static class Sum implements Formula
  {
    private final Range range;

    public Sum(Range range)
    {
      this.range = range;
    }

    public Double evaluate()
    {
      double sum = 0.0;
      for (Cell cell : range)
      {
        Number number = cell.number();
        if (number != null)
        {
          sum += number.doubleValue();
        }
      }

      return sum;
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class Min implements Formula
  {
    private final Range range;

    public Min(Range range)
    {
      this.range = range;
    }

    public Double evaluate()
    {
      double min = Double.MAX_VALUE;
      boolean empty = true;

      for (Cell cell : range)
      {
        Number number = cell.number();
        if (number != null)
        {
          min = Math.min(min, number.doubleValue());
          empty = false;
        }
      }

      return empty ? null : min;
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class Max implements Formula
  {
    private final Range range;

    public Max(Range range)
    {
      this.range = range;
    }

    public Double evaluate()
    {
      double max = Double.MIN_VALUE;
      boolean empty = true;

      for (Cell cell : range)
      {
        Number number = cell.number();
        if (number != null)
        {
          max = Math.max(max, number.doubleValue());
          empty = false;
        }
      }

      return empty ? null : max;
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class Avg implements Formula
  {
    private final Range range;

    public Avg(Range range)
    {
      this.range = range;
    }

    public Double evaluate()
    {
      double sum = 0.0;
      int count = 0;

      for (Cell cell : range)
      {
        Number number = cell.number();
        if (number != null)
        {
          sum += number.doubleValue();
          ++count;
        }
      }

      return sum / count;
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class CountNumbers implements Formula
  {
    private final Range range;

    public CountNumbers(Range range)
    {
      this.range = range;
    }

    public Integer evaluate()
    {
      int count = 0;
      for (Cell cell : range)
      {
        Number number = cell.number();
        if (number != null)
        {
          ++count;
        }
      }

      return count;
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class Percent extends Sum
  {
    private final Cell cell;

    public Percent(Range range, Cell cell)
    {
      super(range);
      this.cell = cell;
    }

    @Override
    public Double evaluate()
    {
      Number number = cell.number();
      if (number == null)
      {
        return null;
      }

      double value = number.doubleValue();
      if (value == 0.0)
      {
        return value;
      }

      Double sum = super.evaluate();
      if (sum == null)
      {
        return null;
      }

      if (sum == 0.0)
      {
        return value < 0 ? Double.NEGATIVE_INFINITY : Double.POSITIVE_INFINITY;
      }

      return value / sum;
    }
  }
}

Back to the top