mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
wip
This commit is contained in:
parent
5d29038f30
commit
f240db8296
1 changed files with 55 additions and 40 deletions
|
@ -121,7 +121,7 @@ impl<T> Handler for StreamOpsHandler<T> {
|
||||||
for (id, change) in self.feed.drain(..) {
|
for (id, change) in self.feed.drain(..) {
|
||||||
match change {
|
match change {
|
||||||
Change::Readable => {
|
Change::Readable => {
|
||||||
if let Some(item) = streams.get_mut(id) {
|
let item = &mut streams[id];
|
||||||
let result = item.context.with_read_buf(|buf| {
|
let result = item.context.with_read_buf(|buf| {
|
||||||
let chunk = buf.chunk_mut();
|
let chunk = buf.chunk_mut();
|
||||||
let b = chunk.as_mut_ptr();
|
let b = chunk.as_mut_ptr();
|
||||||
|
@ -146,17 +146,12 @@ impl<T> Handler for StreamOpsHandler<T> {
|
||||||
self.inner.api.register(item.fd, id, Interest::Readable);
|
self.inner.api.register(item.fd, id, Interest::Readable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
Change::Writable => {
|
Change::Writable => {
|
||||||
if let Some(item) = streams.get_mut(id) {
|
let item = &mut streams[id];
|
||||||
let result = item.context.with_write_buf(|buf| {
|
let result = item.context.with_write_buf(|buf| {
|
||||||
let slice = &buf[..];
|
let slice = &buf[..];
|
||||||
syscall!(
|
syscall!(
|
||||||
break libc::write(
|
break libc::write(item.fd, slice.as_ptr() as _, slice.len())
|
||||||
item.fd,
|
|
||||||
slice.as_ptr() as _,
|
|
||||||
slice.len()
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -164,7 +159,6 @@ impl<T> Handler for StreamOpsHandler<T> {
|
||||||
self.inner.api.register(item.fd, id, Interest::Writable);
|
self.inner.api.register(item.fd, id, Interest::Writable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
Change::Error(err) => {
|
Change::Error(err) => {
|
||||||
if let Some(item) = streams.get_mut(id) {
|
if let Some(item) = streams.get_mut(id) {
|
||||||
item.context.stopped(Some(err));
|
item.context.stopped(Some(err));
|
||||||
|
@ -259,9 +253,30 @@ impl<T> StreamCtl<T> {
|
||||||
self.id,
|
self.id,
|
||||||
item.fd
|
item.fd
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let result = item.context.with_read_buf(|buf| {
|
||||||
|
let chunk = buf.chunk_mut();
|
||||||
|
let b = chunk.as_mut_ptr();
|
||||||
|
Poll::Ready(
|
||||||
|
task::ready!(syscall!(break libc::read(item.fd, b as _, chunk.len())))
|
||||||
|
.inspect(|size| {
|
||||||
|
unsafe { buf.advance_mut(*size) };
|
||||||
|
log::debug!(
|
||||||
|
"{}: {:?}, SIZE: {:?}, BUF: {:?}",
|
||||||
|
item.context.tag(),
|
||||||
|
item.fd,
|
||||||
|
size,
|
||||||
|
buf,
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
});
|
||||||
|
|
||||||
|
if result.is_pending() {
|
||||||
self.inner
|
self.inner
|
||||||
.api
|
.api
|
||||||
.register(item.fd, self.id, Interest::Readable);
|
.register(item.fd, self.id, Interest::Readable);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue