2018-08-29 22:26:19 -07:00
|
|
|
// This file is part of Moonfire NVR, a security camera network video recorder.
|
|
|
|
// Copyright (C) 2018 Scott Lamb <slamb@slamb.org>
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// In addition, as a special exception, the copyright holders give
|
|
|
|
// permission to link the code of portions of this program with the
|
|
|
|
// OpenSSL library under certain conditions as described in each
|
|
|
|
// individual source file, and distribute linked combinations including
|
|
|
|
// the two.
|
|
|
|
//
|
|
|
|
// You must obey the GNU General Public License in all respects for all
|
|
|
|
// of the code used other than OpenSSL. If you modify file(s) with this
|
|
|
|
// exception, you may extend this exception to your version of the
|
|
|
|
// file(s), but you are not obligated to do so. If you do not wish to do
|
|
|
|
// so, delete this exception statement from your version. If you delete
|
|
|
|
// this exception statement from all source files in the program, then
|
|
|
|
// also delete it here.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! Tools for implementing a `http_serve::Entity` body composed from many "slices".
|
|
|
|
|
2018-12-28 21:53:29 -06:00
|
|
|
use base::Error;
|
2018-08-29 22:26:19 -07:00
|
|
|
use futures::{Stream, stream};
|
2020-01-08 23:04:36 -08:00
|
|
|
use reffers::ARefss;
|
2018-08-29 22:26:19 -07:00
|
|
|
use std::error::Error as StdError;
|
2020-01-08 23:04:36 -08:00
|
|
|
use std::pin::Pin;
|
2018-08-29 22:26:19 -07:00
|
|
|
|
2020-01-08 23:04:36 -08:00
|
|
|
pub struct Chunk(ARefss<'static, [u8]>);
|
2018-08-29 22:26:19 -07:00
|
|
|
|
|
|
|
//pub type CompatError = ::failure::Compat<Error>;
|
2019-06-14 08:47:11 -07:00
|
|
|
pub type BoxedError = Box<dyn StdError + Send + Sync>;
|
2020-01-08 23:04:36 -08:00
|
|
|
pub type BodyStream = Box<dyn Stream<Item = Result<Chunk, BoxedError>> + Send + Sync + 'static>;
|
2018-08-29 22:26:19 -07:00
|
|
|
|
|
|
|
pub fn wrap_error(e: Error) -> BoxedError {
|
|
|
|
Box::new(e.compat())
|
|
|
|
}
|
|
|
|
|
2020-01-08 23:04:36 -08:00
|
|
|
impl From<ARefss<'static, [u8]>> for Chunk {
|
|
|
|
fn from(r: ARefss<'static, [u8]>) -> Self { Chunk(r) }
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&'static [u8]> for Chunk {
|
2020-01-08 23:04:36 -08:00
|
|
|
fn from(r: &'static [u8]) -> Self { Chunk(ARefss::new(r)) }
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
|
2018-11-25 21:31:50 -08:00
|
|
|
impl From<&'static str> for Chunk {
|
2020-01-08 23:04:36 -08:00
|
|
|
fn from(r: &'static str) -> Self { Chunk(ARefss::new(r.as_bytes())) }
|
2018-11-25 21:31:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<String> for Chunk {
|
2020-01-08 23:04:36 -08:00
|
|
|
fn from(r: String) -> Self { Chunk(ARefss::new(r.into_bytes()).map(|v| &v[..])) }
|
2018-11-25 21:31:50 -08:00
|
|
|
}
|
|
|
|
|
2018-08-29 22:26:19 -07:00
|
|
|
impl From<Vec<u8>> for Chunk {
|
2020-01-08 23:04:36 -08:00
|
|
|
fn from(r: Vec<u8>) -> Self { Chunk(ARefss::new(r).map(|v| &v[..])) }
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ::bytes::Buf for Chunk {
|
|
|
|
fn remaining(&self) -> usize { self.0.len() }
|
|
|
|
fn bytes(&self) -> &[u8] { &*self.0 }
|
|
|
|
fn advance(&mut self, cnt: usize) {
|
2020-01-08 23:04:36 -08:00
|
|
|
self.0 = ::std::mem::replace(&mut self.0, ARefss::new(&[][..])).map(|b| &b[cnt..]);
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-08 23:04:36 -08:00
|
|
|
pub struct Body(Pin<BodyStream>);
|
2018-08-29 22:26:19 -07:00
|
|
|
|
2020-01-08 23:04:36 -08:00
|
|
|
impl hyper::body::HttpBody for Body {
|
2018-08-29 22:26:19 -07:00
|
|
|
type Data = Chunk;
|
|
|
|
type Error = BoxedError;
|
|
|
|
|
2020-01-08 23:04:36 -08:00
|
|
|
fn poll_data(self: Pin<&mut Self>, cx: &mut std::task::Context)
|
|
|
|
-> std::task::Poll<Option<Result<Self::Data, Self::Error>>> {
|
|
|
|
// This is safe because the pin is not structural.
|
|
|
|
// https://doc.rust-lang.org/std/pin/#pinning-is-not-structural-for-field
|
|
|
|
// (The field _holds_ a pin, but isn't itself pinned.)
|
|
|
|
unsafe { self.get_unchecked_mut() }.0.as_mut().poll_next(cx)
|
|
|
|
//Pin::from(self.0).as_mut().poll_next(cx)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_trailers(self: Pin<&mut Self>, _cx: &mut std::task::Context)
|
|
|
|
-> std::task::Poll<Result<Option<http::header::HeaderMap>, Self::Error>> {
|
|
|
|
std::task::Poll::Ready(Ok(None))
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<BodyStream> for Body {
|
2020-01-08 23:04:36 -08:00
|
|
|
fn from(b: BodyStream) -> Self { Body(Pin::from(b)) }
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
|
2018-11-25 21:31:50 -08:00
|
|
|
impl<C: Into<Chunk>> From<C> for Body {
|
|
|
|
fn from(c: C) -> Self {
|
2020-01-08 23:04:36 -08:00
|
|
|
Body(Box::pin(stream::once(futures::future::ok(c.into()))))
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Error> for Body {
|
|
|
|
fn from(e: Error) -> Self {
|
2020-01-08 23:04:36 -08:00
|
|
|
Body(Box::pin(stream::once(futures::future::err(wrap_error(e)))))
|
2018-08-29 22:26:19 -07:00
|
|
|
}
|
|
|
|
}
|