Commit graph

20 commits

Author SHA1 Message Date
fox.cpp
cf9e81d8a1
Rework how error inspection and logging is done
Previous error reporting code was inconsistent in terms of what is
logged, when and by whom. This caused several problems such as: logs
missing important error context, duplicated error messages, too verbose
messages, etc.

Instead of logging all generated errors, module should log
only errors it 'handles' somehow and does not simply pass it to the
caller. This removes duplication, however, also it removes context
information. To fix this, exterrors package was extended to provide
utilities for error wrapping. These utilities provide ability to
'attach' arbitrary key-value ('fields') pairs to any error object while
preserving the original value (using to Go 1.13 error handling
primitives).

In additional to solving problems described above this commit makes logs
machine-readable, creating the possibility for automated analysis.
Three new functions were added to the Logger object, providing
loosely-typed structured logging. However, they do not completely
replace plain logging and are used only where they are useful (to allow
automated analysis of message processing logs).

So, basically, instead of being logged god knows where and when,
all context information is attached to the error object and then it is
passed up until it is handled somewhere, at this point it is logged
together with all context information and then discarded.
2019-11-02 05:30:48 +03:00
fox.cpp
ce4dbb622f
target/queue: Strip sensitive metadata before saving it on disk 2019-10-26 01:02:13 +03:00
fox.cpp
ba0a2e221c
Fix bunch of linter warnings
Some fixed warnings are not actual problems. I just want output
golangci-run to be smaller. Otherwise it is problematic to see
actual problems found by linters due to amount of noise.

testutils, ctl/maddyctl: Remove quite a lot of unused entities.
msgpipeline: Fix typo in log message.
msgpipeline: Add missing 'case 0' for 'reject' directive parsing
msgpipeline: Preallocate slice in parseChecksGroup
Check errors in some places in tests.
smtp_upstream: Move DATA command use into Commit
target/queue: Avoid copying sync.Mutex
    Not a problem since it is not used after copying, but I just want
    govet to shut up.
2019-10-22 04:06:59 +03:00
fox.cpp
028d8b914c
Rename dispatcher to "msgpipeline"
New name more precisely describes what it is doing now. It was initally
meant to be more generic and usable for other purposes, but I don't
think we will need that flexibility.
2019-10-13 18:42:51 +03:00
fox.cpp
6cf661f2ba
queue: Ensure unique message ID for each attempt
Old behavior breaks assumption that MsgID is unique for each delivery.
2019-10-08 00:56:07 +03:00
fox.cpp
c12fd8dd66
queue: Expand package documentation with high-level implementation summary 2019-10-08 00:56:07 +03:00
fox.cpp
a8644711ad
queue: Trace calls to nested target when 'debug' is on
Usefull to catch misbehaving target implementations.
2019-09-28 18:50:45 +03:00
fox.cpp
23c76cc518
queue: Make logs slightly more useful
Log successfull delivery to each recipient.

Log permanent failures separately for each recipients. It makes it
easier to process log in scripts.

Add list of recipients that will be retried to the "will retry"
message.
2019-09-28 13:04:13 +03:00
fox.cpp
3a6e6458a7
remote, queue, module: Make StatusCollector goroutine-safe
In most cases where StatusCollector is used, it is used
from multiple goroutines.
2019-09-28 11:55:26 +03:00
fox.cpp
6832ab5d69
queue: Unexport PartialError
Now it is a queue implementation detail.
2019-09-28 11:55:25 +03:00
fox.cpp
cd94dd2c0c
queue: Use PartialDelivery interface instead of PartialError 2019-09-28 11:55:25 +03:00
fox.cpp
1a2d2036ca
queue: Make use of exterrors 2019-09-28 11:53:08 +03:00
fox.cpp
6c6461dcb6
queue: Use inline arguments for storage location 2019-09-20 19:50:45 +03:00
fox.cpp
1edd031f6a
module: Revise how inline definition arguments are handled
Stop using weird hacks and just pass them to the module, they are
assumed to be aware of inline definition logic anyway.
2019-09-20 18:52:18 +03:00
fox.cpp
e253cca130
queue: Drop worker goroutines idea
Simply start a goroutine when needed and use a semaphore
to limit concurrency.

Closes #110.
2019-09-20 16:46:13 +03:00
fox.cpp
f8fe530612
queue: Fix NDNs being generated for all messages 2019-09-18 23:07:00 +03:00
fox.cpp
6ba26d1e4e
Rework how work directories are handled
Most previously existing ways to specify Config/State/Libexec
directories are removed. Now they can be set only using
command line flags. Generally, having multiple ways to set these
values can be confusing and also believed to be unnecessary.

All relative paths in the configuration are now interpreted
relatively to the State directory.

Additionally, new value is added: Runtime directory. It will used
in the future for temporary files.

All directories that should be writable will be created on startup
if possible and checked for writebility.
2019-09-15 04:03:24 +03:00
fox.cpp
61b29a6f68
Remove MsgMeta.OurHostname field
Closes #112.
2019-09-13 00:29:52 +03:00
fox.cpp
6feb6bd8a5
config/map: Allow to specify default value for Bool matcher
It makes sense to allow having default of bool flag to true and
allow writing 'name no' to disable it. This allows getting rid of
"dont", "no" etc in names or certain directives which are meant to be
enabled by default. IMO 'do_x no' looks better than 'dont_do_x'
2019-09-12 02:19:10 +03:00
fox.cpp
f77b204b5e
Fix-up 35c3b1c
Due to .gitignore, target/queue directory got ignored and was not
commited.

This commit makes problematic ignore filter more strict and adds
accidentally removed directory.
2019-09-08 17:15:18 +03:00