1use std::any::Any;
2use std::rc::Rc;
3
4#[cfg(feature = "query")]
5use crate::{error::HistoryResult, query::FromQuery};
6
7#[derive(Clone, Debug)]
12pub struct Location {
13 pub(crate) path: Rc<String>,
14 pub(crate) query_str: Rc<String>,
15 pub(crate) hash: Rc<String>,
16 pub(crate) state: Option<Rc<dyn Any>>,
17 pub(crate) id: Option<u32>,
18}
19
20impl Location {
21 pub fn id(&self) -> Option<u32> {
29 self.id
30 }
31
32 pub fn path(&self) -> &str {
34 &self.path
35 }
36
37 pub fn query_str(&self) -> &str {
39 &self.query_str
40 }
41
42 #[cfg(feature = "query")]
44 pub fn query<T>(&self) -> HistoryResult<T::Target, T::Error>
45 where
46 T: FromQuery,
47 {
48 let query = self.query_str().strip_prefix('?').unwrap_or("");
49 T::from_query(query)
50 }
51
52 pub fn hash(&self) -> &str {
54 &self.hash
55 }
56
57 pub fn state<T>(&self) -> Option<Rc<T>>
61 where
62 T: 'static,
63 {
64 self.state.clone().and_then(|m| m.downcast().ok())
65 }
66}
67
68impl PartialEq for Location {
69 fn eq(&self, rhs: &Self) -> bool {
70 if let Some(lhs) = self.id() {
71 if let Some(rhs) = rhs.id() {
72 return lhs == rhs;
73 }
74 }
75 false
76 }
77}