upgrade to async hyper

serve_generated_bytes is >3X faster. One caveat is that the reactor thread may
stall when reading from the memory-mapped slice. Moonfire NVR is basically a
single-user program, so that may not be so bad, but we'll see.
This commit is contained in:
Scott Lamb 2017-03-02 19:29:28 -08:00
parent 618709734a
commit 1cf27c189f
11 changed files with 1067 additions and 774 deletions

752
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -4,17 +4,18 @@ version = "0.1.0"
authors = ["Scott Lamb <slamb@slamb.org>"] authors = ["Scott Lamb <slamb@slamb.org>"]
[features] [features]
nightly = []
# The nightly feature is used within moonfire-nvr itself to gate the
# benchmarks. Also pass it along to crates that can benefit from it.
nightly = ["parking_lot/nightly"]
[dependencies] [dependencies]
byteorder = "1.0" byteorder = "1.0"
chan = "0.1"
chan-signal = "0.2"
docopt = "0.7" docopt = "0.7"
futures = "0.1"
fnv = "1.0" fnv = "1.0"
http-entity = { git = "https://github.com/scottlamb/http-entity" } http-entity = { git = "https://github.com/scottlamb/http-entity", branch = "hyper-0.11.x" }
hyper = { git = "https://github.com/scottlamb/hyper", branch = "moonfire-on-0.10.x" } hyper = { git = "https://github.com/scottlamb/hyper", branch = "moonfire-on-0.11.x" }
lazycell = "0.5"
lazy_static = "0.2" lazy_static = "0.2"
libc = "0.2" libc = "0.2"
log = { version = "0.3", features = ["release_max_level_info"] } log = { version = "0.3", features = ["release_max_level_info"] }
@ -22,6 +23,8 @@ lru-cache = "0.1"
memmap = "0.5" memmap = "0.5"
mime = "0.2" mime = "0.2"
openssl = "0.9" openssl = "0.9"
parking_lot = { version = "0.3.8", features = [] }
reffers = { git = "https://github.com/diwic/reffers-rs" }
regex = "0.2" regex = "0.2"
rusqlite = "0.9" rusqlite = "0.9"
rustc-serialize = "0.3" rustc-serialize = "0.3"
@ -34,10 +37,13 @@ slog-stdlog = "1.1"
slog-term = "1.3" slog-term = "1.3"
smallvec = "0.3" smallvec = "0.3"
time = "0.1" time = "0.1"
tokio-core = "0.1"
tokio-signal = "0.1"
url = "1.4" url = "1.4"
uuid = { version = "0.4", features = ["serde", "v4"] } uuid = { version = "0.4", features = ["serde", "v4"] }
[dev-dependencies] [dev-dependencies]
reqwest = "0.3"
tempdir = "0.3" tempdir = "0.3"
[dependencies.cursive] [dependencies.cursive]
@ -65,4 +71,4 @@ lto = true
debug = true debug = true
[replace] [replace]
"hyper:0.10.4" = { git = "https://github.com/scottlamb/hyper", branch = "moonfire-on-0.10.x" } "https://github.com/hyperium/hyper#hyper:0.11.0-a.0" = { git = "https://github.com/scottlamb/hyper", branch = "moonfire-on-0.11.x" }

View File

