/* * Copyright 2000-2014 JetBrains s.r.o. * * Licensed 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 com.intellij.rt.coverage.data; import java.util.Arrays; public class SwitchData implements CoverageData { private int[] myKeys; private int myDefaultHits; private int[] myHits; public SwitchData(final int[] keys) { myKeys = keys; myHits = new int[keys.length]; Arrays.fill(myHits, 0); } public void touch(final int key) { if (key == -1) { myDefaultHits++; } else if (key < myHits.length && key >= 0) { myHits[key]++; } } public int getDefaultHits() { return myDefaultHits; } public int[] getHits() { return myHits; } public void merge(final CoverageData data) { SwitchData switchData = (SwitchData)data; myDefaultHits += switchData.myDefaultHits; for (int i = Math.min(myHits.length, switchData.myHits.length) - 1; i >= 0; i--) { myHits[i] += switchData.myHits[i]; } if (switchData.myHits.length > myHits.length) { int[] old = myHits; myHits = new int[switchData.myHits.length]; System.arraycopy(old, 0, myHits, 0, old.length); System.arraycopy(switchData.myHits, old.length, myHits, old.length, myHits.length - old.length); myKeys = switchData.myKeys; } } public void setDefaultHits(final int defaultHits) { myDefaultHits = defaultHits; } public void setKeysAndHits(final int[] keys, final int[] hits) { myKeys = keys; myHits = hits; } public int[] getKeys() { return myKeys; } }