我正在使用LongIntParallelHashMultimap java代码,我将其作为上一个问题的答案here。我将地图保存在磁盘中并将其加载到内存中。但是,在将映射加载到内存后,当我执行get方法时,代码会停止执行并进入永不结束的循环。任何人都可以帮助我为什么会发生这种情况以及如何解决这个问题?任何提示对我都有帮助。
我的代码可以找到here,也可以在下面给出:
import java.io.*;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Arrays;
import java.util.Random;
import java.nio.*;
import java.nio.channels.FileChannel;
import java.io.RandomAccessFile ;
public class Test{
public static void main(String args[]){
LongIntParallelHashMultimap abc = new LongIntParallelHashMultimap(10, "a.txt","b.txt");
Random randomGenerator = new Random();
for(int i = 1 ; i < 5 ; i++ ){
long b = (long) Math.floor(i/2) + 1 ;
int c = randomGenerator.nextInt();
abc.put(b,c) ;
}
int[]tt = abc.get(1);
System.out.println(tt[0]);
abc.save();
abc.load();
int[]tt1 = abc.get(1);
System.out.println(tt1[0]);
}
}
class LongIntParallelHashMultimap {
private static final long NULL = -1L ;
private final long[] keys;
private final int[] values;
private int size;
private int savenum = 0;
private String str1 = "";
private String str2 = "";
public LongIntParallelHashMultimap(int capacity, String st1, String st2 ) {
keys = new long[capacity];
values = new int[capacity];
Arrays.fill(keys, NULL);
savenum = capacity ;
str1 = st1;
str2 = st2;
}
public void load(){
try{
FileChannel channel2 = new RandomAccessFile(str1, "r").getChannel();
MappedByteBuffer mbb2 = channel2.map(FileChannel.MapMode.READ_ONLY, 0, channel2.size());
mbb2.order(ByteOrder.nativeOrder());
assert mbb2.remaining() == savenum * 8;
for (int i = 0; i < savenum; i++) {
long l = mbb2.getLong();
keys[i] = l ;
}
channel2.close();
FileChannel channel3 = new RandomAccessFile(str2, "r").getChannel();
MappedByteBuffer mbb3 = channel3.map(FileChannel.MapMode.READ_ONLY, 0, channel3.size());
mbb3.order(ByteOrder.nativeOrder());
assert mbb3.remaining() == savenum * 8;
for (int i = 0; i < savenum; i++) {
long l = mbb3.getLong();
keys[i] = l ;
}
channel3.close();
}
catch(Exception e){
System.out.println(e) ;
}
}
public void put(long key, int value) {
int index = indexFor(key);
while (keys[index] != NULL) {
index = successor(index);
}
keys[index] = key;
values[index] = value;
++size;
}
public int[] get(long key) {
int index = indexFor(key);
int count = countHits(key, index);
int[] hits = new int[count];
int hitIndex = 0;
while (keys[index] != NULL) {
if (keys[index] == key) {
hits[hitIndex] = values[index];
++hitIndex;
}
index = successor(index);
}
return hits;
}
private int countHits(long key, int index) {
int numHits = 0;
while (keys[index] != NULL) {
if (keys[index] == key) ++numHits;
index = successor(index);
}
return numHits;
}
private int indexFor(long key) {
return Math.abs((int) ((key * 5700357409661598721L) % keys.length));
}
private int successor(int index) {
return (index + 1) % keys.length;
}
public int size() {
return size;
}
public void save() {
try {
long l = 0 ;
FileChannel channel = new RandomAccessFile(str1, "rw").getChannel();
MappedByteBuffer mbb = channel.map(FileChannel.MapMode.READ_WRITE, 0, savenum * 8);
mbb.order(ByteOrder.nativeOrder());
for(int i = 0 ; i < savenum ; i++){
l = keys[i] ;
mbb.putLong(l);
}
channel.close();
FileChannel channel1 = new RandomAccessFile(str2, "rw").getChannel();
MappedByteBuffer mbb1 = channel1.map(FileChannel.MapMode.READ_WRITE, 0, savenum * 8);
mbb1.order(ByteOrder.nativeOrder());
for(int i = 0 ; i < savenum ; i++){
l = values[i] ;
mbb1.putLong(l);
}
channel1.close();
}
catch (Exception e){
System.out.println("IOException : " + e);
}
}
}
答案 0 :(得分:2)
使用我的调试器深入查看代码我可以看到,当您应该设置keys[]
和keys[]
(复制和粘贴错误)时,load()会将values[]
设置为两次< / p>
当我更改第二次加载时,测试似乎运行正常。
如果要在不创建副本的情况下访问键和值,可以从
开始private final LongBuffer keys;
private final IntBuffer values;
private int size;
private int savenum = 0;
private final FileChannel channel1;
private final FileChannel channel2;
public LongIntParallelHashMultimap(int capacity, String st1, String st2) throws IOException {
boolean newFile = !new File(st1).exists();
channel1 = new RandomAccessFile(st1, "rw").getChannel();
MappedByteBuffer mbb1 = channel1.map(FileChannel.MapMode.READ_WRITE, 0, capacity * 8);
mbb1.order(ByteOrder.nativeOrder());
keys = mbb1.asLongBuffer();
channel2 = new RandomAccessFile(st2, "rw").getChannel();
MappedByteBuffer mbb2 = channel2.map(FileChannel.MapMode.READ_WRITE, 0, capacity * 4);
mbb2.order(ByteOrder.nativeOrder());
values = mbb2.asIntBuffer();
if (newFile)
for(int i=0;i<capacity;i++)
keys.put(i, NULL);
savenum = capacity;
}
public void close() throws IOException {
channel1.close();
channel2.close();
}
答案 1 :(得分:1)
我有点愚蠢,因此犯了这种愚蠢的错误。修改后的代码在这里: