Struct tor_dirmgr::DirMgr[][src]

pub struct DirMgr<R: Runtime> { /* fields omitted */ }
Expand description

A directory manager to download, fetch, and cache a Tor directory.

A DirMgr can operate in three modes:

  • In offline mode, it only reads from the cache, and can only read once.
  • In read-only mode, it reads from the cache, but checks whether it can acquire an associated lock file. If it can, then it enters read-write mode. If not, it checks the cache periodically for new information.
  • In read-write mode, it knows that no other process will be writing to the cache, and it takes responsibility for fetching data from the network and updating the directory with new directory information.

Implementations

Try to load the directory from disk, without launching any kind of update process.

This function runs in offline mode: it will give an error if the result is not up-to-date, or not fully downloaded.

In general, you shouldn’t use this function in a long-running program; it’s only suitable for command-line or batch tools.

Return a current netdir, either loading it or bootstrapping it as needed.

Like load_once, but will try to bootstrap (or wait for another process to bootstrap) if we don’t have an up-to-date bootstrapped directory.

In general, you shouldn’t use this function in a long-running program; it’s only suitable for command-line or batch tools.

Return a new directory manager from a given configuration, bootstrapping from the network as necessary.

This function will to return until the directory is bootstrapped enough to build circuits. It will also launch a background task that fetches any missing information, and that replaces the directory when a new one is available.

Return an Arc handle to our latest directory, if we have one.

Return a new asynchronous stream about events taking place with this directory manager.

The caller must regularly process events from this stream to prevent it from blocking.

Try to load the text of a single document described by doc from storage.

Load the text for a collection of documents.

If many of the documents have the same type, this can be more efficient than calling text.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more