@ -28,17 +28,18 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>. // along with this program. If not, see <http://www.gnu.org/licenses/>.
use chan_signal;
use clock; use clock;
use db; use db;
use dir; use dir;
use error::Error; use error::Error;
use hyper::server::Server; use futures::{BoxFuture, Future, Stream};
use std::sync::Arc; use std::sync::Arc;
use std::sync::atomic::{AtomicBool, Ordering}; use std::sync::atomic::{AtomicBool, Ordering};
use std::thread; use std::thread;
use stream; use stream;
use streamer; use streamer;
use tokio_core::reactor;
use tokio_signal::unix::{Signal, SIGINT, SIGTERM};
use web; use web;
const USAGE: &'static str = r#" const USAGE: &'static str = r#"
@ -65,13 +66,18 @@ struct Args {
flag_read_only: bool, flag_read_only: bool,
} }
fn setup_shutdown_future(h: &reactor::Handle) -> BoxFuture<(), ()> {
let int = Signal::new(SIGINT, h).flatten_stream().into_future();
let term = Signal::new(SIGTERM, h).flatten_stream().into_future();
int.select(term)
.map(|_| ())
.map_err(|_| ())
.boxed()
}
pub fn run() -> Result<(), Error> { pub fn run() -> Result<(), Error> {
let args: Args = super::parse_args(USAGE)?; let args: Args = super::parse_args(USAGE)?;
// Watch for termination signals.
// This must be started before any threads are spawned (such as the async logger thread) so
// that signals will be blocked in all threads.
let signal = chan_signal::notify(&[chan_signal::Signal::INT, chan_signal::Signal::TERM]);
super::install_logger(true); super::install_logger(true);
let (_db_dir, conn) = super::open_conn( let (_db_dir, conn) = super::open_conn(
&args.flag_db_dir, &args.flag_db_dir,
@ -81,7 +87,7 @@ pub fn run() -> Result<(), Error> {
info!("Database is loaded."); info!("Database is loaded.");
// Start a streamer for each camera. // Start a streamer for each camera.
let shutdown = Arc::new(AtomicBool::new(false)); let shutdown_streamers = Arc::new(AtomicBool::new(false));
let mut streamers = Vec::new(); let mut streamers = Vec::new();
let syncer = if !args.flag_read_only { let syncer = if !args.flag_read_only {
let (syncer_channel, syncer_join) = dir::start_syncer(dir.clone()).unwrap(); let (syncer_channel, syncer_join) = dir::start_syncer(dir.clone()).unwrap();
@ -92,7 +98,7 @@ pub fn run() -> Result<(), Error> {
dir: &dir, dir: &dir,
clocks: &clock::REAL, clocks: &clock::REAL,
opener: &*stream::FFMPEG, opener: &*stream::FFMPEG,
shutdown: &shutdown, shutdown: &shutdown_streamers,
}; };
for (i, (id, camera)) in l.cameras_by_id().iter().enumerate() { for (i, (id, camera)) in l.cameras_by_id().iter().enumerate() {
let rotate_offset_sec = streamer::ROTATE_INTERVAL_SEC * i as i64 / cameras as i64; let rotate_offset_sec = streamer::ROTATE_INTERVAL_SEC * i as i64 / cameras as i64;
@ -108,24 +114,28 @@ pub fn run() -> Result<(), Error> {
} else { None }; } else { None };
// Start the web interface. // Start the web interface.
let server = Server::http(args.flag_http_addr.as_str()).unwrap(); let addr = args.flag_http_addr.parse().unwrap();
let h = web::Handler::new(db.clone(), dir.clone()); let server = ::hyper::server::Http::new()
let _guard = server.handle(h); .bind(&addr, move || Ok(web::Service::new(db.clone(), dir.clone())))
info!("Ready to serve HTTP requests"); .unwrap();
// Wait for a signal and shut down. let shutdown = setup_shutdown_future(&server.handle());
chan_select! {
signal.recv() -> signal => info!("Received signal {:?}; shutting down streamers.", signal), info!("Ready to serve HTTP requests");
} server.run_until(shutdown).unwrap();
shutdown.store(true, Ordering::SeqCst);
info!("Shutting down streamers.");
shutdown_streamers.store(true, Ordering::SeqCst);
for streamer in streamers.drain(..) { for streamer in streamers.drain(..) {
streamer.join().unwrap(); streamer.join().unwrap();
} }
if let Some((syncer_channel, syncer_join)) = syncer { if let Some((syncer_channel, syncer_join)) = syncer {
info!("Shutting down syncer."); info!("Shutting down syncer.");
drop(syncer_channel); drop(syncer_channel);
syncer_join.join().unwrap(); syncer_join.join().unwrap();
} }
info!("Exiting."); info!("Exiting.");
::std::process::exit(0); ::std::process::exit(0);
} }

View File

@ -55,6 +55,7 @@ use error::{Error, ResultExt};
use fnv; use fnv;
use lru_cache::LruCache; use lru_cache::LruCache;
use openssl::hash; use openssl::hash;
use parking_lot::{Mutex,MutexGuard};
use recording::{self, TIME_UNITS_PER_SEC}; use recording::{self, TIME_UNITS_PER_SEC};
use rusqlite; use rusqlite;
use std::collections::BTreeMap; use std::collections::BTreeMap;
@ -64,7 +65,7 @@ use std::io::Write;
use std::ops::Range; use std::ops::Range;
use std::str; use std::str;
use std::string::String; use std::string::String;
use std::sync::{Arc,Mutex,MutexGuard}; use std::sync::Arc;
use std::vec::Vec; use std::vec::Vec;
use time; use time;
use uuid::Uuid; use uuid::Uuid;
@ -1347,7 +1348,7 @@ impl Database {
}, },
})); }));
{ {
let mut l = &mut *db.0.lock().unwrap(); let mut l = &mut *db.lock();
l.init_video_sample_entries().annotate_err("init_video_sample_entries")?; l.init_video_sample_entries().annotate_err("init_video_sample_entries")?;
l.init_cameras().annotate_err("init_cameras")?; l.init_cameras().annotate_err("init_cameras")?;
for (&camera_id, ref mut camera) in &mut l.state.cameras_by_id { for (&camera_id, ref mut camera) in &mut l.state.cameras_by_id {
@ -1361,13 +1362,13 @@ impl Database {
/// Locks the database; the returned reference is the only way to perform (read or write) /// Locks the database; the returned reference is the only way to perform (read or write)
/// operations. /// operations.
pub fn lock(&self) -> MutexGuard<LockedDatabase> { self.0.lock().unwrap() } pub fn lock(&self) -> MutexGuard<LockedDatabase> { self.0.lock() }
/// For testing. Closes the database and return the connection. This allows verification that /// For testing. Closes the database and return the connection. This allows verification that
/// a newly opened database is in an acceptable state. /// a newly opened database is in an acceptable state.
#[cfg(test)] #[cfg(test)]
fn close(self) -> rusqlite::Connection { fn close(self) -> rusqlite::Connection {
self.0.into_inner().unwrap().conn self.0.into_inner().conn
} }
} }

View File

@ -85,7 +85,7 @@ impl error::Error for Error {
impl fmt::Display for Error { impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> result::Result<(), fmt::Error> { fn fmt(&self, f: &mut fmt::Formatter) -> result::Result<(), fmt::Error> {
write!(f, "Error: {}", self.description) write!(f, "Error: {}\ncause: {:?}", self.description, self.cause)
} }
} }

View File

@ -32,23 +32,23 @@
extern crate byteorder; extern crate byteorder;
extern crate core; extern crate core;
#[macro_use] extern crate chan;
extern crate chan_signal;
extern crate docopt; extern crate docopt;
#[macro_use] extern crate ffmpeg; #[macro_use] extern crate ffmpeg;
extern crate ffmpeg_sys; extern crate ffmpeg_sys;
extern crate futures;
extern crate fnv; extern crate fnv;
extern crate http_entity; extern crate http_entity;
extern crate hyper; extern crate hyper;
#[macro_use] extern crate lazy_static; #[macro_use] extern crate lazy_static;
extern crate lazycell;
extern crate libc; extern crate libc;
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate lru_cache; extern crate lru_cache;
extern crate reffers;
extern crate rusqlite; extern crate rusqlite;
extern crate memmap; extern crate memmap;
#[macro_use] extern crate mime; #[macro_use] extern crate mime;
extern crate openssl; extern crate openssl;
extern crate parking_lot;
extern crate regex; extern crate regex;
extern crate rustc_serialize; extern crate rustc_serialize;
extern crate serde; extern crate serde;
@ -60,6 +60,8 @@ extern crate slog_stdlog;
extern crate slog_term; extern crate slog_term;
extern crate smallvec; extern crate smallvec;
extern crate time; extern crate time;
extern crate tokio_core;
extern crate tokio_signal;
extern crate url; extern crate url;
extern crate uuid; extern crate uuid;
@ -71,7 +73,6 @@ mod dir;
mod error; mod error;
mod h264; mod h264;
mod json; mod json;
mod mmapfile;
mod mp4; mod mp4;
mod recording; mod recording;
mod slices; mod slices;

View File

@ -1,71 +0,0 @@
// This file is part of Moonfire NVR, a security camera digital video recorder.
// Copyright (C) 2016 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/>.
//! Memory-mapped file serving.
extern crate memmap;
use error::Result;
use std::fs::File;
use std::io;
use std::ops::Range;
/// Memory-mapped file slice.
/// This struct is meant to be used in constructing an implementation of the `http_entity::Entity`
/// or `pieces::ContextWriter` traits. The file in question should be immutable, as files shrinking
/// during `mmap` will cause the process to fail with `SIGBUS`. Moonfire NVR sample files satisfy
/// this requirement:
///
/// * They should only be modified by Moonfire NVR itself. Installation instructions encourage
/// creating a dedicated user/group for Moonfire NVR and ensuring only this group has
/// permissions to Moonfire NVR's directories.
/// * Moonfire NVR never modifies sample files after inserting their matching recording entries
/// into the database. They are kept as-is until they are deleted.
pub struct MmapFileSlice {
f: File,
range: Range<u64>,
}
impl MmapFileSlice {
pub fn new(f: File, range: Range<u64>) -> MmapFileSlice {
MmapFileSlice{f: f, range: range}
}
pub fn write_to(&self, range: Range<u64>, out: &mut io::Write) -> Result<()> {
// TODO: overflow check (in case u64 is larger than usize).
let r = self.range.start + range.start .. self.range.start + range.end;
assert!(r.end <= self.range.end,
"requested={:?} within={:?}", range, self.range);
let mmap = memmap::Mmap::open_with_offset(
&self.f, memmap::Protection::Read, r.start as usize, (r.end - r.start) as usize)?;
unsafe { out.write_all(mmap.as_slice())?; }
Ok(())
}
}

View File

@ -83,14 +83,18 @@ use byteorder::{BigEndian, ByteOrder, WriteBytesExt};
use db; use db;
use dir; use dir;
use error::Error; use error::Error;
use futures::{Future, Stream};
use futures::stream;
use http_entity; use http_entity;
use hyper::header; use hyper::header;
use mmapfile; use memmap;
use openssl::hash; use openssl::hash;
use parking_lot::{Once, ONCE_INIT};
use recording::{self, TIME_UNITS_PER_SEC}; use recording::{self, TIME_UNITS_PER_SEC};
use slices::{self, Slices}; use reffers::ARefs;
use slices::{self, Body, Chunk, Slices};
use smallvec::SmallVec; use smallvec::SmallVec;
use lazycell::LazyCell; use std::cell::UnsafeCell;
use std::cmp; use std::cmp;
use std::io; use std::io;
use std::ops::Range; use std::ops::Range;
@ -100,7 +104,7 @@ use strutil;
use time::Timespec; use time::Timespec;
/// This value should be incremented any time a change is made to this file that causes different /// This value should be incremented any time a change is made to this file that causes different
/// bytes to be output for a particular set of `Builder` options. Incrementing this value will /// bytes to be output for a particular set of `Mp4Builder` options. Incrementing this value will
/// cause the etag to change as well. /// cause the etag to change as well.
const FORMAT_VERSION: [u8; 1] = [0x03]; const FORMAT_VERSION: [u8; 1] = [0x03];
@ -329,42 +333,46 @@ struct Segment {
/// 1. stts: `slice[.. stsz_start]` /// 1. stts: `slice[.. stsz_start]`
/// 2. stsz: `slice[stsz_start .. stss_start]` /// 2. stsz: `slice[stsz_start .. stss_start]`
/// 3. stss: `slice[stss_start ..]` /// 3. stss: `slice[stss_start ..]`
/// Access only through `write_index`. /// Access only through `get_index`.
index: LazyCell<Result<Box<[u8]>, ()>>, index: UnsafeCell<Result<Box<[u8]>, ()>>,
/// The 1-indexed frame number in the `File` of the first frame in this segment. /// The 1-indexed frame number in the `File` of the first frame in this segment.
first_frame_num: u32, first_frame_num: u32,
num_subtitle_samples: u32, num_subtitle_samples: u16,
index_once: Once,
} }
unsafe impl Sync for Segment {}
impl Segment { impl Segment {
fn new(db: &db::LockedDatabase, row: &db::ListRecordingsRow, rel_range_90k: Range<i32>, fn new(db: &db::LockedDatabase, row: &db::ListRecordingsRow, rel_range_90k: Range<i32>,
first_frame_num: u32) -> Result<Self, Error> { first_frame_num: u32) -> Result<Self, Error> {
Ok(Segment{ Ok(Segment{
s: recording::Segment::new(db, row, rel_range_90k)?, s: recording::Segment::new(db, row, rel_range_90k)?,
index: LazyCell::new(), index: UnsafeCell::new(Err(())),
index_once: ONCE_INIT,
first_frame_num: first_frame_num, first_frame_num: first_frame_num,
num_subtitle_samples: 0, num_subtitle_samples: 0,
}) })
} }
fn write_index<F>(&self, r: Range<u64>, db: &db::Database, out: &mut io::Write, f: F) fn get_index<'a, F>(&'a self, db: &db::Database, f: F) -> Result<&'a [u8], Error>
-> Result<(), Error>
where F: FnOnce(&[u8], SegmentLengths) -> &[u8] { where F: FnOnce(&[u8], SegmentLengths) -> &[u8] {
let index = self.index.borrow_with(|| { self.index_once.call_once(|| {
db.lock() let index = unsafe { &mut *self.index.get() };
.with_recording_playback(self.s.camera_id, self.s.recording_id, *index = db.lock()
|playback| self.build_index(playback)) .with_recording_playback(self.s.camera_id, self.s.recording_id,
.map_err(|e| { error!("Unable to build index for segment: {:?}", e); }) |playback| self.build_index(playback))
.map_err(|e| { error!("Unable to build index for segment: {:?}", e); });
}); });
let index = match *index { let index: &'a _ = unsafe { &*self.index.get() };
Ok(ref b) => &b[..], match *index {
Ok(ref b) => return Ok(f(&b[..], self.lens())),
Err(()) => { Err(()) => {
return Err(Error::new("Unable to build index; see previous error.".to_owned())) return Err(Error::new("Unable to build index; see previous error.".to_owned()))
}, },
}; }
out.write_all(&f(&index, self.lens())[r.start as usize .. r.end as usize])?;
Ok(())
} }
fn lens(&self) -> SegmentLengths { fn lens(&self) -> SegmentLengths {
@ -466,8 +474,8 @@ enum SliceType {
VideoSampleEntry = 2, // param is index into m.video_sample_entries VideoSampleEntry = 2, // param is index into m.video_sample_entries
Stts = 3, // param is index into m.segments Stts = 3, // param is index into m.segments
Stsz = 4, // param is index into m.segments Stsz = 4, // param is index into m.segments
Co64 = 5, // param is unused Stss = 5, // param is index into m.segments
Stss = 6, // param is index into m.segments Co64 = 6, // param is unused
VideoSampleData = 7, // param is index into m.segments VideoSampleData = 7, // param is index into m.segments
SubtitleSampleData = 8, // param is index into m.segments SubtitleSampleData = 8, // param is index into m.segments
@ -482,49 +490,69 @@ impl Slice {
Ok(Slice(end | ((t as u64) << 40) | ((p as u64) << 44))) Ok(Slice(end | ((t as u64) << 40) | ((p as u64) << 44)))
} }
}
impl Slice {
fn t(&self) -> SliceType { fn t(&self) -> SliceType {
// This value is guaranteed to be a valid SliceType because it was copied from a SliceType // This value is guaranteed to be a valid SliceType because it was copied from a SliceType
// in Slice::new. // in Slice::new.
unsafe { ::std::mem::transmute(((self.0 >> 40) & 0xF) as u8) } unsafe { ::std::mem::transmute(((self.0 >> 40) & 0xF) as u8) }
} }
fn p(&self) -> usize { (self.0 >> 44) as usize } fn p(&self) -> usize { (self.0 >> 44) as usize }
fn wrap_index<F>(&self, mp4: &File, r: Range<u64>, f: &F) -> Result<Chunk, Error>
where F: Fn(&[u8], SegmentLengths) -> &[u8] {
let mp4 = ARefs::new(mp4.0.clone());
let r = r.start as usize .. r.end as usize;
let p = self.p();
mp4.try_map(|mp4| Ok(&mp4.segments[p].get_index(&mp4.db, f)?[r]))
}
} }
impl slices::Slice for Slice { impl slices::Slice for Slice {
type Ctx = File; type Ctx = File;
type Chunk = slices::Chunk;
fn end(&self) -> u64 { return self.0 & 0xFF_FF_FF_FF_FF } fn end(&self) -> u64 { return self.0 & 0xFF_FF_FF_FF_FF }
fn write_to(&self, f: &File, r: Range<u64>, l: u64, out: &mut io::Write) fn get_range(&self, f: &File, range: Range<u64>, len: u64) -> Body {
-> Result<(), Error> { trace!("getting mp4 slice {:?}'s range {:?} / {}", self, range, len);
let t = self.t();
let p = self.p(); let p = self.p();
trace!("write {:?}, range {:?} out of len {}", self, r, l); let res = match self.t() {
match t {
SliceType::Static => { SliceType::Static => {
let s = STATIC_BYTESTRINGS[p]; let s = STATIC_BYTESTRINGS[p];
let part = &s[r.start as usize .. r.end as usize]; let part = &s[range.start as usize .. range.end as usize];
out.write_all(part)?; Ok(part.into())
Ok(())
}, },
SliceType::Buf => { SliceType::Buf => {
out.write_all(&f.buf[p+r.start as usize .. p+r.end as usize])?; let r = ARefs::new(f.0.clone());
Ok(()) Ok(r.map(|f| &f.buf[p+range.start as usize .. p+range.end as usize]))
}, },
SliceType::VideoSampleEntry => { SliceType::VideoSampleEntry => {
out.write_all(&f.video_sample_entries[p].data[r.start as usize .. r.end as usize])?; let r = ARefs::new(f.0.clone());
Ok(()) Ok(r.map(|f| &f.video_sample_entries[p]
.data[range.start as usize .. range.end as usize]))
}, },
SliceType::Stts => f.segments[p].write_index(r, &f.db, out, Segment::stts), SliceType::Stts => self.wrap_index(f, range.clone(), &Segment::stts),
SliceType::Stsz => f.segments[p].write_index(r, &f.db, out, Segment::stsz), SliceType::Stsz => self.wrap_index(f, range.clone(), &Segment::stsz),
SliceType::Stss => f.segments[p].write_index(r, &f.db, out, Segment::stss), SliceType::Stss => self.wrap_index(f, range.clone(), &Segment::stss),
SliceType::Co64 => f.write_co64(r, l, out), SliceType::Co64 => f.0.get_co64(range.clone(), len),
SliceType::VideoSampleData => f.write_video_sample_data(p, r, out), SliceType::VideoSampleData => f.0.get_video_sample_data(p, range.clone()),
SliceType::SubtitleSampleData => f.write_subtitle_sample_data(p, r, l, out), SliceType::SubtitleSampleData => f.0.get_subtitle_sample_data(p, range.clone(), len),
} };
stream::once(res
.map_err(|e| {
error!("Error producing {:?}: {:?}", self, e);
::hyper::Error::Incomplete
})
.and_then(move |c| {
if c.len() != (range.end - range.start) as usize {
error!("Error producing {:?}: range {:?} produced incorrect len {}.",
self, range, c.len());
return Err(::hyper::Error::Incomplete);
}
Ok(c)
})).boxed()
} }
fn get_slices(ctx: &File) -> &Slices<Self> { &ctx.0.slices }
} }
impl ::std::fmt::Debug for Slice { impl ::std::fmt::Debug for Slice {
@ -557,7 +585,7 @@ macro_rules! write_length {
impl FileBuilder { impl FileBuilder {
pub fn new() -> Self { pub fn new() -> Self {
FileBuilder{ FileBuilder {
segments: Vec::new(), segments: Vec::new(),
video_sample_entries: SmallVec::new(), video_sample_entries: SmallVec::new(),
next_frame_num: 1, next_frame_num: 1,
@ -626,8 +654,8 @@ impl FileBuilder {
let end_sec = (s.s.start + let end_sec = (s.s.start +
recording::Duration(d.end as i64 + TIME_UNITS_PER_SEC - 1)) recording::Duration(d.end as i64 + TIME_UNITS_PER_SEC - 1))
.unix_seconds(); .unix_seconds();
s.num_subtitle_samples = (end_sec - start_sec) as u32; s.num_subtitle_samples = (end_sec - start_sec) as u16;
self.num_subtitle_samples += s.num_subtitle_samples; self.num_subtitle_samples += s.num_subtitle_samples as u32;
} }
// Update the etag to reflect this segment. // Update the etag to reflect this segment.
@ -692,7 +720,7 @@ impl FileBuilder {
debug!("Estimated {} buf bytes; actually were {}", EST_BUF_LEN, self.body.buf.len()); debug!("Estimated {} buf bytes; actually were {}", EST_BUF_LEN, self.body.buf.len());
} }
debug!("slices: {:?}", self.body.slices); debug!("slices: {:?}", self.body.slices);
Ok(File{ Ok(File(Arc::new(FileInner{
db: db, db: db,
dir: dir, dir: dir,
segments: self.segments, segments: self.segments,
@ -702,7 +730,7 @@ impl FileBuilder {
initial_sample_byte_pos: initial_sample_byte_pos, initial_sample_byte_pos: initial_sample_byte_pos,
last_modified: header::HttpDate(time::at(Timespec::new(max_end.unix_seconds(), 0))), last_modified: header::HttpDate(time::at(Timespec::new(max_end.unix_seconds(), 0))),
etag: header::EntityTag::strong(strutil::hex(&etag.finish()?)), etag: header::EntityTag::strong(strutil::hex(&etag.finish()?)),
}) })))
} }
/// Appends a `MovieBox` (ISO/IEC 14496-12 section 8.2.1). /// Appends a `MovieBox` (ISO/IEC 14496-12 section 8.2.1).
@ -1015,7 +1043,7 @@ impl FileBuilder {
write_length!(self, { write_length!(self, {
self.body.buf.extend_from_slice( self.body.buf.extend_from_slice(
b"stsc\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01"); b"stsc\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01");
self.body.append_u32(self.num_subtitle_samples); self.body.append_u32(self.num_subtitle_samples as u32);
self.body.append_u32(1); self.body.append_u32(1);
}) })
} }
@ -1042,7 +1070,7 @@ impl FileBuilder {
write_length!(self, { write_length!(self, {
self.body.buf.extend_from_slice(b"stsz\x00\x00\x00\x00"); self.body.buf.extend_from_slice(b"stsz\x00\x00\x00\x00");
self.body.append_u32((mem::size_of::<u16>() + SUBTITLE_LENGTH) as u32); self.body.append_u32((mem::size_of::<u16>() + SUBTITLE_LENGTH) as u32);
self.body.append_u32(self.num_subtitle_samples); self.body.append_u32(self.num_subtitle_samples as u32);
}) })
} }
@ -1123,7 +1151,7 @@ impl BodyState {
} }
} }
pub struct File { struct FileInner {
db: Arc<db::Database>, db: Arc<db::Database>,
dir: Arc<dir::SampleFileDir>, dir: Arc<dir::SampleFileDir>,
segments: Vec<Segment>, segments: Vec<Segment>,
@ -1135,60 +1163,67 @@ pub struct File {
etag: header::EntityTag, etag: header::EntityTag,
} }
impl File { impl FileInner {
fn write_co64(&self, r: Range<u64>, l: u64, out: &mut io::Write) -> Result<(), Error> { fn get_co64(&self, r: Range<u64>, l: u64) -> Result<Chunk, Error> {
slices::clip_to_range(r, l, out, |w| { let mut v = Vec::with_capacity(l as usize);
let mut pos = self.initial_sample_byte_pos; let mut pos = self.initial_sample_byte_pos;
for s in &self.segments { for s in &self.segments {
w.write_u64::<BigEndian>(pos)?; v.write_u64::<BigEndian>(pos)?;
let r = s.s.sample_file_range(); let r = s.s.sample_file_range();
pos += r.end - r.start; pos += r.end - r.start;
} }
Ok(()) Ok(ARefs::new(v).map(|v| &v[r.start as usize .. r.end as usize]))
})
} }
fn write_video_sample_data(&self, i: usize, r: Range<u64>, out: &mut io::Write) /// Gets a `Chunk` of video sample data from disk.
-> Result<(), Error> { /// This works by `mmap()`ing in the data. There are a couple caveats:
///
/// * The thread which reads the resulting slice is likely to experience major page faults.
/// Eventually this will likely be rewritten to `mmap()` the memory in another thread, and
/// `mlock()` and send chunks of it to be read and `munlock()`ed to avoid this problem.
///
/// * If the backing file is truncated, the program will crash with `SIGBUS`. This shouldn't
/// happen because nothing should be touching Moonfire NVR's files but itself.
fn get_video_sample_data(&self, i: usize, r: Range<u64>) -> Result<Chunk, Error> {
let s = &self.segments[i]; let s = &self.segments[i];
let uuid = { let uuid = {
self.db.lock().with_recording_playback(s.s.camera_id, s.s.recording_id, self.db.lock().with_recording_playback(s.s.camera_id, s.s.recording_id,
|p| Ok(p.sample_file_uuid))? |p| Ok(p.sample_file_uuid))?
}; };
let f = self.dir.open_sample_file(uuid)?; let f = self.dir.open_sample_file(uuid)?;
mmapfile::MmapFileSlice::new(f, s.s.sample_file_range()).write_to(r, out) let mmap = Box::new(memmap::Mmap::open_with_offset(
&f, memmap::Protection::Read, r.start as usize, (r.end - r.start) as usize)?);
Ok(ARefs::new(mmap).map(|m| unsafe { m.as_slice() }))
} }
fn write_subtitle_sample_data(&self, i: usize, r: Range<u64>, l: u64, out: &mut io::Write) fn get_subtitle_sample_data(&self, i: usize, r: Range<u64>, l: u64) -> Result<Chunk, Error> {
-> Result<(), Error> {
let s = &self.segments[i]; let s = &self.segments[i];
let d = &s.s.desired_range_90k; let d = &s.s.desired_range_90k;
let start_sec = (s.s.start + recording::Duration(d.start as i64)).unix_seconds(); let start_sec = (s.s.start + recording::Duration(d.start as i64)).unix_seconds();
let end_sec = (s.s.start + recording::Duration(d.end as i64 + TIME_UNITS_PER_SEC - 1)) let end_sec = (s.s.start + recording::Duration(d.end as i64 + TIME_UNITS_PER_SEC - 1))
.unix_seconds(); .unix_seconds();
slices::clip_to_range(r, l, out, |w| { let mut v = Vec::with_capacity(l as usize);
for ts in start_sec .. end_sec { for ts in start_sec .. end_sec {
w.write_u16::<BigEndian>(SUBTITLE_LENGTH as u16)?; v.write_u16::<BigEndian>(SUBTITLE_LENGTH as u16)?;
let tm = time::at(time::Timespec{sec: ts, nsec: 0}); let tm = time::at(time::Timespec{sec: ts, nsec: 0});
use std::io::Write; use std::io::Write;
write!(w, "{}", tm.strftime(SUBTITLE_TEMPLATE)?)?; write!(v, "{}", tm.strftime(SUBTITLE_TEMPLATE)?)?;
} }
Ok(()) Ok(ARefs::new(v).map(|v| &v[r.start as usize .. r.end as usize]))
})?;
Ok(())
} }
} }
impl http_entity::Entity<Error> for File { #[derive(Clone)]
pub struct File(Arc<FileInner>);
impl http_entity::Entity<Body> for File {
fn add_headers(&self, hdrs: &mut header::Headers) { fn add_headers(&self, hdrs: &mut header::Headers) {
hdrs.set(header::ContentType("video/mp4".parse().unwrap())); hdrs.set(header::ContentType("video/mp4".parse().unwrap()));
} }
fn last_modified(&self) -> Option<header::HttpDate> { Some(self.last_modified) } fn last_modified(&self) -> Option<header::HttpDate> { Some(self.0.last_modified) }
fn etag(&self) -> Option<header::EntityTag> { Some(self.etag.clone()) } fn etag(&self) -> Option<header::EntityTag> { Some(self.0.etag.clone()) }
fn len(&self) -> u64 { self.slices.len() } fn len(&self) -> u64 { self.0.slices.len() }
fn write_to(&self, range: Range<u64>, out: &mut io::Write) -> Result<(), Error> { fn get_range(&self, range: Range<u64>) -> Body { self.0.slices.get_range(self, range) }
self.slices.write_to(self, range, out)
}
} }
/// Tests. There are two general strategies used to validate the resulting files: /// Tests. There are two general strategies used to validate the resulting files:
@ -1206,14 +1241,13 @@ mod tests {
use byteorder::{BigEndian, ByteOrder}; use byteorder::{BigEndian, ByteOrder};
use db; use db;
use dir; use dir;
use error::Error; use futures::Stream as FuturesStream;
use ffmpeg; use ffmpeg;
use hyper::header; use hyper::header;
use openssl::hash; use openssl::hash;
use recording::{self, TIME_UNITS_PER_SEC}; use recording::{self, TIME_UNITS_PER_SEC};
use http_entity::{self, Entity}; use http_entity::{self, Entity};
use std::fs; use std::fs;
use std::io;
use std::ops::Range; use std::ops::Range;
use std::path::Path; use std::path::Path;
use std::sync::Arc; use std::sync::Arc;
@ -1223,27 +1257,29 @@ mod tests {
use stream::{self, Opener, Stream}; use stream::{self, Opener, Stream};
use testutil::{self, TestDb, TEST_CAMERA_ID}; use testutil::{self, TestDb, TEST_CAMERA_ID};
/// A wrapper around openssl's SHA-1 hashing that implements the `Write` trait. fn fill_slice(slice: &mut [u8], e: &http_entity::Entity<Body>, start: u64) {
struct Sha1(hash::Hasher); let mut p = 0;
e.get_range(start .. start + slice.len() as u64)
impl Sha1 { .for_each(|chunk| {
fn new() -> Sha1 { Sha1(hash::Hasher::new(hash::MessageDigest::sha1()).unwrap()) } slice[p .. p + chunk.len()].copy_from_slice(&chunk);
fn finish(mut self) -> Vec<u8> { self.0.finish().unwrap() } p += chunk.len();
} Ok::<_, ::hyper::Error>(())
})
impl io::Write for Sha1 { .wait()
fn write(&mut self, buf: &[u8]) -> io::Result<usize> { .unwrap();
self.0.update(buf).unwrap();
Ok(buf.len())
}
fn flush(&mut self) -> io::Result<()> { Ok(()) }
} }
/// Returns the SHA-1 digest of the given `Entity`. /// Returns the SHA-1 digest of the given `Entity`.
fn digest(e: &http_entity::Entity<Error>) -> Vec<u8> { fn digest(e: &http_entity::Entity<Body>) -> Vec<u8> {
let mut sha1 = Sha1::new(); e.get_range(0 .. e.len())
e.write_to(0 .. e.len(), &mut sha1).unwrap(); .fold(hash::Hasher::new(hash::MessageDigest::sha1()).unwrap(), |mut sha1, chunk| {
sha1.finish() sha1.update(&chunk).unwrap();
Ok::<_, ::hyper::Error>(sha1)
})
.wait()
.unwrap()
.finish()
.unwrap()
} }
/// Information used within `BoxCursor` to describe a box on the stack. /// Information used within `BoxCursor` to describe a box on the stack.
@ -1256,13 +1292,13 @@ mod tests {
/// A cursor over the boxes in a `.mp4` file. Supports moving forward and up/down the box /// A cursor over the boxes in a `.mp4` file. Supports moving forward and up/down the box
/// stack, not backward. Panics on error. /// stack, not backward. Panics on error.
#[derive(Clone)] #[derive(Clone)]
struct BoxCursor<'a> { struct BoxCursor {
mp4: &'a http_entity::Entity<Error>, mp4: File,
stack: Vec<Mp4Box>, stack: Vec<Mp4Box>,
} }
impl<'a> BoxCursor<'a> { impl BoxCursor {
pub fn new(mp4: &'a http_entity::Entity<Error>) -> BoxCursor<'a> { pub fn new(mp4: File) -> BoxCursor {
BoxCursor{ BoxCursor{
mp4: mp4, mp4: mp4,
stack: Vec::new(), stack: Vec::new(),
@ -1274,11 +1310,11 @@ mod tests {
fn internal_push(&mut self, pos: u64, max: u64) -> bool { fn internal_push(&mut self, pos: u64, max: u64) -> bool {
if pos == max { return false; } if pos == max { return false; }
let mut hdr = [0u8; 16]; let mut hdr = [0u8; 16];
self.mp4.write_to(pos .. pos+8, &mut &mut hdr[..]).unwrap(); fill_slice(&mut hdr[..8], &self.mp4, pos);
let (len, hdr_len, boxtype_slice) = match BigEndian::read_u32(&hdr[..4]) { let (len, hdr_len, boxtype_slice) = match BigEndian::read_u32(&hdr[..4]) {
0 => (self.mp4.len() - pos, 8, &hdr[4..8]), 0 => (self.mp4.len() - pos, 8, &hdr[4..8]),
1 => { 1 => {
self.mp4.write_to(pos+8 .. pos+12, &mut &mut hdr[..]).unwrap(); fill_slice(&mut hdr[8..], &self.mp4, pos + 8);
(BigEndian::read_u64(&hdr[4..12]), 16, &hdr[12..]) (BigEndian::read_u64(&hdr[4..12]), 16, &hdr[12..])
}, },
l => (l as u64, 8, &hdr[4..8]), l => (l as u64, 8, &hdr[4..8]),
@ -1306,17 +1342,19 @@ mod tests {
/// Gets the specified byte range within the current box, starting after the box type. /// Gets the specified byte range within the current box, starting after the box type.
/// Must not be at EOF. /// Must not be at EOF.
pub fn get(&self, r: Range<u64>, mut buf: &mut [u8]) { pub fn get(&self, start: u64, buf: &mut [u8]) {
let interior = &self.stack.last().expect("at root").interior; let interior = &self.stack.last().expect("at root").interior;
assert!(r.end < interior.end - interior.start); assert!(start + (buf.len() as u64) < interior.end - interior.start);
self.mp4.write_to(r.start+interior.start .. r.end+interior.start, &mut buf).unwrap(); fill_slice(buf, &self.mp4, start+interior.start);
} }
pub fn get_all(&self) -> Vec<u8> { pub fn get_all(&self) -> Vec<u8> {
let interior = self.stack.last().expect("at root").interior.clone(); let interior = self.stack.last().expect("at root").interior.clone();
let len = (interior.end - interior.start) as usize; let len = (interior.end - interior.start) as usize;
trace!("get_all: start={}, len={}", interior.start, len);
let mut out = Vec::with_capacity(len); let mut out = Vec::with_capacity(len);
self.mp4.write_to(interior, &mut out).unwrap(); unsafe { out.set_len(len) };
fill_slice(&mut out[..], &self.mp4, interior.start);
out out
} }
@ -1324,7 +1362,7 @@ mod tests {
/// Must not be at EOF. /// Must not be at EOF.
pub fn get_u32(&self, p: u64) -> u32 { pub fn get_u32(&self, p: u64) -> u32 {
let mut buf = [0u8; 4]; let mut buf = [0u8; 4];
self.get(p .. p+4, &mut buf); self.get(p, &mut buf);
BigEndian::read_u32(&buf[..]) BigEndian::read_u32(&buf[..])
} }
@ -1360,14 +1398,14 @@ mod tests {
} }
/// Information returned by `find_track`. /// Information returned by `find_track`.
struct Track<'a> { struct Track {
edts_cursor: Option<BoxCursor<'a>>, edts_cursor: Option<BoxCursor>,
stbl_cursor: BoxCursor<'a>, stbl_cursor: BoxCursor,
} }
/// Finds the `moov/trak` that has a `tkhd` associated with the given `track_id`, which must /// Finds the `moov/trak` that has a `tkhd` associated with the given `track_id`, which must
/// exist. /// exist.
fn find_track(mp4: &http_entity::Entity<Error>, track_id: u32) -> Track { fn find_track(mp4: File, track_id: u32) -> Track {
let mut cursor = BoxCursor::new(mp4); let mut cursor = BoxCursor::new(mp4);
cursor.down(); cursor.down();
assert!(cursor.find(b"moov")); assert!(cursor.find(b"moov"));
@ -1377,7 +1415,7 @@ mod tests {
cursor.down(); cursor.down();
assert!(cursor.find(b"tkhd")); assert!(cursor.find(b"tkhd"));
let mut version = [0u8; 1]; let mut version = [0u8; 1];
cursor.get(0 .. 1, &mut version); cursor.get(0, &mut version);
// Let id_pos be the offset after the FullBox section of the track_id. // Let id_pos be the offset after the FullBox section of the track_id.
let id_pos = match version[0] { let id_pos = match version[0] {
@ -1459,7 +1497,7 @@ mod tests {
db.list_recordings_by_time(TEST_CAMERA_ID, all_time, |r| { db.list_recordings_by_time(TEST_CAMERA_ID, all_time, |r| {
let d = r.duration_90k; let d = r.duration_90k;
assert!(skip_90k + shorten_90k < d); assert!(skip_90k + shorten_90k < d);
builder.append(&db, r, skip_90k .. d - shorten_90k).unwrap(); builder.append(&*db, r, skip_90k .. d - shorten_90k).unwrap();
Ok(()) Ok(())
}).unwrap(); }).unwrap();
} }
@ -1470,7 +1508,14 @@ mod tests {
let mut filename = dir.to_path_buf(); let mut filename = dir.to_path_buf();
filename.push("clip.new.mp4"); filename.push("clip.new.mp4");
let mut out = fs::OpenOptions::new().write(true).create_new(true).open(&filename).unwrap(); let mut out = fs::OpenOptions::new().write(true).create_new(true).open(&filename).unwrap();
mp4.write_to(0 .. mp4.len(), &mut out).unwrap(); use ::std::io::Write;
mp4.get_range(0 .. mp4.len())
.for_each(|chunk| {
out.write_all(&chunk)?;
Ok(())
})
.wait()
.unwrap();
filename.to_str().unwrap().to_string() filename.to_str().unwrap().to_string()
} }
@ -1536,7 +1581,7 @@ mod tests {
// Time range [2, 2+4+6+8) means the 2nd, 3rd, and 4th samples should be included. // Time range [2, 2+4+6+8) means the 2nd, 3rd, and 4th samples should be included.
let mp4 = make_mp4_from_encoder(&db, encoder, 2 .. 2+4+6+8); let mp4 = make_mp4_from_encoder(&db, encoder, 2 .. 2+4+6+8);
let track = find_track(&mp4, 1); let track = find_track(mp4, 1);
assert!(track.edts_cursor.is_none()); assert!(track.edts_cursor.is_none());
let mut cursor = track.stbl_cursor; let mut cursor = track.stbl_cursor;
cursor.down(); cursor.down();
@ -1590,7 +1635,7 @@ mod tests {
// Time range [2+4+6, 2+4+6+8) means the 4th sample should be included. // Time range [2+4+6, 2+4+6+8) means the 4th sample should be included.
// The 3rd gets pulled in also because it's a sync frame and the 4th isn't. // The 3rd gets pulled in also because it's a sync frame and the 4th isn't.
let mp4 = make_mp4_from_encoder(&db, encoder, 2+4+6 .. 2+4+6+8); let mp4 = make_mp4_from_encoder(&db, encoder, 2+4+6 .. 2+4+6+8);
let track = find_track(&mp4, 1); let track = find_track(mp4, 1);
// Examine edts. It should skip the 3rd frame. // Examine edts. It should skip the 3rd frame.
let mut cursor = track.edts_cursor.unwrap(); let mut cursor = track.edts_cursor.unwrap();
@ -1721,26 +1766,23 @@ mod tests {
#[cfg(all(test, feature="nightly"))] #[cfg(all(test, feature="nightly"))]
mod bench { mod bench {
extern crate reqwest;
extern crate test; extern crate test;
use futures::future;
use futures::stream::BoxStream;
use hyper; use hyper;
use hyper::header;
use http_entity; use http_entity;
use recording; use recording;
use reffers::ARefs;
use self::test::Bencher; use self::test::Bencher;
use std::str; use std::str;
use super::tests::create_mp4_from_db; use super::tests::create_mp4_from_db;
use testutil::{self, TestDb}; use testutil::{self, TestDb};
/// An HTTP server for benchmarking. /// An HTTP server for benchmarking.
/// It's used as a singleton via `lazy_static!` for two reasons: /// It's used as a singleton via `lazy_static!` so that when getting a CPU profile of the
/// /// benchmark, more of the profile focuses on the HTTP serving rather than the setup.
/// * to avoid running out of file descriptors. `#[bench]` functions apparently get called
/// many times as the number of iterations is tuned, and hyper servers
/// [can't be shut down](https://github.com/hyperium/hyper/issues/338), so
/// otherwise the default Ubuntu 16.04.1 ulimit of 1024 files is quickly exhausted.
/// * so that when getting a CPU profile of the benchmark, more of the profile focuses
/// on the HTTP serving rather than the setup.
/// ///
/// Currently this only serves a single `.mp4` file but we could set up variations to benchmark /// Currently this only serves a single `.mp4` file but we could set up variations to benchmark
/// different scenarios: with/without subtitles and edit lists, different lengths, serving /// different scenarios: with/without subtitles and edit lists, different lengths, serving
@ -1752,32 +1794,40 @@ mod bench {
impl BenchServer { impl BenchServer {
fn new() -> BenchServer { fn new() -> BenchServer {
let mut listener = hyper::net::HttpListener::new("127.0.0.1:0").unwrap();
use hyper::net::NetworkListener;
let addr = listener.local_addr().unwrap();
let server = hyper::Server::new(listener);
let url = hyper::Url::parse(
format!("http://{}:{}/", addr.ip(), addr.port()).as_str()).unwrap();
let db = TestDb::new(); let db = TestDb::new();
testutil::add_dummy_recordings_to_db(&db.db, 60); testutil::add_dummy_recordings_to_db(&db.db, 60);
let mp4 = create_mp4_from_db(db.db.clone(), db.dir.clone(), 0, 0, false); let mp4 = create_mp4_from_db(db.db.clone(), db.dir.clone(), 0, 0, false);
let p = mp4.initial_sample_byte_pos; let p = mp4.0.initial_sample_byte_pos;
use std::thread::spawn; let (tx, rx) = ::std::sync::mpsc::channel();
spawn(move || { ::std::thread::spawn(move || {
use hyper::server::{Request, Response, Fresh}; let addr = "127.0.0.1:0".parse().unwrap();
let (db, dir) = (db.db.clone(), db.dir.clone()); let server = hyper::server::Http::new()
let _ = server.handle(move |req: Request, res: Response<Fresh>| { .bind(&addr, move || Ok(MyService(mp4.clone())))
let mp4 = create_mp4_from_db(db.clone(), dir.clone(), 0, 0, false); .unwrap();
http_entity::serve(&mp4, &req, res).unwrap(); tx.send(server.local_addr().unwrap()).unwrap();
}); server.run().unwrap();
}); });
let addr = rx.recv().unwrap();
BenchServer{ BenchServer{
url: url, url: hyper::Url::parse(&format!("http://{}:{}/", addr.ip(), addr.port())).unwrap(),
generated_len: p, generated_len: p,
} }
} }
} }
struct MyService(super::File);
impl hyper::server::Service for MyService {
type Request = hyper::server::Request;
type Response = hyper::server::Response<BoxStream<ARefs<'static, [u8]>, hyper::Error>>;
type Error = hyper::Error;
type Future = future::FutureResult<Self::Response, Self::Error>;
fn call(&self, req: hyper::server::Request) -> Self::Future {
future::ok(http_entity::serve(self.0.clone(), &req))
}
}
lazy_static! { lazy_static! {
static ref SERVER: BenchServer = { BenchServer::new() }; static ref SERVER: BenchServer = { BenchServer::new() };
} }
@ -1816,11 +1866,12 @@ mod bench {
let p = server.generated_len; let p = server.generated_len;
let mut buf = Vec::with_capacity(p as usize); let mut buf = Vec::with_capacity(p as usize);
b.bytes = p; b.bytes = p;
let client = hyper::Client::new(); let client = reqwest::Client::new().unwrap();
let mut run = || { let mut run = || {
use self::reqwest::header::{Range, ByteRangeSpec};
let mut resp = let mut resp =
client.get(server.url.clone()) client.get(server.url.clone())
.header(header::Range::Bytes(vec![header::ByteRangeSpec::FromTo(0, p - 1)])) .header(Range::Bytes(vec![ByteRangeSpec::FromTo(0, p - 1)]))
.send() .send()
.unwrap(); .unwrap();
buf.clear(); buf.clear();

View File

@ -375,7 +375,8 @@ impl Segment {
/// desired start time. (The caller is responsible for creating an edit list to skip the /// desired start time. (The caller is responsible for creating an edit list to skip the
/// undesired portion.) It will end at the first frame after the desired range (unless the /// undesired portion.) It will end at the first frame after the desired range (unless the
/// desired range extends beyond the recording). /// desired range extends beyond the recording).
pub fn new(db: &db::LockedDatabase, recording: &db::ListRecordingsRow, pub fn new(db: &db::LockedDatabase,
recording: &db::ListRecordingsRow,
desired_range_90k: Range<i32>) -> Result<Segment, Error> { desired_range_90k: Range<i32>) -> Result<Segment, Error> {
let mut self_ = Segment{ let mut self_ = Segment{
camera_id: recording.camera_id, camera_id: recording.camera_id,

View File

@ -30,15 +30,20 @@
//! Tools for implementing a `http_entity::Entity` body composed from many "slices". //! Tools for implementing a `http_entity::Entity` body composed from many "slices".
use error::{Error, Result}; use reffers::ARefs;
use futures::stream::{self, BoxStream};
use futures::Stream;
use std::fmt; use std::fmt;
use std::io;
use std::ops::Range; use std::ops::Range;
pub type Chunk = ARefs<'static, [u8]>;
pub type Body = stream::BoxStream<Chunk, ::hyper::Error>;
/// Writes a byte range to the given `io::Write` given a context argument; meant for use with /// Writes a byte range to the given `io::Write` given a context argument; meant for use with
/// `Slices`. /// `Slices`.
pub trait Slice { pub trait Slice : Sync + Sized + 'static {
type Ctx; type Ctx: Send + Clone;
type Chunk: Send;
/// The byte position (relative to the start of the `Slices`) beyond the end of this slice. /// The byte position (relative to the start of the `Slices`) beyond the end of this slice.
/// Note the starting position (and thus length) are inferred from the previous slice. /// Note the starting position (and thus length) are inferred from the previous slice.
@ -47,22 +52,10 @@ pub trait Slice {
/// Writes `r` to `out`, as in `http_entity::Entity::write_to`. /// Writes `r` to `out`, as in `http_entity::Entity::write_to`.
/// The additional argument `ctx` is as supplied to the `Slices`. /// The additional argument `ctx` is as supplied to the `Slices`.
/// The additional argument `l` is the length of this slice, as determined by the `Slices`. /// The additional argument `l` is the length of this slice, as determined by the `Slices`.
fn write_to(&self, ctx: &Self::Ctx, r: Range<u64>, l: u64, out: &mut io::Write) -> Result<()>; fn get_range(&self, ctx: &Self::Ctx, r: Range<u64>, len: u64)
} -> stream::BoxStream<Self::Chunk, ::hyper::Error>;
/// Calls `f` with an `io::Write` which delegates to `inner` only for the section defined by `r`. fn get_slices(ctx: &Self::Ctx) -> &Slices<Self>;
/// This is useful for easily implementing the `ContextWriter` interface for pieces that generate
/// data on-the-fly rather than simply copying a buffer.
pub fn clip_to_range<F>(r: Range<u64>, l: u64, inner: &mut io::Write, mut f: F) -> Result<()>
where F: FnMut(&mut Vec<u8>) -> Result<()> {
// Just create a buffer for the whole slice and copy out the relevant portion.
// One might expect it to be faster to avoid this memory allocation and extra copying, but
// benchmarks show when making many 4-byte writes it's better to be able to inline many
// Vec::write_all calls then make one call through traits to hyper's write logic.
let mut buf = Vec::with_capacity(l as usize);
f(&mut buf)?;
inner.write_all(&buf[r.start as usize .. r.end as usize])?;
Ok(())
} }
/// Helper to serve byte ranges from a body which is broken down into many "slices". /// Helper to serve byte ranges from a body which is broken down into many "slices".
@ -114,56 +107,53 @@ impl<S> Slices<S> where S: Slice {
/// Writes `range` to `out`. /// Writes `range` to `out`.
/// This interface mirrors `http_entity::Entity::write_to`, with the additional `ctx` argument. /// This interface mirrors `http_entity::Entity::write_to`, with the additional `ctx` argument.
pub fn write_to(&self, ctx: &S::Ctx, range: Range<u64>, out: &mut io::Write) -> Result<()> { pub fn get_range(&self, ctx: &S::Ctx, range: Range<u64>)
-> BoxStream<S::Chunk, ::hyper::Error> {
if range.start > range.end || range.end > self.len { if range.start > range.end || range.end > self.len {
return Err(Error{ error!("Bad range {:?} for slice of length {}", range, self.len);
description: format!("Bad range {:?} for slice of length {}", range, self.len), return stream::once(Err(::hyper::Error::Incomplete)).boxed();
cause: None});
} }
// Binary search for the first slice of the range to write, determining its index and // Binary search for the first slice of the range to write, determining its index and
// (from the preceding slice) the start of its range. // (from the preceding slice) the start of its range.
let (mut i, mut slice_start) = match self.slices.binary_search_by_key(&range.start, let (i, slice_start) = match self.slices.binary_search_by_key(&range.start, |s| s.end()) {
|s| s.end()) {
Ok(i) if i == self.slices.len() - 1 => return Ok(()), // at end.
Ok(i) => (i+1, self.slices[i].end()), // desired start == slice i's end; first is i+1! Ok(i) => (i+1, self.slices[i].end()), // desired start == slice i's end; first is i+1!
Err(i) if i == 0 => (0, 0), // desired start < slice 0's end; first is 0. Err(i) if i == 0 => (0, 0), // desired start < slice 0's end; first is 0.
Err(i) => (i, self.slices[i-1].end()), // desired start < slice i's end; first is i. Err(i) => (i, self.slices[i-1].end()), // desired start < slice i's end; first is i.
}; };
// There is at least one slice to write.
// Iterate through and write each slice until the end. // Iterate through and write each slice until the end.
let mut start_pos = range.start - slice_start;
loop {
let s = &self.slices[i];
let end = s.end();
let l = end - slice_start;
if range.end <= end { // last slice.
return s.write_to(ctx, start_pos .. range.end - slice_start, l, out);
}
s.write_to(ctx, start_pos .. end - slice_start, l, out)?;
// Setup next iteration. let start_pos = range.start - slice_start;
start_pos = 0; let bodies = stream::unfold(
slice_start = end; (ctx.clone(), i, start_pos, slice_start), move |(c, i, start_pos, slice_start)| {
i += 1; let (body, end);
} {
let self_ = S::get_slices(&c);
if i == self_.slices.len() { return None }
let s = &self_.slices[i];
if range.end == slice_start + start_pos { return None }
end = ::std::cmp::min(range.end, s.end());
let l = end - slice_start;
body = s.get_range(&c, start_pos .. end - slice_start, l);
};
Some(Ok::<_, ::hyper::Error>((body, (c, i+1, 0, end))))
});
bodies.flatten().boxed()
} }
} }
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use error::{Error, Result}; use futures::{Future, Stream};
use std::cell::RefCell; use futures::stream::{self, BoxStream};
use std::error::Error as E;
use std::io::Write;
use std::ops::Range; use std::ops::Range;
use std::vec::Vec; use super::{Slice, Slices};
use super::{Slice, Slices, clip_to_range}; use testutil;
#[derive(Debug, Eq, PartialEq)] #[derive(Debug, Eq, PartialEq)]
pub struct FakeWrite { pub struct FakeChunk {
writer: &'static str, slice: &'static str,
range: Range<u64>, range: Range<u64>,
} }
@ -173,146 +163,84 @@ mod tests {
} }
impl Slice for FakeSlice { impl Slice for FakeSlice {
type Ctx = RefCell<Vec<FakeWrite>>; type Ctx = &'static Slices<FakeSlice>;
type Chunk = FakeChunk;
fn end(&self) -> u64 { self.end } fn end(&self) -> u64 { self.end }
fn write_to(&self, ctx: &RefCell<Vec<FakeWrite>>, r: Range<u64>, _l: u64, _out: &mut Write) fn get_range(&self, _ctx: &&'static Slices<FakeSlice>, r: Range<u64>, _l: u64)
-> Result<()> { -> BoxStream<FakeChunk, ::hyper::Error> {
ctx.borrow_mut().push(FakeWrite{writer: self.name, range: r}); stream::once(Ok(FakeChunk{slice: self.name, range: r})).boxed()
Ok(())
} }
fn get_slices(ctx: &&'static Slices<FakeSlice>) -> &'static Slices<Self> { *ctx }
} }
pub fn new_slices() -> Slices<FakeSlice> { lazy_static! {
let mut s = Slices::new(); static ref SLICES: Slices<FakeSlice> = {
s.append(FakeSlice{end: 5, name: "a"}); let mut s = Slices::new();
s.append(FakeSlice{end: 5+13, name: "b"}); s.append(FakeSlice{end: 5, name: "a"});
s.append(FakeSlice{end: 5+13+7, name: "c"}); s.append(FakeSlice{end: 5+13, name: "b"});
s.append(FakeSlice{end: 5+13+7+17, name: "d"}); s.append(FakeSlice{end: 5+13+7, name: "c"});
s.append(FakeSlice{end: 5+13+7+17+19, name: "e"}); s.append(FakeSlice{end: 5+13+7+17, name: "d"});
s s.append(FakeSlice{end: 5+13+7+17+19, name: "e"});
s
};
} }
#[test] #[test]
pub fn size() { pub fn size() {
assert_eq!(5 + 13 + 7 + 17 + 19, new_slices().len()); testutil::init();
assert_eq!(5 + 13 + 7 + 17 + 19, SLICES.len());
} }
#[test] #[test]
pub fn exact_slice() { pub fn exact_slice() {
// Test writing exactly slice b. // Test writing exactly slice b.
let s = new_slices(); testutil::init();
let w = RefCell::new(Vec::new()); let out = SLICES.get_range(&&*SLICES, 5 .. 18).collect().wait().unwrap();
let mut dummy = Vec::new(); assert_eq!(&[FakeChunk{slice: "b", range: 0 .. 13}], &out[..]);
s.write_to(&w, 5 .. 18, &mut dummy).unwrap();
assert_eq!(&[FakeWrite{writer: "b", range: 0 .. 13}], &w.borrow()[..]);
} }
#[test] #[test]
pub fn offset_first() { pub fn offset_first() {
// Test writing part of slice a. // Test writing part of slice a.
let s = new_slices(); testutil::init();
let w = RefCell::new(Vec::new()); let out = SLICES.get_range(&&*SLICES, 1 .. 3).collect().wait().unwrap();
let mut dummy = Vec::new(); assert_eq!(&[FakeChunk{slice: "a", range: 1 .. 3}], &out[..]);
s.write_to(&w, 1 .. 3, &mut dummy).unwrap();
assert_eq!(&[FakeWrite{writer: "a", range: 1 .. 3}], &w.borrow()[..]);
} }
#[test] #[test]
pub fn offset_mid() { pub fn offset_mid() {
// Test writing part of slice b, all of slice c, and part of slice d. // Test writing part of slice b, all of slice c, and part of slice d.
let s = new_slices(); testutil::init();
let w = RefCell::new(Vec::new()); let out = SLICES.get_range(&&*SLICES, 17 .. 26).collect().wait().unwrap();
let mut dummy = Vec::new();
s.write_to(&w, 17 .. 26, &mut dummy).unwrap();
assert_eq!(&[ assert_eq!(&[
FakeWrite{writer: "b", range: 12 .. 13}, FakeChunk{slice: "b", range: 12 .. 13},
FakeWrite{writer: "c", range: 0 .. 7}, FakeChunk{slice: "c", range: 0 .. 7},
FakeWrite{writer: "d", range: 0 .. 1}, FakeChunk{slice: "d", range: 0 .. 1},
], &w.borrow()[..]); ], &out[..]);
} }
#[test] #[test]
pub fn everything() { pub fn everything() {
// Test writing the whole Slices. // Test writing the whole Slices.
let s = new_slices(); testutil::init();
let w = RefCell::new(Vec::new()); let out = SLICES.get_range(&&*SLICES, 0 .. 61).collect().wait().unwrap();
let mut dummy = Vec::new();
s.write_to(&w, 0 .. 61, &mut dummy).unwrap();
assert_eq!(&[ assert_eq!(&[
FakeWrite{writer: "a", range: 0 .. 5}, FakeChunk{slice: "a", range: 0 .. 5},
FakeWrite{writer: "b", range: 0 .. 13}, FakeChunk{slice: "b", range: 0 .. 13},
FakeWrite{writer: "c", range: 0 .. 7}, FakeChunk{slice: "c", range: 0 .. 7},
FakeWrite{writer: "d", range: 0 .. 17}, FakeChunk{slice: "d", range: 0 .. 17},
FakeWrite{writer: "e", range: 0 .. 19}, FakeChunk{slice: "e", range: 0 .. 19},
], &w.borrow()[..]); ], &out[..]);
} }
#[test] #[test]
pub fn at_end() { pub fn at_end() {
let s = new_slices(); testutil::init();
let w = RefCell::new(Vec::new()); let out = SLICES.get_range(&&*SLICES, 61 .. 61).collect().wait().unwrap();
let mut dummy = Vec::new(); let empty: &[FakeChunk] = &[];
s.write_to(&w, 61 .. 61, &mut dummy).unwrap(); assert_eq!(empty, &out[..]);
let empty: &[FakeWrite] = &[];
assert_eq!(empty, &w.borrow()[..]);
}
#[test]
pub fn test_clip_to_range() {
let mut out = Vec::new();
// Simple case: one write with everything.
clip_to_range(0 .. 5, 5, &mut out, |w| {
w.write_all(b"01234").unwrap();
Ok(())
}).unwrap();
assert_eq!(b"01234", &out[..]);
// Same in a few writes.
out.clear();
clip_to_range(0 .. 5, 5, &mut out, |w| {
w.write_all(b"0").unwrap();
w.write_all(b"123").unwrap();
w.write_all(b"4").unwrap();
Ok(())
}).unwrap();
assert_eq!(b"01234", &out[..]);
// Limiting to a prefix.
out.clear();
clip_to_range(0 .. 2, 5, &mut out, |w| {
w.write_all(b"0").unwrap(); // all of this write
w.write_all(b"123").unwrap(); // some of this write
w.write_all(b"4").unwrap(); // none of this write
Ok(())
}).unwrap();
assert_eq!(b"01", &out[..]);
// Limiting to part in the middle.
out.clear();
clip_to_range(2 .. 4, 5, &mut out, |w| {
w.write_all(b"0").unwrap(); // none of this write
w.write_all(b"1234").unwrap(); // middle of this write
w.write_all(b"5678").unwrap(); // none of this write
Ok(())
}).unwrap();
assert_eq!(b"23", &out[..]);
// If the callback returns an error, it should be propagated (fast path or not).
out.clear();
assert_eq!(
clip_to_range(0 .. 4, 4, &mut out, |_| Err(Error::new("some error".to_owned())))
.unwrap_err().description(),
"some error");
out.clear();
assert_eq!(
clip_to_range(0 .. 1, 4, &mut out, |_| Err(Error::new("some error".to_owned())))
.unwrap_err().description(),
"some error");
// TODO: if inner.write does a partial write, the next try should start at the correct
// position.
} }
} }

View File

@ -35,15 +35,20 @@ use core::str::FromStr;
use db; use db;
use dir::SampleFileDir; use dir::SampleFileDir;
use error::Error; use error::Error;
use futures::Stream;
use futures::{future, stream};
use json; use json;
use http_entity; use http_entity;
use hyper::{header,server,status}; use hyper::{header, status};
use hyper::uri::RequestUri; use hyper::server::{self, Request, Response};
use mime; use mime;
use mp4; use mp4;
use parking_lot::MutexGuard;
use recording; use recording;
use reffers::ARefs;
use regex::Regex; use regex::Regex;
use serde_json; use serde_json;
use slices;
use std::cmp; use std::cmp;
use std::fmt; use std::fmt;
use std::io::Write; use std::io::Write;
@ -75,17 +80,6 @@ enum Path {
NotFound, NotFound,
} }
fn get_path_and_query(uri: &RequestUri) -> (&str, &str) {
match *uri {
RequestUri::AbsolutePath(ref both) => match both.find('?') {
Some(split) => (&both[..split], &both[split+1..]),
None => (both, ""),
},
RequestUri::AbsoluteUri(ref u) => (u.path(), u.query().unwrap_or("")),
_ => ("", ""),
}
}
fn decode_path(path: &str) -> Path { fn decode_path(path: &str) -> Path {
if path == "/" { if path == "/" {
return Path::CamerasList; return Path::CamerasList;
@ -116,8 +110,8 @@ fn decode_path(path: &str) -> Path {
} }
} }
fn is_json(req: &server::Request) -> bool { fn is_json(req: &Request) -> bool {
if let Some(accept) = req.headers.get::<header::Accept>() { if let Some(accept) = req.headers().get::<header::Accept>() {
return accept.len() == 1 && accept[0].item == *JSON && return accept.len() == 1 && accept[0].item == *JSON &&
accept[0].quality == header::Quality(1000); accept[0].quality == header::Quality(1000);
} }
@ -182,11 +176,6 @@ impl fmt::Display for HumanizedTimestamp {
} }
} }
pub struct Handler {
db: Arc<db::Database>,
dir: Arc<SampleFileDir>,
}
#[derive(Debug, Eq, PartialEq)] #[derive(Debug, Eq, PartialEq)]
struct Segments { struct Segments {
ids: Range<i32>, ids: Range<i32>,
@ -227,33 +216,40 @@ impl Segments {
} }
} }
impl Handler { pub struct Service {
db: Arc<db::Database>,
dir: Arc<SampleFileDir>,
}
impl Service {
pub fn new(db: Arc<db::Database>, dir: Arc<SampleFileDir>) -> Self { pub fn new(db: Arc<db::Database>, dir: Arc<SampleFileDir>) -> Self {
Handler{db: db, dir: dir} Service{db: db, dir: dir}
} }
fn not_found(&self, mut res: server::Response) -> Result<(), Error> { fn not_found(&self) -> Result<Response<slices::Body>, Error> {
*res.status_mut() = status::StatusCode::NotFound; Ok(Response::new()
res.send(b"not found")?; .with_status(status::StatusCode::NotFound)
Ok(()) .with_header(header::ContentType(mime!(Text/Plain)))
.with_body(stream::once(Ok(ARefs::new(&b"not found"[..]))).boxed()))
} }
fn list_cameras(&self, req: &server::Request, mut res: server::Response) -> Result<(), Error> { fn list_cameras(&self, req: &Request) -> Result<Response<slices::Body>, Error> {
let json = is_json(req); let json = is_json(req);
let buf = { let buf = {
let db = self.db.lock(); let db = self.db.lock();
if json { if json {
serde_json::to_vec(&json::ListCameras{cameras: db.cameras_by_id()})? serde_json::to_vec(&json::ListCameras{cameras: db.cameras_by_id()})?
} else { } else {
self.list_cameras_html(&db)? self.list_cameras_html(db)?
} }
}; };
res.headers_mut().set(header::ContentType(if json { JSON.clone() } else { HTML.clone() })); Ok(Response::new()
res.send(&buf)?; .with_header(header::ContentType(if json { JSON.clone() } else { HTML.clone() }))
Ok(()) .with_header(header::ContentLength(buf.len() as u64))
.with_body(stream::once(Ok(ARefs::new(buf))).boxed()))
} }
fn list_cameras_html(&self, db: &db::LockedDatabase) -> Result<Vec<u8>, Error> { fn list_cameras_html(&self, db: MutexGuard<db::LockedDatabase>) -> Result<Vec<u8>, Error> {
let mut buf = Vec::new(); let mut buf = Vec::new();
buf.extend_from_slice(b"\ buf.extend_from_slice(b"\
<!DOCTYPE html>\n\ <!DOCTYPE html>\n\
@ -287,8 +283,8 @@ impl Handler {
Ok(buf) Ok(buf)
} }
fn camera(&self, uuid: Uuid, query: &str, req: &server::Request, mut res: server::Response) fn camera(&self, uuid: Uuid, query: Option<&str>, req: &Request)
-> Result<(), Error> { -> Result<Response<slices::Body>, Error> {
let json = is_json(req); let json = is_json(req);
let buf = { let buf = {
let db = self.db.lock(); let db = self.db.lock();
@ -297,28 +293,31 @@ impl Handler {
.ok_or_else(|| Error::new("no such camera".to_owned()))?; .ok_or_else(|| Error::new("no such camera".to_owned()))?;
serde_json::to_vec(&json::Camera::new(camera, true))? serde_json::to_vec(&json::Camera::new(camera, true))?
} else { } else {
self.camera_html(&db, query, uuid)? self.camera_html(db, query, uuid)?
} }
}; };
res.headers_mut().set(header::ContentType(if json { JSON.clone() } else { HTML.clone() })); Ok(Response::new()
res.send(&buf)?; .with_header(header::ContentType(if json { JSON.clone() } else { HTML.clone() }))
Ok(()) .with_header(header::ContentLength(buf.len() as u64))
.with_body(stream::once(Ok(ARefs::new(buf))).boxed()))
} }
fn camera_html(&self, db: &db::LockedDatabase, query: &str, uuid: Uuid) fn camera_html(&self, db: MutexGuard<db::LockedDatabase>, query: Option<&str>,
-> Result<Vec<u8>, Error> { uuid: Uuid) -> Result<Vec<u8>, Error> {
let (r, trim) = { let (r, trim) = {
let mut time = recording::Time(i64::min_value()) .. recording::Time(i64::max_value()); let mut time = recording::Time(i64::min_value()) .. recording::Time(i64::max_value());
let mut trim = false; let mut trim = false;
for (key, value) in form_urlencoded::parse(query.as_bytes()) { if let Some(q) = query {
let (key, value) = (key.borrow(), value.borrow()); for (key, value) in form_urlencoded::parse(q.as_bytes()) {
match key { let (key, value) = (key.borrow(), value.borrow());
"start_time" => time.start = recording::Time::parse(value)?, match key {
"end_time" => time.end = recording::Time::parse(value)?, "start_time" => time.start = recording::Time::parse(value)?,
"trim" if value == "true" => trim = true, "end_time" => time.end = recording::Time::parse(value)?,
_ => {}, "trim" if value == "true" => trim = true,
} _ => {},
}; }
};
}
(time, trim) (time, trim)
}; };
let camera = db.get_camera(uuid) let camera = db.get_camera(uuid)
@ -396,13 +395,14 @@ impl Handler {
Ok(buf) Ok(buf)
} }
fn camera_recordings(&self, uuid: Uuid, query: &str, req: &server::Request, fn camera_recordings(&self, uuid: Uuid, query: Option<&str>, req: &Request)
mut res: server::Response) -> Result<(), Error> { -> Result<Response<slices::Body>, Error> {
let r = Handler::get_optional_range(query)?; let r = Service::get_optional_range(query)?;
if !is_json(req) { if !is_json(req) {
*res.status_mut() = status::StatusCode::NotAcceptable; return Ok(Response::new()
res.send(b"only available for JSON requests")?; .with_status(status::StatusCode::NotAcceptable)
return Ok(()); .with_body(stream::once(
Ok(ARefs::new(&b"only available for JSON requests"[..]))).boxed()));
} }
let mut out = json::ListRecordings{recordings: Vec::new()}; let mut out = json::ListRecordings{recordings: Vec::new()};
{ {
@ -424,13 +424,14 @@ impl Handler {
})?; })?;
} }
let buf = serde_json::to_vec(&out)?; let buf = serde_json::to_vec(&out)?;
res.headers_mut().set(header::ContentType(JSON.clone())); Ok(Response::new()
res.send(&buf)?; .with_header(header::ContentType(JSON.clone()))
Ok(()) .with_header(header::ContentLength(buf.len() as u64))
.with_body(stream::once(Ok(ARefs::new(buf))).boxed()))
} }
fn camera_view_mp4(&self, uuid: Uuid, query: &str, req: &server::Request, fn camera_view_mp4(&self, uuid: Uuid, query: Option<&str>, req: &Request)
res: server::Response) -> Result<(), Error> { -> Result<Response<slices::Body>, Error> {
let camera_id = { let camera_id = {
let db = self.db.lock(); let db = self.db.lock();
let camera = db.get_camera(uuid) let camera = db.get_camera(uuid)
@ -438,117 +439,127 @@ impl Handler {
camera.id camera.id
}; };
let mut builder = mp4::FileBuilder::new(); let mut builder = mp4::FileBuilder::new();
for (key, value) in form_urlencoded::parse(query.as_bytes()) { if let Some(q) = query {
let (key, value) = (key.borrow(), value.borrow()); for (key, value) in form_urlencoded::parse(q.as_bytes()) {
match key { let (key, value) = (key.borrow(), value.borrow());
"s" => { match key {
let s = Segments::parse(value).map_err( "s" => {
|_| Error::new(format!("invalid s parameter: {}", value)))?; let s = Segments::parse(value).map_err(
debug!("camera_view_mp4: appending s={:?}", s); |_| Error::new(format!("invalid s parameter: {}", value)))?;
let mut est_segments = (s.ids.end - s.ids.start) as usize; debug!("camera_view_mp4: appending s={:?}", s);
if let Some(end) = s.end_time { let mut est_segments = (s.ids.end - s.ids.start) as usize;
// There should be roughly ceil((end - start) / desired_recording_duration) if let Some(end) = s.end_time {
// recordings in the desired timespan if there are no gaps or overlap, // There should be roughly ceil((end - start) /
// possibly another for misalignment of the requested timespan with the // desired_recording_duration) recordings in the desired timespan if
// rotate offset and another because rotation only happens at key frames. // there are no gaps or overlap, possibly another for misalignment of
let ceil_durations = (end - s.start_time + // the requested timespan with the rotate offset and another because
recording::DESIRED_RECORDING_DURATION - 1) / // rotation only happens at key frames.
recording::DESIRED_RECORDING_DURATION; let ceil_durations = (end - s.start_time +
est_segments = cmp::min(est_segments, (ceil_durations + 2) as usize); recording::DESIRED_RECORDING_DURATION - 1) /
} recording::DESIRED_RECORDING_DURATION;
builder.reserve(est_segments); est_segments = cmp::min(est_segments, (ceil_durations + 2) as usize);
let db = self.db.lock(); }
let mut prev = None; builder.reserve(est_segments);
let mut cur_off = 0; let db = self.db.lock();
db.list_recordings_by_id(camera_id, s.ids.clone(), |r| { let mut prev = None;
let mut cur_off = 0;
db.list_recordings_by_id(camera_id, s.ids.clone(), |r| {
// Check for missing recordings.
match prev {
None if r.id == s.ids.start => {},
None => return Err(Error::new(format!("no such recording {}/{}",
camera_id, s.ids.start))),
Some(id) if r.id != id + 1 => {
return Err(Error::new(format!("no such recording {}/{}",
camera_id, id + 1)));
},
_ => {},
};
prev = Some(r.id);
// Add a segment for the relevant part of the recording, if any.
let end_time = s.end_time.unwrap_or(i64::max_value());
let d = r.duration_90k as i64;
if s.start_time <= cur_off + d && cur_off < end_time {
let start = cmp::max(0, s.start_time - cur_off);
let end = cmp::min(d, end_time - cur_off);
let times = start as i32 .. end as i32;
debug!("...appending recording {}/{} with times {:?} (out of dur {})",
r.camera_id, r.id, times, d);
builder.append(&db, r, start as i32 .. end as i32)?;
} else {
debug!("...skipping recording {}/{} dur {}", r.camera_id, r.id, d);
}
cur_off += d;
Ok(())
})?;
// Check for missing recordings. // Check for missing recordings.
match prev { match prev {
None if r.id == s.ids.start => {}, Some(id) if s.ids.end != id + 1 => {
None => return Err(Error::new(format!("no such recording {}/{}",
camera_id, s.ids.start))),
Some(id) if r.id != id + 1 => {
return Err(Error::new(format!("no such recording {}/{}", return Err(Error::new(format!("no such recording {}/{}",
camera_id, id + 1))); camera_id, s.ids.end - 1)));
},
None => {
return Err(Error::new(format!("no such recording {}/{}",
camera_id, s.ids.start)));
}, },
_ => {}, _ => {},
}; };
prev = Some(r.id); if let Some(end) = s.end_time {
if end > cur_off {
// Add a segment for the relevant part of the recording, if any. return Err(Error::new(
let end_time = s.end_time.unwrap_or(i64::max_value()); format!("end time {} is beyond specified recordings", end)));
let d = r.duration_90k as i64; }
if s.start_time <= cur_off + d && cur_off < end_time {
let start = cmp::max(0, s.start_time - cur_off);
let end = cmp::min(d, end_time - cur_off);
let times = start as i32 .. end as i32;
debug!("...appending recording {}/{} with times {:?} (out of dur {})",
r.camera_id, r.id, times, d);
builder.append(&db, r, start as i32 .. end as i32)?;
} else {
debug!("...skipping recording {}/{} dur {}", r.camera_id, r.id, d);
} }
cur_off += d; },
Ok(()) "ts" => builder.include_timestamp_subtitle_track(value == "true"),
})?; _ => return Err(Error::new(format!("parameter {} not understood", key))),
}
// Check for missing recordings. };
match prev { }
Some(id) if s.ids.end != id + 1 => {
return Err(Error::new(format!("no such recording {}/{}",
camera_id, s.ids.end - 1)));
},
None => {
return Err(Error::new(format!("no such recording {}/{}",
camera_id, s.ids.start)));
},
_ => {},
};
if let Some(end) = s.end_time {
if end > cur_off {
return Err(Error::new(
format!("end time {} is beyond specified recordings", end)));
}
}
},
"ts" => builder.include_timestamp_subtitle_track(value == "true"),
_ => return Err(Error::new(format!("parameter {} not understood", key))),
}
};
let mp4 = builder.build(self.db.clone(), self.dir.clone())?; let mp4 = builder.build(self.db.clone(), self.dir.clone())?;
http_entity::serve(&mp4, req, res)?; Ok(http_entity::serve(mp4, req))
Ok(())
} }
/// Parses optional `start_time_90k` and `end_time_90k` query parameters, defaulting to the /// Parses optional `start_time_90k` and `end_time_90k` query parameters, defaulting to the
/// full range of possible values. /// full range of possible values.
fn get_optional_range(query: &str) -> Result<Range<recording::Time>, Error> { fn get_optional_range(query: Option<&str>) -> Result<Range<recording::Time>, Error> {
let mut start = i64::min_value(); let mut start = i64::min_value();
let mut end = i64::max_value(); let mut end = i64::max_value();
for (key, value) in form_urlencoded::parse(query.as_bytes()) { if let Some(q) = query {
let (key, value) = (key.borrow(), value.borrow()); for (key, value) in form_urlencoded::parse(q.as_bytes()) {
match key { let (key, value) = (key.borrow(), value.borrow());
"start_time_90k" => start = i64::from_str(value)?, match key {
"end_time_90k" => end = i64::from_str(value)?, "start_time_90k" => start = i64::from_str(value)?,
_ => {}, "end_time_90k" => end = i64::from_str(value)?,
} _ => {},
}; }
};
}
Ok(recording::Time(start) .. recording::Time(end)) Ok(recording::Time(start) .. recording::Time(end))
} }
} }
impl server::Handler for Handler { impl server::Service for Service {
fn handle(&self, req: server::Request, res: server::Response) { type Request = Request;
let (path, query) = get_path_and_query(&req.uri); type Response = Response<slices::Body>;
let res = match decode_path(path) { type Error = hyper::Error;
Path::CamerasList => self.list_cameras(&req, res), type Future = future::FutureResult<Self::Response, Self::Error>;
Path::Camera(uuid) => self.camera(uuid, query, &req, res),
Path::CameraRecordings(uuid) => self.camera_recordings(uuid, query, &req, res), fn call(&self, req: Request) -> Self::Future {
Path::CameraViewMp4(uuid) => self.camera_view_mp4(uuid, query, &req, res), debug!("request on: {}", req.uri());
Path::NotFound => self.not_found(res), let res = match decode_path(req.uri().path()) {
Path::CamerasList => self.list_cameras(&req),
Path::Camera(uuid) => self.camera(uuid, req.uri().query(), &req),
Path::CameraRecordings(uuid) => self.camera_recordings(uuid, req.uri().query(), &req),
Path::CameraViewMp4(uuid) => self.camera_view_mp4(uuid, req.uri().query(), &req),
Path::NotFound => self.not_found(),
}; };
if let Err(ref e) = res { future::result(res.map_err(|e| {
warn!("Error handling request: {}", e); error!("error: {}", e);
} hyper::Error::Incomplete
}))
} }
} }
@ -599,6 +610,7 @@ mod tests {
#[cfg(all(test, feature="nightly"))] #[cfg(all(test, feature="nightly"))]
mod bench { mod bench {
extern crate reqwest;
extern crate test; extern crate test;
use hyper; use hyper;
@ -612,18 +624,20 @@ mod bench {
impl Server { impl Server {
fn new() -> Server { fn new() -> Server {
let mut listener = hyper::net::HttpListener::new("127.0.0.1:0").unwrap();
use hyper::net::NetworkListener;
let addr = listener.local_addr().unwrap();
let server = hyper::Server::new(listener);
let url = format!("http://{}:{}", addr.ip(), addr.port());
let db = TestDb::new(); let db = TestDb::new();
testutil::add_dummy_recordings_to_db(&db.db, 1440); testutil::add_dummy_recordings_to_db(&db.db, 1440);
let (tx, rx) = ::std::sync::mpsc::channel();
::std::thread::spawn(move || { ::std::thread::spawn(move || {
let h = super::Handler::new(db.db.clone(), db.dir.clone()); let addr = "127.0.0.1:0".parse().unwrap();
let _ = server.handle(h); let (db, dir) = (db.db.clone(), db.dir.clone());
let server = hyper::server::Http::new()
.bind(&addr, move || Ok(super::Service::new(db.clone(), dir.clone())))
.unwrap();
tx.send(server.local_addr().unwrap()).unwrap();
server.run().unwrap();
}); });
Server{base_url: url} let addr = rx.recv().unwrap();
Server{base_url: format!("http://{}:{}", addr.ip(), addr.port())}
} }
} }
@ -635,13 +649,13 @@ mod bench {
fn serve_camera_html(b: &mut Bencher) { fn serve_camera_html(b: &mut Bencher) {
testutil::init(); testutil::init();
let server = &*SERVER; let server = &*SERVER;
let url = hyper::Url::parse(&format!("{}/cameras/{}/", server.base_url, let url = reqwest::Url::parse(&format!("{}/cameras/{}/", server.base_url,
*testutil::TEST_CAMERA_UUID)).unwrap(); *testutil::TEST_CAMERA_UUID)).unwrap();
let mut buf = Vec::new(); let mut buf = Vec::new();
b.iter(|| { b.iter(|| {
let client = hyper::Client::new(); let client = reqwest::Client::new().unwrap();
let mut resp = client.get(url.clone()).send().unwrap(); let mut resp = client.get(url.clone()).send().unwrap();
assert_eq!(resp.status, hyper::status::StatusCode::Ok); assert_eq!(*resp.status(), reqwest::StatusCode::Ok);
buf.clear(); buf.clear();
use std::io::Read; use std::io::Read;
resp.read_to_end(&mut buf).unwrap(); resp.read_to_end(&mut buf).unwrap();