@ -30,6 +30,7 @@ import java.io.File;
import java.io.IOException ;
import java.io.IOException ;
import java.util.ArrayList ;
import java.util.ArrayList ;
import java.util.Collections ;
import java.util.Collections ;
import java.util.HashMap ;
import java.util.Iterator ;
import java.util.Iterator ;
import java.util.Map ;
import java.util.Map ;
import java.util.Set ;
import java.util.Set ;
@ -41,6 +42,7 @@ import de.anomic.kelondro.blob.HeapWriter;
import de.anomic.kelondro.order.CloneableIterator ;
import de.anomic.kelondro.order.CloneableIterator ;
import de.anomic.kelondro.order.Base64Order ;
import de.anomic.kelondro.order.Base64Order ;
import de.anomic.kelondro.order.ByteOrder ;
import de.anomic.kelondro.order.ByteOrder ;
import de.anomic.kelondro.util.ByteArray ;
import de.anomic.kelondro.util.FileUtils ;
import de.anomic.kelondro.util.FileUtils ;
import de.anomic.kelondro.util.Log ;
import de.anomic.kelondro.util.Log ;
import de.anomic.kelondro.index.Row ;
import de.anomic.kelondro.index.Row ;
@ -50,7 +52,8 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
private final Row payloadrow ;
private final Row payloadrow ;
private final ByteOrder termOrder ;
private final ByteOrder termOrder ;
private SortedMap < byte [ ] , ReferenceContainer < ReferenceType > > cache ;
//private SortedMap<byte[], ReferenceContainer<ReferenceType>> cache;
private Map < ByteArray , ReferenceContainer < ReferenceType > > cache ;
/ * *
/ * *
* opens an existing heap file in undefined mode
* opens an existing heap file in undefined mode
@ -84,7 +87,7 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
* another dump reading afterwards is not possible
* another dump reading afterwards is not possible
* /
* /
public void initWriteMode ( ) {
public void initWriteMode ( ) {
this . cache = Collections . synchronized SortedMap( new TreeMap < byte [ ] , ReferenceContainer < ReferenceType > > ( this . termOrder ) ) ;
this . cache = Collections . synchronized Map( new HashMap < ByteArray , ReferenceContainer < ReferenceType > > ( ) ) ;
}
}
/ * *
/ * *
@ -95,14 +98,15 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
public void initWriteModeFromBLOB ( final File blobFile ) throws IOException {
public void initWriteModeFromBLOB ( final File blobFile ) throws IOException {
Log . logInfo ( "indexContainerRAMHeap" , "restoring rwi blob dump '" + blobFile . getName ( ) + "'" ) ;
Log . logInfo ( "indexContainerRAMHeap" , "restoring rwi blob dump '" + blobFile . getName ( ) + "'" ) ;
final long start = System . currentTimeMillis ( ) ;
final long start = System . currentTimeMillis ( ) ;
this . cache = Collections . synchronizedSortedMap ( new TreeMap < byte [ ] , ReferenceContainer < ReferenceType > > ( this . termOrder ) ) ;
//this.cache = Collections.synchronizedSortedMap(new TreeMap<byte[], ReferenceContainer<ReferenceType>>(this.termOrder));
this . cache = new HashMap < ByteArray , ReferenceContainer < ReferenceType > > ( ) ;
int urlCount = 0 ;
int urlCount = 0 ;
synchronized ( cache ) {
synchronized ( cache ) {
for ( final ReferenceContainer < ReferenceType > container : new blobFileEntries < ReferenceType > ( blobFile , factory , this . payloadrow ) ) {
for ( final ReferenceContainer < ReferenceType > container : new blobFileEntries < ReferenceType > ( blobFile , factory , this . payloadrow ) ) {
// TODO: in this loop a lot of memory may be allocated. A check if the memory gets low is necessary. But what do when the memory is low?
// TODO: in this loop a lot of memory may be allocated. A check if the memory gets low is necessary. But what do when the memory is low?
if ( container = = null ) break ;
if ( container = = null ) break ;
//System.out.println("***DEBUG indexContainerHeap.initwriteModeFromBLOB*** container.size = " + container.size() + ", container.sorted = " + container.sorted());
//System.out.println("***DEBUG indexContainerHeap.initwriteModeFromBLOB*** container.size = " + container.size() + ", container.sorted = " + container.sorted());
cache . put ( container . getTermHash ( ) , container ) ;
cache . put ( new ByteArray ( container . getTermHash ( ) ) , container ) ;
urlCount + = container . size ( ) ;
urlCount + = container . size ( ) ;
}
}
}
}
@ -111,7 +115,7 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
Log . logInfo ( "indexContainerRAMHeap" , "finished rwi blob restore: " + cache . size ( ) + " words, " + urlCount + " word/URL relations in " + ( System . currentTimeMillis ( ) - start ) + " milliseconds" ) ;
Log . logInfo ( "indexContainerRAMHeap" , "finished rwi blob restore: " + cache . size ( ) + " words, " + urlCount + " word/URL relations in " + ( System . currentTimeMillis ( ) - start ) + " milliseconds" ) ;
}
}
public void dump ( final File heapFile , boolean writeIDX ) {
public void dump ( final File heapFile ) {
assert this . cache ! = null ;
assert this . cache ! = null ;
Log . logInfo ( "indexContainerRAMHeap" , "creating rwi heap dump '" + heapFile . getName ( ) + "', " + cache . size ( ) + " rwi's" ) ;
Log . logInfo ( "indexContainerRAMHeap" , "creating rwi heap dump '" + heapFile . getName ( ) + "', " + cache . size ( ) + " rwi's" ) ;
if ( heapFile . exists ( ) ) FileUtils . deletedelete ( heapFile ) ;
if ( heapFile . exists ( ) ) FileUtils . deletedelete ( heapFile ) ;
@ -124,13 +128,15 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
return ;
return ;
}
}
final long startTime = System . currentTimeMillis ( ) ;
final long startTime = System . currentTimeMillis ( ) ;
// sort the map
SortedMap < byte [ ] , ReferenceContainer < ReferenceType > > cachecopy = sortedClone ( ) ;
// write wCache
long wordcount = 0 , urlcount = 0 ;
long wordcount = 0 , urlcount = 0 ;
byte [ ] wordHash = null , lwh ;
byte [ ] wordHash = null , lwh ;
ReferenceContainer < ReferenceType > container ;
ReferenceContainer < ReferenceType > container ;
for ( final Map . Entry < byte [ ] , ReferenceContainer < ReferenceType > > entry : cachecopy . entrySet ( ) ) {
// write wCache
synchronized ( cache ) {
for ( final Map . Entry < byte [ ] , ReferenceContainer < ReferenceType > > entry : cache . entrySet ( ) ) {
// get entries
// get entries
lwh = wordHash ;
lwh = wordHash ;
wordHash = entry . getKey ( ) ;
wordHash = entry . getKey ( ) ;
@ -151,9 +157,8 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
}
}
wordcount + + ;
wordcount + + ;
}
}
}
try {
try {
dump . close ( writeIDX ) ;
dump . close ( true ) ;
Log . logInfo ( "indexContainerRAMHeap" , "finished rwi heap dump: " + wordcount + " words, " + urlcount + " word/URL relations in " + ( System . currentTimeMillis ( ) - startTime ) + " milliseconds" ) ;
Log . logInfo ( "indexContainerRAMHeap" , "finished rwi heap dump: " + wordcount + " words, " + urlcount + " word/URL relations in " + ( System . currentTimeMillis ( ) - startTime ) + " milliseconds" ) ;
} catch ( IOException e ) {
} catch ( IOException e ) {
e . printStackTrace ( ) ;
e . printStackTrace ( ) ;
@ -163,6 +168,17 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
}
}
}
}
public SortedMap < byte [ ] , ReferenceContainer < ReferenceType > > sortedClone ( ) {
SortedMap < byte [ ] , ReferenceContainer < ReferenceType > > cachecopy ;
synchronized ( cache ) {
cachecopy = new TreeMap < byte [ ] , ReferenceContainer < ReferenceType > > ( this . termOrder ) ;
for ( final Map . Entry < ByteArray , ReferenceContainer < ReferenceType > > entry : cache . entrySet ( ) ) {
cachecopy . put ( entry . getKey ( ) . asBytes ( ) , entry . getValue ( ) ) ;
}
}
return cachecopy ;
}
public int size ( ) {
public int size ( ) {
return ( this . cache = = null ) ? 0 : this . cache . size ( ) ;
return ( this . cache = = null ) ? 0 : this . cache . size ( ) ;
}
}
@ -317,11 +333,14 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
private final boolean rot ;
private final boolean rot ;
private Iterator < ReferenceContainer < ReferenceType > > iterator ;
private Iterator < ReferenceContainer < ReferenceType > > iterator ;
private byte [ ] latestTermHash ;
public heapCacheIterator ( byte [ ] startWordHash , final boolean rot ) {
public heapCacheIterator ( byte [ ] startWordHash , final boolean rot ) {
this . rot = rot ;
this . rot = rot ;
if ( startWordHash ! = null & & startWordHash . length = = 0 ) startWordHash = null ;
if ( startWordHash ! = null & & startWordHash . length = = 0 ) startWordHash = null ;
this . iterator = ( startWordHash = = null ) ? cache . values ( ) . iterator ( ) : cache . tailMap ( startWordHash ) . values ( ) . iterator ( ) ;
SortedMap < byte [ ] , ReferenceContainer < ReferenceType > > cachecopy = sortedClone ( ) ;
this . iterator = ( startWordHash = = null ) ? cachecopy . values ( ) . iterator ( ) : cachecopy . tailMap ( startWordHash ) . values ( ) . iterator ( ) ;
this . latestTermHash = null ;
// The collection's iterator will return the values in the order that their corresponding keys appear in the tree.
// The collection's iterator will return the values in the order that their corresponding keys appear in the tree.
}
}
@ -336,18 +355,23 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
public ReferenceContainer < ReferenceType > next ( ) {
public ReferenceContainer < ReferenceType > next ( ) {
if ( iterator . hasNext ( ) ) {
if ( iterator . hasNext ( ) ) {
return ( iterator . next ( ) ) . topLevelClone ( ) ;
ReferenceContainer < ReferenceType > c = iterator . next ( ) ;
this . latestTermHash = c . getTermHash ( ) ;
return c . topLevelClone ( ) ;
}
}
// rotation iteration
// rotation iteration
if ( ! rot ) {
if ( ! rot ) {
return null ;
return null ;
}
}
iterator = cache . values ( ) . iterator ( ) ;
iterator = cache . values ( ) . iterator ( ) ;
return ( iterator . next ( ) ) . topLevelClone ( ) ;
ReferenceContainer < ReferenceType > c = iterator . next ( ) ;
this . latestTermHash = c . getTermHash ( ) ;
return c . topLevelClone ( ) ;
}
}
public void remove ( ) {
public void remove ( ) {
iterator . remove ( ) ;
iterator . remove ( ) ;
cache . remove ( new ByteArray ( this . latestTermHash ) ) ;
}
}
public Iterator < ReferenceContainer < ReferenceType > > iterator ( ) {
public Iterator < ReferenceContainer < ReferenceType > > iterator ( ) {
@ -363,7 +387,7 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
* @return true , if the key is used in the heap ; false othervise
* @return true , if the key is used in the heap ; false othervise
* /
* /
public boolean has ( final byte [ ] key ) {
public boolean has ( final byte [ ] key ) {
return this . cache . containsKey ( key ) ;
return this . cache . containsKey ( new ByteArray ( key ) ) ;
}
}
/ * *
/ * *
@ -372,8 +396,8 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
* @return the indexContainer if one exist , null otherwise
* @return the indexContainer if one exist , null otherwise
* /
* /
public ReferenceContainer < ReferenceType > get ( final byte [ ] key , Set < String > urlselection ) {
public ReferenceContainer < ReferenceType > get ( final byte [ ] key , Set < String > urlselection ) {
if ( urlselection = = null ) return this . cache . get ( key ) ;
if ( urlselection = = null ) return this . cache . get ( new ByteArray ( key ) ) ;
ReferenceContainer < ReferenceType > c = this . cache . get ( key ) ;
ReferenceContainer < ReferenceType > c = this . cache . get ( new ByteArray ( key ) ) ;
if ( c = = null ) return null ;
if ( c = = null ) return null ;
// because this is all in RAM, we must clone the entries (flat)
// because this is all in RAM, we must clone the entries (flat)
ReferenceContainer < ReferenceType > c1 = new ReferenceContainer < ReferenceType > ( factory , c . getTermHash ( ) , c . row ( ) , c . size ( ) ) ;
ReferenceContainer < ReferenceType > c1 = new ReferenceContainer < ReferenceType > ( factory , c . getTermHash ( ) , c . row ( ) , c . size ( ) ) ;
@ -392,7 +416,7 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
* @return
* @return
* /
* /
public int count ( final byte [ ] key ) {
public int count ( final byte [ ] key ) {
ReferenceContainer < ReferenceType > c = this . cache . get ( key ) ;
ReferenceContainer < ReferenceType > c = this . cache . get ( new ByteArray ( key ) ) ;
if ( c = = null ) return 0 ;
if ( c = = null ) return 0 ;
return c . size ( ) ;
return c . size ( ) ;
}
}
@ -405,18 +429,19 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
public synchronized ReferenceContainer < ReferenceType > delete ( final byte [ ] termHash ) {
public synchronized ReferenceContainer < ReferenceType > delete ( final byte [ ] termHash ) {
// returns the index that had been deleted
// returns the index that had been deleted
assert this . cache ! = null ;
assert this . cache ! = null ;
return cache . remove ( termHash ) ;
return cache . remove ( new ByteArray ( termHash ) ) ;
}
}
public synchronized boolean remove ( final byte [ ] termHash , final String urlHash ) {
public synchronized boolean remove ( final byte [ ] termHash , final String urlHash ) {
assert this . cache ! = null ;
assert this . cache ! = null ;
final ReferenceContainer < ReferenceType > c = cache . get ( termHash ) ;
ByteArray tha = new ByteArray ( termHash ) ;
final ReferenceContainer < ReferenceType > c = cache . get ( tha ) ;
if ( ( c ! = null ) & & ( c . remove ( urlHash ) ! = null ) ) {
if ( ( c ! = null ) & & ( c . remove ( urlHash ) ! = null ) ) {
// removal successful
// removal successful
if ( c . size ( ) = = 0 ) {
if ( c . size ( ) = = 0 ) {
delete ( termHash ) ;
delete ( termHash ) ;
} else {
} else {
cache . put ( t ermHash , c ) ;
cache . put ( t ha , c ) ;
}
}
return true ;
return true ;
}
}
@ -426,14 +451,15 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
public synchronized int remove ( final byte [ ] termHash , final Set < String > urlHashes ) {
public synchronized int remove ( final byte [ ] termHash , final Set < String > urlHashes ) {
assert this . cache ! = null ;
assert this . cache ! = null ;
if ( urlHashes . size ( ) = = 0 ) return 0 ;
if ( urlHashes . size ( ) = = 0 ) return 0 ;
final ReferenceContainer < ReferenceType > c = cache . get ( termHash ) ;
ByteArray tha = new ByteArray ( termHash ) ;
final ReferenceContainer < ReferenceType > c = cache . get ( tha ) ;
int count ;
int count ;
if ( ( c ! = null ) & & ( ( count = c . removeEntries ( urlHashes ) ) > 0 ) ) {
if ( ( c ! = null ) & & ( ( count = c . removeEntries ( urlHashes ) ) > 0 ) ) {
// removal successful
// removal successful
if ( c . size ( ) = = 0 ) {
if ( c . size ( ) = = 0 ) {
delete ( termHash ) ;
delete ( termHash ) ;
} else {
} else {
cache . put ( t ermHash , c ) ;
cache . put ( t ha , c ) ;
}
}
return count ;
return count ;
}
}
@ -445,8 +471,8 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
if ( this . cache = = null | | container = = null | | container . size ( ) = = 0 ) return ;
if ( this . cache = = null | | container = = null | | container . size ( ) = = 0 ) return ;
// put new words into cache
// put new words into cache
final byte [ ] termHash = container . getTermHash ( ) ;
ByteArray tha = new ByteArray ( container . getTermHash ( ) ) ;
ReferenceContainer < ReferenceType > entries = cache . get ( t ermHash ) ; // null pointer exception? wordhash != null! must be cache==null
ReferenceContainer < ReferenceType > entries = cache . get ( t ha ) ; // null pointer exception? wordhash != null! must be cache==null
int added = 0 ;
int added = 0 ;
if ( entries = = null ) {
if ( entries = = null ) {
entries = container . topLevelClone ( ) ;
entries = container . topLevelClone ( ) ;
@ -455,7 +481,7 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
added = entries . putAllRecent ( container ) ;
added = entries . putAllRecent ( container ) ;
}
}
if ( added > 0 ) {
if ( added > 0 ) {
cache . put ( t ermHash , entries ) ;
cache . put ( t ha , entries ) ;
}
}
entries = null ;
entries = null ;
return ;
return ;
@ -463,10 +489,11 @@ public final class ReferenceContainerCache<ReferenceType extends Reference> exte
public synchronized void add ( final byte [ ] termHash , final ReferenceType newEntry ) {
public synchronized void add ( final byte [ ] termHash , final ReferenceType newEntry ) {
assert this . cache ! = null ;
assert this . cache ! = null ;
ReferenceContainer < ReferenceType > container = cache . get ( termHash ) ;
ByteArray tha = new ByteArray ( termHash ) ;
ReferenceContainer < ReferenceType > container = cache . get ( tha ) ;
if ( container = = null ) container = new ReferenceContainer < ReferenceType > ( factory , termHash , this . payloadrow , 1 ) ;
if ( container = = null ) container = new ReferenceContainer < ReferenceType > ( factory , termHash , this . payloadrow , 1 ) ;
container . put ( newEntry ) ;
container . put ( newEntry ) ;
cache . put ( t ermHash , container ) ;
cache . put ( t ha , container ) ;
}
}
public int minMem ( ) {
public int minMem ( ) {