GP-5310 Created global search and replace feature

This commit is contained in:
ghidragon 2025-02-28 20:08:40 -05:00
parent cc1228bdaa
commit 6fb115358a
93 changed files with 7469 additions and 141 deletions

View file

@ -0,0 +1,30 @@
/* ###
* IP: GHIDRA
*
* 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 ghidra.util.datastruct;
public class AccumulatorSizeException extends RuntimeException {
private int maxSize;
public AccumulatorSizeException(int maxSize) {
super("Maximum capacity exceeded: " + maxSize);
this.maxSize = maxSize;
}
public int getMaxSize() {
return maxSize;
}
}

View file

@ -0,0 +1,71 @@
/* ###
* IP: GHIDRA
*
* 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 ghidra.util.datastruct;
import java.util.*;
public class SizeRestrictedAccumulatorWrapper<T> implements Accumulator<T> {
private Accumulator<T> accumulator;
private int maxSize;
/**
* Constructor.
*
* @param accumulator the accumulator to pass items to
* @param maxSize the maximum number of items this accumulator will hold
*/
public SizeRestrictedAccumulatorWrapper(Accumulator<T> accumulator, int maxSize) {
this.accumulator = Objects.requireNonNull(accumulator);
this.maxSize = maxSize;
}
@Override
public Iterator<T> iterator() {
return accumulator.iterator();
}
@Override
public void add(T t) {
if (accumulator.size() >= maxSize) {
throw new AccumulatorSizeException(maxSize);
}
accumulator.add(t);
}
@Override
public void addAll(Collection<T> collection) {
for (T t : collection) {
accumulator.add(t);
}
}
@Override
public boolean contains(T t) {
return accumulator.contains(t);
}
@Override
public Collection<T> get() {
return accumulator.get();
}
@Override
public int size() {
return accumulator.size();
}
}