John-John Tedro
5189b69e7e
Simplify Config structure
...
This simplifies some of the `Config` structure, in particular this
means:
Parameters which are meaningfully equivalent longer stored in
an `Option<T>`, an example of this is `channels`. If you don't
want to join any channels you simply leave it as empty instead.
In effect, `None` is behaviorally equivalent to `vec![]`.
We don't allocate when accessing certain configuration options.
For example, when accessing `channels` we used to allocate a
vector to handle the "empty case", we simply return the slice
corresponding to the list of channels instead.
We skip serializing empty or optional configuration fields.
From a deserialization perspective this is already something
that was mostly supported through use of `Option<T>` and
`#[serde(default)]`.
2019-12-27 17:12:46 +01:00
John-John Tedro
549e2e8722
Port to tokio 0.2
2019-12-18 21:06:04 +01:00
Adam Gausmann
400c982639
Fix compilation errors on 0.14
2019-06-10 20:52:36 -05:00
Aaron Weiss
0b7a7a0f02
fixup! Merge branch 'develop' into 0.14
2019-06-06 13:41:30 -04:00
Aaron Weiss
c383c6241e
Merge branch 'develop' into 0.14
2019-06-06 13:40:55 -04:00
jesopo
379a2db9fa
Update source_response
test
2019-05-18 23:08:08 +01:00
jesopo
9dbb04431a
Don't send an empty CTCP SOURCE response
2019-05-18 22:51:55 +01:00
John-John Tedro
f02362c782
Mark Future in PackedIrcClient as Send + 'static
2019-03-17 11:52:48 +01:00
Daniel Griffen
971a386ca0
spawn handler futures on the reactor
2019-01-09 20:18:38 -08:00
David Blajda
199f591e78
Handle the case of a single SOH in PRIVMSG
2019-01-03 19:33:17 +00:00
Aaron Weiss
47d9c4c78b
Merge pull request #149 from brigand/feat/develop/message-prefix
...
Introduces Prefix enum
2018-10-15 11:16:30 -04:00
Christoph Herzog
e112efe7dd
Add 'Send' bound for PackedClient client future.
...
The Future is Send anyway, but this bound on the Box is neccessary
to use the future across threads because the compiler can't figure
out the Send bound otherwise.
2018-10-04 18:20:41 +02:00
Christoph Herzog
e5089fa317
Use tokio::net::tcp::ConnectFuture instead of deprecated re-export.
2018-10-04 02:53:56 +02:00
Christoph Herzog
2aff64b645
Refactor IrcClientFuture and ConnectionFuture to own the config
...
This commit refactors IrcClientFuture and ConnectionFuture to own
the config instead of holding a reference.
This is required for reconnecting in dynamic contexts.
This is not possible with the old API, because Config is a reference,
requiring the value to live for the whole execution of the reactor.
2018-10-04 02:52:53 +02:00
Douman
23112f7582
Clean up tokio-core
2018-09-22 23:43:47 +03:00
Frankie Bagnardi
c44ec0984e
Prefix with FromStr and Display
2018-09-17 21:59:02 -07:00
Aaron Weiss
f109c10475
Fixed a warning in config.rs (for some tests) and the README example.
2018-09-17 18:08:21 -04:00
Aaron Weiss
53fb890a7e
Merged develop onto 0.14 (which was tricky, and this might have introduced bugs?).
2018-09-17 17:50:53 -04:00
Jokler
0be5cb26c8
Upgrade native-tls and tokio-tls to 0.2
2018-09-17 02:11:25 +02:00
Eunchong Yu
8ffac6bef0
Replace deprecated tokio_io::codec to tokio_codec
2018-08-19 09:18:50 +09:00
Eunchong Yu
12003c880c
Remove deprecated AsciiExt
2018-08-19 08:50:38 +09:00
Aaron Weiss
c69e944033
Reverted some of the TLS changes from #141 because they broke TLS completely.
2018-06-18 21:29:45 +02:00
Ratys
bdeb7054b3
Removed PackedIrcClient
, IrcClientFuture
:
...
They are redundant now, and are dead code;
Cleaned up unused imports.
2018-06-08 22:18:40 +03:00
Ratys
5275e79971
Rewrote conn
module to utilize impl Future
in return position:
...
Changed all involved structs to take `Config`s, rather than borrow them - this is due to `'static` requirement that is bound to crop up somewhere, when spawning a future into a reactor/runtime.
Updated examples and docs to reflect the change.
2018-06-08 22:00:49 +03:00
Ratys
bfb8bf5a1b
Partial rewrite to utilize impl Future
in return position:
...
Changed return types relevant methods of `conn` module; no implementation changes;
Rewrote relevant methods of `reactor` and `client`.
2018-06-08 17:25:57 +03:00
Ratys
b5a575966f
Partially moved from tokio_core
to tokio
, removed handle
args:
...
Migrated `conn` and `client` modules to `tokio` types;
Removed `handle` arguments and fields in `reactor`, `conn` and `client` modules;
Removed unused imports of `Handle`, updated doctest.
2018-06-08 17:24:26 +03:00
Aaron Weiss
7d8feafb52
Documented panic condition for client registration with a reactor.
2018-05-14 20:53:06 +02:00
Aaron Weiss
5bd349f8ff
Added more documentation to send_privmsg about line splitting.
2018-05-11 22:28:18 +02:00
Aaron Weiss
4e9b1ece19
Improved documentation of the IrcTransport
.
2018-05-05 16:22:33 +02:00
Aaron Weiss
0e53b979bc
Added a bunch of additional comments and documentation to irc::client
.
2018-05-05 16:01:59 +02:00
Aaron Weiss
0235c71268
Added current nickname tracking ( fixes #125 ). [BREAKING]
2018-05-05 15:12:29 +02:00
Aaron Weiss
11f86aedc3
Fixed irc crate to use irc-proto crate now.
2018-05-05 13:37:36 +02:00
Alex S. Glomsaas
e80a0f3a89
Implement CertFP
...
resolves #131
2018-03-31 21:09:42 +02:00
Aaron Weiss
f2e10001c0
Improved the documentation for Config
.
2018-03-31 16:22:07 +02:00
Aaron Weiss
845ca63416
Track users who are kicked out of channels ( fixes #127 ).
2018-03-31 15:39:02 +02:00
Aaron Weiss
cef0462859
Added a regression test for sending raw messages (see #128 ).
2018-03-31 15:39:02 +02:00
Aaron Weiss
7680227222
Sanitize messages later to stop the problematic round-trip parsing.
2018-03-31 15:39:01 +02:00
panicbit
e514c97688
Use FnMut for registering client handlers
2018-03-26 08:53:38 +02:00
Aaron Weiss
4921127372
Changed ping logic to eliminate a rare panic under heavy load ( fixes #120 ).
2018-02-23 21:08:38 +01:00
Aaron Weiss
4509336d74
Fixed config tests after Config::get_option API change.
2018-02-21 12:23:54 +01:00
Aaron Weiss
7d744529e6
Eliminated possible panics in Config::get_option.
2018-02-21 12:17:41 +01:00
Aaron Weiss
363629f400
Changed ClientExt to be more generic.
2018-02-18 22:54:24 +01:00
Aaron Weiss
3847bcb5a6
Always skip serializing config's path.
2018-02-18 21:39:06 +01:00
Aaron Weiss
c91d14a949
Fixed a small bug when using nochanlists.
2018-02-18 21:13:01 +01:00
Aaron Weiss
cabe0919c8
Cleaned up a bit of testing code.
2018-02-12 20:58:50 +01:00
Emīls Piņķis
a8cdf1ecfc
Add error type for when there are no valid nicks
2018-02-12 19:16:00 +00:00
Aaron Weiss
e847cda40a
IrcTransport::poll_complete now polls the ping timer ( fixes #115 ).
2018-02-08 02:21:08 +01:00
Aaron Weiss
4c26dfc3cd
Reverted a7ae091
because it caused a regression ( resolves #112 ).
2018-01-29 14:04:41 +01:00
Aaron Weiss
ea2c05f9fc
Removed irc::client::server (which should've been done before, woops).
2018-01-29 14:01:44 +01:00
Aaron Weiss
bc8f7342dd
Added missing call to IrcReactor::run
in the reactor docs.
2018-01-28 14:04:21 +01:00