pub struct PingUploadManager { /* private fields */ }
Expand description

Manages the pending pings queue and directory.

Implementations§

Creates a new PingUploadManager.

Arguments
  • data_path - Path to the pending pings directory.
  • language_binding_name - The name of the language binding calling this managers instance.
Panics

Will panic if unable to spawn a new thread.

Spawns a new thread and processes the pending pings directories, filling up the queue with whatever pings are in there.

Returns

The JoinHandle to the spawned thread

Enqueue a ping for upload.

Adds rate limiting capability to this upload manager.

The rate limiter will limit the amount of calls to get_upload_task per interval.

Setting this will restart count and timer in case there was a previous rate limiter set (e.g. if we have reached the current limit and call this function, we start counting again and the caller is allowed to asks for tasks).

Arguments
  • interval - the amount of seconds in each rate limiting window.
  • max_tasks - the maximum amount of task requests allowed per interval.

Reads a ping file, creates a PingRequest and adds it to the queue.

Duplicate requests won’t be added.

Arguments
  • glean - The Glean object holding the database.
  • document_id - The UUID of the ping in question.

Clears the pending pings queue, leaves the deletion-request pings.

Gets the next PingUploadTask.

Arguments
  • glean - The Glean object holding the database.
  • log_ping - Whether to log the ping before returning.
Returns

The next PingUploadTask.

Processes the response from an attempt to upload a ping.

Based on the HTTP status of said response, the possible outcomes are:

  • 200 - 299 Success Any status on the 2XX range is considered a succesful upload, which means the corresponding ping file can be deleted. Known 2XX status:

    • 200 - OK. Request accepted into the pipeline.
  • 400 - 499 Unrecoverable error Any status on the 4XX range means something our client did is not correct. It is unlikely that the client is going to recover from this by retrying, so in this case the corresponding ping file can also be deleted. Known 4XX status:

    • 404 - not found - POST/PUT to an unknown namespace
    • 405 - wrong request type (anything other than POST/PUT)
    • 411 - missing content-length header
    • 413 - request body too large Note that if we have badly-behaved clients that retry on 4XX, we should send back 202 on body/path too long).
    • 414 - request path too long (See above)
  • Any other error For any other error, a warning is logged and the ping is re-enqueued. Known other errors:

    • 500 - internal error
Note

The disk I/O performed by this function is not done off-thread, as it is expected to be called off-thread by the platform.

Arguments
  • glean - The Glean object holding the database.
  • document_id - The UUID of the ping in question.
  • status - The HTTP status of the response.

Trait Implementations§

Formats the value using the given formatter. Read more

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

Returns the argument unchanged.

Create a new handle for an Arc value Read more
Clone a handle Read more
Consume a handle, getting back the initial Arc<>
Get a clone of the Arc<> using a “borrowed” handle. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.