Package net.i2p.addressbook
Class Daemon
java.lang.Object
net.i2p.addressbook.Daemon
Main class of addressbook. Performs updates, and runs the main loop.
As of 0.9.30, package private, run with DaemonThread.
- Author:
- Ragnarok
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Load the settings, set the proxy, then enter into the main loop.void
void
stop()
static void
static void
Run an update, using the Map settings to provide the parameters.static void
update
(AddressBook local, AddressBook router, File published, SubscriptionList subscriptions, Log log) Update the router and published address books using remote data from the subscribed address books listed in subscriptions.static void
update
(NamingService router, File published, SubscriptionList subscriptions, Log log) Update the router and published address books using remote data from the subscribed address books listed in subscriptions.void
wakeup()
Call this to get the addressbook to reread its config and refetch its subscriptions.
-
Field Details
-
VERSION
- See Also:
-
OLD_DEFAULT_SUB
- Since:
- 0.9.12
- See Also:
-
-
Constructor Details
-
Daemon
Daemon()
-
-
Method Details
-
update
public static void update(AddressBook local, AddressBook router, File published, SubscriptionList subscriptions, Log log) Update the router and published address books using remote data from the subscribed address books listed in subscriptions.- Parameters:
local
- The local AddressBook. This address book is never overwritten, so it is safe for the user to write to. It is only merged to the published addressbook. May be null.router
- The router AddressBook. This is the address book read by client applications.published
- The published AddressBook. This address book is published on the user's I2P Site so that others may subscribe to it. May be null. If non-null, overwrite with the new addressbook.subscriptions
- A SubscriptionList listing the remote address books to update from.log
- The log to write changes and conflicts to. May be null.
-
update
public static void update(NamingService router, File published, SubscriptionList subscriptions, Log log) Update the router and published address books using remote data from the subscribed address books listed in subscriptions. Merging of the "local" addressbook is NOT supported.- Parameters:
router
- The NamingService to update, generally the root NamingService from the context.published
- The published AddressBook. This address book is published on the user's I2P Site so that others may subscribe to it. May be null. If non-null, overwrite with the new addressbook.subscriptions
- A SubscriptionList listing the remote address books to update from.log
- The log to write changes and conflicts to. May be null.- Since:
- 0.8.7
-
update
Run an update, using the Map settings to provide the parameters.- Parameters:
settings
- A Map containg the parameters needed by update.home
- The directory containing addressbook's configuration files.
-
main
Load the settings, set the proxy, then enter into the main loop. The main loop performs an immediate update, and then an update every number of hours, as configured in the settings file.- Parameters:
args
- Command line arguments. If there are any arguments provided, the first is taken as addressbook's home directory, and the others are ignored.
-
test
- Since:
- 0.9.26
-
run
- Parameters:
args
- may be null
-
wakeup
public void wakeup()Call this to get the addressbook to reread its config and refetch its subscriptions. -
stop
public void stop()
-