/******************************************************************************* * Copyright (c) 2002 - 2006 IBM Corporation. * 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package com.ibm.wala.ipa.callgraph.propagation.cfa; import com.ibm.wala.ipa.callgraph.CGNode; import com.ibm.wala.ipa.callgraph.Context; import com.ibm.wala.ipa.callgraph.ContextItem; import com.ibm.wala.ipa.callgraph.ContextKey; /** * This is a {@link Context} which is defined by a pair consisting of <caller node, base context>. * * The base context is typically some special case; e.g., a JavaTypeContext used for reflection. */ public class CallerContextPair extends CallerContext { private final Context baseContext; /** * @param caller the node which defines this context. */ public CallerContextPair(CGNode caller, Context baseContext) { super(caller); this.baseContext = baseContext; // avoid recursive contexts for now. assert !(baseContext instanceof CallerContextPair); } @Override public ContextItem get(ContextKey name) { if (name == null) { throw new IllegalArgumentException("name is null"); } if (name.equals(ContextKey.CALLER)) { return super.get(name); } else { return baseContext.get(name); } } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass().equals(obj.getClass())) { CallerContextPair other = (CallerContextPair) obj; return getCaller().equals(other.getCaller()) && baseContext.equals(other.baseContext); } else { return false; } } @Override public int hashCode() { return 8377 * getCaller().hashCode() + baseContext.hashCode(); } @Override public String toString() { return "Caller: " + getCaller() + ",Base:" + baseContext; } }