// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package org.jetbrains.java.decompiler.modules.decompiler.vars; import org.jetbrains.java.decompiler.main.collectors.VarNamesCollector; import org.jetbrains.java.decompiler.modules.decompiler.stats.RootStatement; import org.jetbrains.java.decompiler.modules.decompiler.stats.Statement; import org.jetbrains.java.decompiler.struct.StructMethod; import org.jetbrains.java.decompiler.struct.gen.MethodDescriptor; import org.jetbrains.java.decompiler.struct.gen.VarType; import org.jetbrains.java.decompiler.util.TextUtil; import java.util.*; import java.util.Map.Entry; public class VarProcessor { private final VarNamesCollector varNamesCollector = new VarNamesCollector(); private final StructMethod method; private final MethodDescriptor methodDescriptor; private Map mapVarNames = new HashMap<>(); private VarVersionsProcessor varVersions; private final Map thisVars = new HashMap<>(); private final Set externalVars = new HashSet<>(); public VarProcessor(StructMethod mt, MethodDescriptor md) { method = mt; methodDescriptor = md; } public void setVarVersions(RootStatement root) { VarVersionsProcessor oldProcessor = varVersions; varVersions = new VarVersionsProcessor(method, methodDescriptor); varVersions.setVarVersions(root, oldProcessor); } public void setVarDefinitions(Statement root) { mapVarNames = new HashMap<>(); new VarDefinitionHelper(root, method, this).setVarDefinitions(); } public void setDebugVarNames(Map mapDebugVarNames) { if (varVersions == null) { return; } Map mapOriginalVarIndices = varVersions.getMapOriginalVarIndices(); List listVars = new ArrayList<>(mapVarNames.keySet()); listVars.sort(Comparator.comparingInt(o -> o.var)); Map mapNames = new HashMap<>(); for (VarVersionPair pair : listVars) { String name = mapVarNames.get(pair); Integer index = mapOriginalVarIndices.get(pair.var); if (index != null) { String debugName = mapDebugVarNames.get(index); if (debugName != null && TextUtil.isValidIdentifier(debugName, method.getBytecodeVersion())) { name = debugName; } } Integer counter = mapNames.get(name); mapNames.put(name, counter == null ? counter = 0 : ++counter); if (counter > 0) { name += String.valueOf(counter); } mapVarNames.put(pair, name); } } public Integer getVarOriginalIndex(int index) { return varVersions == null ? null : varVersions.getMapOriginalVarIndices().get(index); } public void refreshVarNames(VarNamesCollector vc) { Map tempVarNames = new HashMap<>(mapVarNames); for (Entry ent : tempVarNames.entrySet()) { mapVarNames.put(ent.getKey(), vc.getFreeName(ent.getValue())); } } public VarNamesCollector getVarNamesCollector() { return varNamesCollector; } public VarType getVarType(VarVersionPair pair) { return varVersions == null ? null : varVersions.getVarType(pair); } public void setVarType(VarVersionPair pair, VarType type) { varVersions.setVarType(pair, type); } public String getVarName(VarVersionPair pair) { return mapVarNames == null ? null : mapVarNames.get(pair); } public void setVarName(VarVersionPair pair, String name) { mapVarNames.put(pair, name); } public Collection getVarNames() { return mapVarNames != null ? mapVarNames.values() : Collections.emptySet(); } public int getVarFinal(VarVersionPair pair) { return varVersions == null ? VarTypeProcessor.VAR_FINAL : varVersions.getVarFinal(pair); } public void setVarFinal(VarVersionPair pair, int finalType) { varVersions.setVarFinal(pair, finalType); } public Map getThisVars() { return thisVars; } public Set getExternalVars() { return externalVars; } }