Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jill
Arti
Commits
9a6518fb
Commit
9a6518fb
authored
3 years ago
by
Ian Jackson
Browse files
Options
Downloads
Patches
Plain Diff
tor-error: splitting/lumping guidelines
parent
9a552900
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
crates/tor-error/src/lib.rs
+32
-0
32 additions, 0 deletions
crates/tor-error/src/lib.rs
with
32 additions
and
0 deletions
crates/tor-error/src/lib.rs
+
32
−
0
View file @
9a6518fb
...
...
@@ -52,6 +52,38 @@ pub use truncated::*;
///
/// When forwarding or reporting errors, use the whole error (e.g., `TorError`), not just the kind:
/// the error itself will contain more detail and context which is useful to humans.
//
// Splitting vs lumping guidelines:
//
// # Split on the place which caused the error
//
// We should distinguish, insofar as we can, within whose bailiwick
// the error originated:
// - This very process, Tor code (EK::Internal)
// - This very process, application code (EK::BadApiUsage)
// - Some other process on the same machine (eg EK::LocalProtocolViolation)
// - The local network
// - The Tor network
// - The "far end", ie the public internet outside an exit node
// or (when we support it) the onion service we are connecting to
// Obviously in many cases we may not be able to say for sure, so each
// error kind represents not *one* of the above, but a specified *subset*.
//
// # Lump parts/aspects/subprotocols of Tor
//
// Unless we expect and intend the user or programmer to excercise an ability to influence which
// remote entities we try to use, we should not distinguish between the different kinds of remote
// Tor entity, nor between the different protocols or protocol layers which we use.
//
// For example, Failures getting directory information from directory caches should be lumped with
// failures to extend a circuit through a relay.
//
// This is because we expect applications not to have detailed knowledge of Tor.
//
// # Avoid exposing implementation details
//
// ErrorKinds should not relate to particular code paths in the Arti codebase.
#[derive(Debug,
Clone,
Copy,
PartialEq,
Eq,
Display)]
#[non_exhaustive]
pub
enum
ErrorKind
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment