MtasDataBasic.java.html 20.6 KB
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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MtasDataBasic.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">MTAS</a> &gt; <a href="index.source.html" class="el_package">mtas.codec.util.collector</a> &gt; <span class="el_source">MtasDataBasic.java</span></div><h1>MtasDataBasic.java</h1><pre class="source lang-java linenums">package mtas.codec.util.collector;

import java.io.IOException;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.SortedSet;

import mtas.codec.util.CodecUtil;
import mtas.codec.util.DataCollector;

/**
 * The Class MtasDataBasic.
 *
 * @param &lt;T1&gt; the generic type
 * @param &lt;T2&gt; the generic type
 */
abstract class MtasDataBasic&lt;T1 extends Number &amp; Comparable&lt;T1&gt;, T2 extends Number &amp; Comparable&lt;T2&gt;&gt;
    extends MtasDataCollector&lt;T1, T2&gt; implements Serializable {

  /** The Constant serialVersionUID. */
  private static final long serialVersionUID = 1L;

  /** The basic value sum list. */
<span class="fc" id="L26">  protected T1[] basicValueSumList = null;</span>

  /** The basic value N list. */
<span class="fc" id="L29">  protected long[] basicValueNList = null;</span>

  /** The new basic value sum list. */
<span class="fc" id="L32">  protected transient T1[] newBasicValueSumList = null;</span>

  /** The new basic value N list. */
<span class="fc" id="L35">  protected transient long[] newBasicValueNList = null;</span>

  /** The operations. */
  protected MtasDataOperations&lt;T1, T2&gt; operations;

  /**
   * Instantiates a new mtas data basic.
   *
   * @param collectorType the collector type
   * @param dataType the data type
   * @param statsItems the stats items
   * @param sortType the sort type
   * @param sortDirection the sort direction
   * @param start the start
   * @param number the number
   * @param subCollectorTypes the sub collector types
   * @param subDataTypes the sub data types
   * @param subStatsTypes the sub stats types
   * @param subStatsItems the sub stats items
   * @param subSortTypes the sub sort types
   * @param subSortDirections the sub sort directions
   * @param subStart the sub start
   * @param subNumber the sub number
   * @param operations the operations
   * @param segmentRegistration the segment registration
   * @param boundary the boundary
   * @throws IOException Signals that an I/O exception has occurred.
   */
  public MtasDataBasic(String collectorType, String dataType,
      SortedSet&lt;String&gt; statsItems, String sortType, String sortDirection,
      Integer start, Integer number, String[] subCollectorTypes,
      String[] subDataTypes, String[] subStatsTypes,
      SortedSet&lt;String&gt;[] subStatsItems, String[] subSortTypes,
      String[] subSortDirections, Integer[] subStart, Integer[] subNumber,
      MtasDataOperations&lt;T1, T2&gt; operations, String segmentRegistration,
      String boundary) throws IOException {
<span class="fc" id="L71">    super(collectorType, dataType, CodecUtil.STATS_BASIC, statsItems, sortType,</span>
        sortDirection, start, number, subCollectorTypes, subDataTypes,
        subStatsTypes, subStatsItems, subSortTypes, subSortDirections, subStart,
        subNumber, segmentRegistration, boundary);
<span class="fc" id="L75">    this.operations = operations;</span>
<span class="fc" id="L76">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see
   * mtas.codec.util.DataCollector.MtasDataCollector#error(java.lang.String)
   */
  @Override
  public final void error(String error) throws IOException {
<span class="nc" id="L86">    add(false);</span>
<span class="nc" id="L87">    setError(newCurrentPosition, error, newCurrentExisting);</span>
<span class="nc" id="L88">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see
   * mtas.codec.util.DataCollector.MtasDataCollector#error(java.lang.String[],
   * java.lang.String)
   */
  @Override
  public final void error(String key, String error) throws IOException {
<span class="nc bnc" id="L99" title="All 2 branches missed.">    if (key != null) {</span>
<span class="nc" id="L100">      add(key, false);</span>
<span class="nc" id="L101">      setError(newCurrentPosition, error, newCurrentExisting);      </span>
    }
<span class="nc" id="L103">  }</span>

  /**
   * Sets the error.
   *
   * @param newPosition the new position
   * @param error the error
   * @param currentExisting the current existing
   */
  protected void setError(int newPosition, String error,
      boolean currentExisting) {
<span class="nc bnc" id="L114" title="All 2 branches missed.">    if (!currentExisting) {</span>
<span class="nc" id="L115">      newBasicValueSumList[newPosition] = operations.getZero1();</span>
<span class="nc" id="L116">      newBasicValueNList[newPosition] = 0;</span>
    }
<span class="nc" id="L118">    newErrorNumber[newPosition]++;</span>
<span class="nc bnc" id="L119" title="All 2 branches missed.">    if (newErrorList[newPosition].containsKey(error)) {</span>
<span class="nc" id="L120">      newErrorList[newPosition].put(error,</span>
<span class="nc" id="L121">          newErrorList[newPosition].get(error) + 1);</span>
    } else {
<span class="nc" id="L123">      newErrorList[newPosition].put(error, 1);</span>
    }
<span class="nc" id="L125">  }</span>

  /**
   * Sets the value.
   *
   * @param newPosition the new position
   * @param valueSum the value sum
   * @param valueN the value N
   * @param currentExisting the current existing
   */
  protected void setValue(int newPosition, T1 valueSum, long valueN,
      boolean currentExisting) {
<span class="pc bpc" id="L137" title="1 of 2 branches missed.">    if (valueN &gt; 0) {</span>
<span class="fc bfc" id="L138" title="All 2 branches covered.">      if (currentExisting) {</span>
<span class="fc" id="L139">        newBasicValueSumList[newPosition] = operations</span>
<span class="fc" id="L140">            .add11(newBasicValueSumList[newPosition], valueSum);</span>
<span class="fc" id="L141">        newBasicValueNList[newPosition] += valueN;</span>
      } else {
<span class="fc" id="L143">        newBasicValueSumList[newPosition] = valueSum;</span>
<span class="fc" id="L144">        newBasicValueNList[newPosition] = valueN;</span>
      }
    }
<span class="fc" id="L147">  }</span>

  /**
   * Sets the value.
   *
   * @param newPosition the new position
   * @param values the values
   * @param number the number
   * @param currentExisting the current existing
   */
  protected void setValue(int newPosition, T1[] values, int number,
      boolean currentExisting) {
<span class="pc bpc" id="L159" title="1 of 2 branches missed.">    if (number &gt; 0) {</span>
<span class="fc" id="L160">      T1 valueSum = null;</span>
<span class="fc bfc" id="L161" title="All 2 branches covered.">      for (int i = 0; i &lt; number; i++) {</span>
<span class="fc bfc" id="L162" title="All 2 branches covered.">        valueSum = (i == 0) ? values[i] : operations.add11(valueSum, values[i]);</span>
      }
<span class="fc bfc" id="L164" title="All 2 branches covered.">      if (currentExisting) {</span>
<span class="fc" id="L165">        newBasicValueSumList[newPosition] = operations</span>
<span class="fc" id="L166">            .add11(newBasicValueSumList[newPosition], valueSum);</span>
<span class="fc" id="L167">        newBasicValueNList[newPosition] += number;</span>
      } else {
<span class="fc" id="L169">        newBasicValueSumList[newPosition] = valueSum;</span>
<span class="fc" id="L170">        newBasicValueNList[newPosition] = number;</span>
      }
    }
<span class="fc" id="L173">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see mtas.codec.util.DataCollector.MtasDataCollector#increaseNewListSize()
   */
  @Override
  protected final void increaseNewListSize() throws IOException {
    // register old situation
<span class="fc" id="L183">    int tmpOldSize = newKeyList.length;</span>
<span class="fc" id="L184">    int tmpNewPosition = newPosition;</span>
    // increase
<span class="fc" id="L186">    super.increaseNewListSize();</span>
    // reconstruct
<span class="fc" id="L188">    T1[] tmpNewBasicValueList = newBasicValueSumList;</span>
<span class="fc" id="L189">    long[] tmpNewBasicValueNList = newBasicValueNList;</span>
<span class="fc" id="L190">    newBasicValueSumList = operations.createVector1(newSize);</span>
<span class="fc" id="L191">    newBasicValueNList = new long[newSize];</span>
<span class="fc" id="L192">    newPosition = tmpNewPosition;</span>
<span class="fc" id="L193">    System.arraycopy(tmpNewBasicValueList, 0, newBasicValueSumList, 0,</span>
        tmpOldSize);
<span class="fc" id="L195">    System.arraycopy(tmpNewBasicValueNList, 0, newBasicValueNList, 0,</span>
        tmpOldSize);
<span class="fc" id="L197">  }</span>

  /* (non-Javadoc)
   * @see mtas.codec.util.collector.MtasDataCollector#reduceToSegmentKeys()
   */
  @Override
  public void reduceToSegmentKeys() {
<span class="pc bpc" id="L204" title="2 of 4 branches missed.">    if (segmentRegistration != null &amp;&amp; size &gt; 0) {</span>
<span class="fc" id="L205">      int sizeCopy = size;</span>
<span class="fc" id="L206">      String[] keyListCopy = keyList.clone();</span>
<span class="fc" id="L207">      T1[] basicValueSumListCopy = basicValueSumList.clone();</span>
<span class="fc" id="L208">      long[] basicValueNListCopy = basicValueNList.clone();</span>
<span class="fc" id="L209">      size = 0;</span>
<span class="fc bfc" id="L210" title="All 2 branches covered.">      for (int i = 0; i &lt; sizeCopy; i++) {</span>
<span class="fc bfc" id="L211" title="All 2 branches covered.">        if (segmentKeys.contains(keyListCopy[i])) {</span>
<span class="fc" id="L212">          keyList[size] = keyListCopy[i];</span>
<span class="fc" id="L213">          basicValueSumList[size] = basicValueSumListCopy[i];</span>
<span class="fc" id="L214">          basicValueNList[size] = basicValueNListCopy[i];</span>
<span class="fc" id="L215">          size++;</span>
        }
      }
    }
<span class="fc" id="L219">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see
   * mtas.codec.util.collector.MtasDataCollector#reduceToKeys(java.util.Set)
   */
  @SuppressWarnings(&quot;unchecked&quot;)
  public void reduceToKeys(Set&lt;String&gt; keys) {
<span class="pc bpc" id="L229" title="1 of 2 branches missed.">    if (size &gt; 0) {</span>
<span class="fc" id="L230">      int sizeCopy = size;</span>
<span class="fc" id="L231">      String[] keyListCopy = keyList.clone();</span>
<span class="fc" id="L232">      int[] errorNumberCopy = errorNumber.clone();</span>
<span class="fc" id="L233">      HashMap&lt;String, Integer&gt;[] errorListCopy = errorList.clone();</span>
<span class="fc" id="L234">      int[] sourceNumberListCopy = sourceNumberList.clone();</span>
<span class="fc" id="L235">      T1[] basicValueSumListCopy = basicValueSumList.clone();</span>
<span class="fc" id="L236">      long[] basicValueNListCopy = basicValueNList.clone();</span>
<span class="fc" id="L237">      keyList = new String[keys.size()];</span>
<span class="fc" id="L238">      errorNumber = new int[keys.size()];</span>
<span class="fc" id="L239">      errorList = new HashMap[keys.size()];</span>
<span class="fc" id="L240">      sourceNumberList = new int[keys.size()];</span>
<span class="fc" id="L241">      basicValueSumList = operations.createVector1(keys.size());</span>
<span class="fc" id="L242">      basicValueNList = new long[keys.size()];</span>
<span class="fc" id="L243">      size = 0;</span>
<span class="fc bfc" id="L244" title="All 2 branches covered.">      for (int i = 0; i &lt; sizeCopy; i++) {</span>
<span class="fc bfc" id="L245" title="All 2 branches covered.">        if (keys.contains(keyListCopy[i])) {</span>
<span class="fc" id="L246">          keyList[size] = keyListCopy[i];</span>
<span class="fc" id="L247">          errorNumber[size] = errorNumberCopy[i];</span>
<span class="fc" id="L248">          errorList[size] = errorListCopy[i];</span>
<span class="fc" id="L249">          sourceNumberList[size] = sourceNumberListCopy[i];</span>
<span class="fc" id="L250">          basicValueSumList[size] = basicValueSumListCopy[i];</span>
<span class="fc" id="L251">          basicValueNList[size] = basicValueNListCopy[i];</span>
<span class="fc" id="L252">          size++;</span>
        }
      }
    }
<span class="fc" id="L256">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see mtas.codec.util.DataCollector.MtasDataCollector#copyToNew(int, int)
   */
  @Override
  protected void copyToNew(int position, int newPosition) {
<span class="fc" id="L265">    newBasicValueSumList[newPosition] = basicValueSumList[position];</span>
<span class="fc" id="L266">    newBasicValueNList[newPosition] = basicValueNList[position];</span>
<span class="fc" id="L267">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see mtas.codec.util.DataCollector.MtasDataCollector#copyFromNew()
   */
  @Override
  protected void copyFromNew() {
<span class="fc" id="L276">    basicValueSumList = newBasicValueSumList;</span>
<span class="fc" id="L277">    basicValueNList = newBasicValueNList;</span>
<span class="fc" id="L278">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see mtas.codec.util.DataCollector.MtasDataCollector#remapData(int[][])
   */
  @Override
  protected void remapData(int[][] mapping) throws IOException {
<span class="fc" id="L287">    super.remapData(mapping);</span>
<span class="fc" id="L288">    T1[] originalBasicValueSumList = basicValueSumList.clone();</span>
<span class="fc" id="L289">    long[] originalBasicValueNList = basicValueNList.clone();</span>
<span class="fc" id="L290">    basicValueSumList = operations.createVector1(mapping.length);</span>
<span class="fc" id="L291">    basicValueNList = new long[mapping.length];</span>
<span class="fc bfc" id="L292" title="All 2 branches covered.">    for (int i = 0; i &lt; mapping.length; i++) {</span>
<span class="fc bfc" id="L293" title="All 2 branches covered.">      for (int j = 0; j &lt; mapping[i].length; j++) {</span>
<span class="fc bfc" id="L294" title="All 2 branches covered.">        if (j == 0) {</span>
<span class="fc" id="L295">          setValue(i, originalBasicValueSumList[mapping[i][j]],</span>
              originalBasicValueNList[mapping[i][j]], false);
        } else {
<span class="fc" id="L298">          setValue(i, originalBasicValueSumList[mapping[i][j]],</span>
              originalBasicValueNList[mapping[i][j]], true);
        }
      }
    }
<span class="fc" id="L303">    basicValueSumList = newBasicValueSumList;</span>
<span class="fc" id="L304">    basicValueNList = newBasicValueNList;</span>
<span class="fc" id="L305">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see mtas.codec.util.DataCollector.MtasDataCollector#merge(mtas.codec.util.
   * DataCollector.MtasDataCollector)
   */
  @Override
  public void merge(MtasDataCollector&lt;?, ?&gt; newDataCollector,
      Map&lt;MtasDataCollector&lt;?, ?&gt;, MtasDataCollector&lt;?, ?&gt;&gt; map,
      boolean increaseSourceNumber) throws IOException {
<span class="nc" id="L317">    closeNewList();</span>
<span class="nc bnc" id="L318" title="All 2 branches missed.">    if (!collectorType.equals(newDataCollector.getCollectorType())</span>
<span class="nc bnc" id="L319" title="All 2 branches missed.">        || !dataType.equals(newDataCollector.getDataType())</span>
<span class="nc bnc" id="L320" title="All 4 branches missed.">        || !statsType.equals(newDataCollector.getStatsType())</span>
        || !(newDataCollector instanceof MtasDataBasic)) {
<span class="nc" id="L322">      throw new IOException(&quot;cannot merge different dataCollectors&quot;);</span>
    } else {      
<span class="nc" id="L324">      segmentRegistration = null;</span>
      @SuppressWarnings(&quot;unchecked&quot;)
<span class="nc" id="L326">      MtasDataBasic&lt;T1, T2&gt; newMtasDataBasic = (MtasDataBasic&lt;T1, T2&gt;) newDataCollector;</span>
<span class="nc" id="L327">      newMtasDataBasic.closeNewList();</span>
<span class="nc" id="L328">      initNewList(newMtasDataBasic.getSize());</span>
<span class="nc bnc" id="L329" title="All 2 branches missed.">      if (collectorType.equals(DataCollector.COLLECTOR_TYPE_LIST)) {</span>
<span class="nc" id="L330">        map.put(newDataCollector, this);</span>
<span class="nc bnc" id="L331" title="All 2 branches missed.">        for (int i = 0; i &lt; newMtasDataBasic.getSize(); i++) {</span>
<span class="nc" id="L332">          MtasDataCollector&lt;?, ?&gt;[] subCollectors = new MtasDataCollector[1];</span>
<span class="nc" id="L333">          subCollectors[0] = add(newMtasDataBasic.keyList[i],</span>
              increaseSourceNumber);
<span class="nc" id="L335">          setError(newCurrentPosition, newMtasDataBasic.errorNumber[i],</span>
              newMtasDataBasic.errorList[i], newCurrentExisting);
<span class="nc" id="L337">          setValue(newCurrentPosition, newMtasDataBasic.basicValueSumList[i],</span>
              newMtasDataBasic.basicValueNList[i], newCurrentExisting);
<span class="nc bnc" id="L339" title="All 4 branches missed.">          if (hasSub() &amp;&amp; newMtasDataBasic.hasSub()) {</span>
            // single key implies exactly one subCollector if hasSub
<span class="nc" id="L341">            subCollectors[0].merge(</span>
                newMtasDataBasic.subCollectorListNextLevel[i], map,
                increaseSourceNumber);
          }
        } 
<span class="nc" id="L346">        closeNewList();</span>
<span class="nc bnc" id="L347" title="All 2 branches missed.">      } else if (collectorType.equals(DataCollector.COLLECTOR_TYPE_DATA)) {</span>
<span class="nc" id="L348">        map.put(newDataCollector, this);</span>
<span class="nc bnc" id="L349" title="All 2 branches missed.">        if (newMtasDataBasic.getSize() &gt; 0) {</span>
<span class="nc" id="L350">          MtasDataCollector&lt;?, ?&gt; subCollector = add(increaseSourceNumber);</span>
<span class="nc" id="L351">          setError(newCurrentPosition, newMtasDataBasic.errorNumber[0],</span>
              newMtasDataBasic.errorList[0], newCurrentExisting);
<span class="nc" id="L353">          setValue(newCurrentPosition, newMtasDataBasic.basicValueSumList[0],</span>
              newMtasDataBasic.basicValueNList[0], newCurrentExisting);
<span class="nc bnc" id="L355" title="All 4 branches missed.">          if (hasSub() &amp;&amp; newMtasDataBasic.hasSub()) {</span>
<span class="nc" id="L356">            subCollector.merge(newMtasDataBasic.subCollectorNextLevel, map,</span>
                increaseSourceNumber);
          }
        }
<span class="nc" id="L360">        closeNewList();</span>
      } else {
<span class="nc" id="L362">        throw new IOException(&quot;cannot merge &quot; + collectorType);</span>
      }
    }
<span class="nc" id="L365">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see mtas.codec.util.DataCollector.MtasDataCollector#initNewList(int)
   */
  @Override
  public final void initNewList(int maxNumberOfTerms) throws IOException {
<span class="fc" id="L374">    super.initNewList(maxNumberOfTerms);</span>
<span class="fc" id="L375">    initNewListBasic(maxNumberOfTerms);</span>
<span class="fc" id="L376">  }</span>

  /*
   * (non-Javadoc)
   * 
   * @see mtas.codec.util.DataCollector.MtasDataCollector#initNewList(int,
   * java.lang.String)
   */
  @Override
  public final void initNewList(int maxNumberOfTerms, String segmentName,
      int segmentNumber, String boundary) throws IOException {
<span class="fc" id="L387">    super.initNewList(maxNumberOfTerms, segmentName, segmentNumber, boundary);</span>
<span class="fc" id="L388">    initNewListBasic(maxNumberOfTerms);</span>
<span class="fc" id="L389">  }</span>

  /**
   * Inits the new list basic.
   *
   * @param maxNumberOfTerms the max number of terms
   */
  private void initNewListBasic(int maxNumberOfTerms) {
<span class="fc" id="L397">    newBasicValueSumList = operations.createVector1(newSize);</span>
<span class="fc" id="L398">    newBasicValueNList = new long[newSize];</span>
<span class="fc" id="L399">  }</span>

}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.7.9.201702052155</span></div></body></html>