/******************************************************************************* * Copyright (c) 2009, 2010 SAP AG 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: * SAP AG - initial API and implementation ******************************************************************************/ package org.eclipse.ocl.examples.impactanalyzer.benchmark.execution.measurements; public class MicroMeasurement extends DefaultMeasurement { private boolean beforeWasCalled = false; private boolean afterWasCalled = false; private long timeBefore = -1; private long timeAfter = -1; public void before() { beforeWasCalled = true; timeBefore = System.nanoTime(); assert timeBefore > -1; } public void after() { if (!beforeWasCalled) throw new RuntimeException("Before was not called"); afterWasCalled = true; timeAfter = System.nanoTime(); if (timeAfter < timeBefore) throw new RuntimeException("Method after() appearently was called before calling before()"); } public long getResult() { if (!(beforeWasCalled && afterWasCalled)) return -1; return timeAfter - timeBefore; } public boolean isBeforeWasCalled() { return beforeWasCalled; } }