Package net.i2p.addressbook
Class AddressBook
java.lang.Object
net.i2p.addressbook.AddressBook
- All Implemented Interfaces:
Iterable<Map.Entry<String,HostTxtEntry>>
class AddressBook extends Object implements Iterable<Map.Entry<String,HostTxtEntry>>
An address book for storing human readable names mapped to base64 i2p
destinations. AddressBooks can be created from local and remote files, merged
together, and written out to local files.
Methods are NOT thread-safe.
- Author:
- Ragnarok
-
Field Summary
Fields Modifier and Type Field Description (package private) static long
MAX_SUB_SIZE
-
Constructor Summary
Constructors Constructor Description AddressBook(File file)
Construct an AddressBook from the contents of the file at file.AddressBook(String testsubfile)
Test only.AddressBook(Map<String,HostTxtEntry> addresses)
Construct an AddressBook from the contents of the Map addresses.AddressBook(Subscription subscription, String proxyHost, int proxyPort)
Construct an AddressBook from the Subscription subscription. -
Method Summary
Modifier and Type Method Description void
delete()
Delete the temp file or clear the map.String
getLocation()
Return the location of the file this AddressBook was constructed from.static boolean
isValidKey(String host)
Do basic validation of the hostname hostname was already converted to lower case by HostTxtParser.parse()Iterator<Map.Entry<String,HostTxtEntry>>
iterator()
Return an iterator over the addresses in the AddressBook.void
merge(AddressBook other, boolean overwrite, Log log)
Merge this AddressBook with AddressBook other, writing messages about new addresses or conflicts to log.String
toString()
Return a string representation of the origin of the AddressBook.void
write()
Write this AddressBook out to the file it was read from.void
write(File file)
Write the contents of this AddressBook out to the File file.
-
Field Details
-
MAX_SUB_SIZE
static final long MAX_SUB_SIZE- See Also:
- Constant Field Values
-
-
Constructor Details
-
AddressBook
Construct an AddressBook from the contents of the Map addresses.- Parameters:
addresses
- A Map containing human readable addresses as keys, mapped to base64 i2p destinations.
-
AddressBook
Construct an AddressBook from the Subscription subscription. If the address book at subscription has not changed since the last time it was read or cannot be read, return an empty AddressBook. Set a maximum size of the remote book to make it a little harder for a malicious book-sender. Yes, the EepGet fetch() is done in this constructor. This stores the subscription in a temporary file and does not read the whole thing into memory. An AddressBook created with this constructor may not be modified or written using write(). It may be a merge source (an parameter for another AddressBook's merge()) but may not be a merge target (this.merge() will throw an exception).- Parameters:
subscription
- A Subscription instance pointing at a remote address book.proxyHost
- hostname of proxyproxyPort
- port number of proxy
-
AddressBook
Construct an AddressBook from the contents of the file at file. If the file cannot be read, construct an empty AddressBook. This reads the entire file into memory. The resulting map is modifiable and may be a merge target.- Parameters:
file
- A File pointing at a file with lines in the format "key=value", where key is a human readable name, and value is a base64 i2p destination.
-
AddressBook
Test only.- Parameters:
testsubfile
- path to a file containing the simulated fetch of a subscription- Since:
- 0.9.26
-
-
Method Details
-
iterator
Return an iterator over the addresses in the AddressBook.- Specified by:
iterator
in interfaceIterable<Map.Entry<String,HostTxtEntry>>
- Since:
- 0.8.7
-
delete
public void delete()Delete the temp file or clear the map.- Since:
- 0.8.7
-
getLocation
Return the location of the file this AddressBook was constructed from.- Returns:
- A String representing either an abstract path, or a url, depending on how the instance was constructed. Will be null if created with the Map constructor.
-
toString
Return a string representation of the origin of the AddressBook. -
isValidKey
Do basic validation of the hostname hostname was already converted to lower case by HostTxtParser.parse() -
merge
Merge this AddressBook with AddressBook other, writing messages about new addresses or conflicts to log. Addresses in AddressBook other that are not in this AddressBook are added to this AddressBook. In case of a conflict, addresses in this AddressBook take precedence- Parameters:
other
- An AddressBook to merge with.overwrite
- True to overwritelog
- The log to write messages about new addresses or conflicts to. May be null.- Throws:
IllegalStateException
- if this was created with the Subscription constructor.
-
write
Write the contents of this AddressBook out to the File file. If the file cannot be writen to, this method will silently fail.- Parameters:
file
- The file to write the contents of this AddressBook too.- Throws:
IllegalStateException
- if this was created with the Subscription constructor.
-
write
public void write()Write this AddressBook out to the file it was read from. Requires that AddressBook was constructed from a file on the local filesystem. If the file cannot be writen to, this method will silently fail.- Throws:
IllegalStateException
- if this was not created with the File constructor.
-