1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
//! Contains the types related to a `ChangeStream` event.
#[cfg(test)]
use std::convert::TryInto;
use crate::{cursor::CursorSpecification, options::ChangeStreamOptions};
#[cfg(test)]
use bson::Bson;
use bson::{DateTime, Document, RawBson, RawDocumentBuf, Timestamp};
use serde::{Deserialize, Serialize};
/// An opaque token used for resuming an interrupted
/// [`ChangeStream`](crate::change_stream::ChangeStream).
///
/// When starting a new change stream,
/// [`crate::options::ChangeStreamOptions::start_after`] and
/// [`crate::options::ChangeStreamOptions::resume_after`] fields can be specified
/// with instances of `ResumeToken`.
///
/// See the documentation
/// [here](https://www.mongodb.com/docs/manual/changeStreams/#change-stream-resume-token) for more
/// information on resume tokens.
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
pub struct ResumeToken(pub(crate) RawBson);
impl ResumeToken {
pub(crate) fn initial(
options: Option<&ChangeStreamOptions>,
spec: &CursorSpecification,
) -> Option<ResumeToken> {
match &spec.post_batch_resume_token {
// Token from initial response from `aggregate`
Some(token) if spec.initial_buffer.is_empty() => Some(token.clone()),
// Token from options passed to `watch`
_ => options
.and_then(|o| o.start_after.as_ref().or(o.resume_after.as_ref()))
.cloned(),
}
}
pub(crate) fn from_raw(doc: Option<RawDocumentBuf>) -> Option<ResumeToken> {
doc.map(|doc| ResumeToken(RawBson::Document(doc)))
}
#[cfg(test)]
pub fn parsed(self) -> std::result::Result<Bson, bson::raw::Error> {
self.0.try_into()
}
}
/// A `ChangeStreamEvent` represents a
/// [change event](https://www.mongodb.com/docs/manual/reference/change-events/) in the associated change stream.
#[derive(Debug, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct ChangeStreamEvent<T> {
/// An opaque token for use when resuming an interrupted `ChangeStream`.
///
/// See the documentation
/// [here](https://www.mongodb.com/docs/manual/changeStreams/#change-stream-resume-token) for
/// more information on resume tokens.
///
/// Also see the documentation on [resuming a change
/// stream](https://www.mongodb.com/docs/manual/changeStreams/#resume-a-change-stream).
#[serde(rename = "_id")]
pub id: ResumeToken,
/// Describes the type of operation represented in this change notification.
pub operation_type: OperationType,
/// Identifies the collection or database on which the event occurred.
pub ns: Option<ChangeNamespace>,
/// The new name for the `ns` collection. Only included for `OperationType::Rename`.
pub to: Option<ChangeNamespace>,
/// A `Document` that contains the `_id` of the document created or modified by the `insert`,
/// `replace`, `delete`, `update` operations (i.e. CRUD operations). For sharded collections,
/// also displays the full shard key for the document. The `_id` field is not repeated if it is
/// already a part of the shard key.
pub document_key: Option<Document>,
/// A description of the fields that were updated or removed by the update operation.
/// Only specified if `operation_type` is `OperationType::Update`.
pub update_description: Option<UpdateDescription>,
/// The cluster time at which the change occurred.
pub cluster_time: Option<Timestamp>,
/// The wall time from the mongod that the change event originated from.
pub wall_time: Option<DateTime>,
/// The `Document` created or modified by the `insert`, `replace`, `delete`, `update`
/// operations (i.e. CRUD operations).
///
/// For `insert` and `replace` operations, this represents the new document created by the
/// operation. For `delete` operations, this field is `None`.
///
/// For `update` operations, this field only appears if you configured the change stream with
/// [`full_document`](crate::options::ChangeStreamOptions::full_document) set to
/// [`UpdateLookup`](crate::options::FullDocumentType::UpdateLookup). This field then
/// represents the most current majority-committed version of the document modified by the
/// update operation.
pub full_document: Option<T>,
/// Contains the pre-image of the modified or deleted document if the pre-image is available
/// for the change event and either `Required` or `WhenAvailable` was specified for the
/// [`full_document_before_change`](
/// crate::options::ChangeStreamOptions::full_document_before_change) option when creating the
/// change stream. If `WhenAvailable` was specified but the pre-image is unavailable, this
/// will be explicitly set to `None`.
pub full_document_before_change: Option<T>,
}
/// Describes which fields have been updated or removed from a document.
#[derive(Debug, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct UpdateDescription {
/// A `Document` containing key:value pairs of names of the fields that were changed, and the
/// new value for those fields.
pub updated_fields: Document,
/// An array of field names that were removed from the `Document`.
pub removed_fields: Vec<String>,
/// Arrays that were truncated in the `Document`.
pub truncated_arrays: Option<Vec<TruncatedArray>>,
}
/// Describes an array that has been truncated.
#[derive(Debug, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub struct TruncatedArray {
/// The field path of the array.
pub field: String,
/// The new size of the array.
pub new_size: i32,
}
/// The operation type represented in a given change notification.
#[derive(Debug, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum OperationType {
/// See [insert-event](https://www.mongodb.com/docs/manual/reference/change-events/#insert-event)
Insert,
/// See [update-event](https://www.mongodb.com/docs/manual/reference/change-events/#update-event)
Update,
/// See [replace-event](https://www.mongodb.com/docs/manual/reference/change-events/#replace-event)
Replace,
/// See [delete-event](https://www.mongodb.com/docs/manual/reference/change-events/#delete-event)
Delete,
/// See [drop-event](https://www.mongodb.com/docs/manual/reference/change-events/#drop-event)
Drop,
/// See [rename-event](https://www.mongodb.com/docs/manual/reference/change-events/#rename-event)
Rename,
/// See [dropdatabase-event](https://www.mongodb.com/docs/manual/reference/change-events/#dropdatabase-event)
DropDatabase,
/// See [invalidate-event](https://www.mongodb.com/docs/manual/reference/change-events/#invalidate-event)
Invalidate,
/// A catch-all for future event types.
Other(String),
}
#[derive(Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
enum OperationTypeHelper {
Insert,
Update,
Replace,
Delete,
Drop,
Rename,
DropDatabase,
Invalidate,
}
#[derive(Serialize, Deserialize)]
#[serde(untagged)]
enum OperationTypeWrapper<'a> {
Known(OperationTypeHelper),
Unknown(&'a str),
}
impl<'a> From<&'a OperationType> for OperationTypeWrapper<'a> {
fn from(src: &'a OperationType) -> Self {
match src {
OperationType::Insert => Self::Known(OperationTypeHelper::Insert),
OperationType::Update => Self::Known(OperationTypeHelper::Update),
OperationType::Replace => Self::Known(OperationTypeHelper::Replace),
OperationType::Delete => Self::Known(OperationTypeHelper::Delete),
OperationType::Drop => Self::Known(OperationTypeHelper::Drop),
OperationType::Rename => Self::Known(OperationTypeHelper::Rename),
OperationType::DropDatabase => Self::Known(OperationTypeHelper::DropDatabase),
OperationType::Invalidate => Self::Known(OperationTypeHelper::Invalidate),
OperationType::Other(s) => Self::Unknown(s),
}
}
}
impl<'a> From<OperationTypeWrapper<'a>> for OperationType {
fn from(src: OperationTypeWrapper) -> Self {
match src {
OperationTypeWrapper::Known(h) => match h {
OperationTypeHelper::Insert => Self::Insert,
OperationTypeHelper::Update => Self::Update,
OperationTypeHelper::Replace => Self::Replace,
OperationTypeHelper::Delete => Self::Delete,
OperationTypeHelper::Drop => Self::Drop,
OperationTypeHelper::Rename => Self::Rename,
OperationTypeHelper::DropDatabase => Self::DropDatabase,
OperationTypeHelper::Invalidate => Self::Invalidate,
},
OperationTypeWrapper::Unknown(s) => Self::Other(s.to_string()),
}
}
}
impl<'de> Deserialize<'de> for OperationType {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
OperationTypeWrapper::deserialize(deserializer).map(OperationType::from)
}
}
impl Serialize for OperationType {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
OperationTypeWrapper::serialize(&self.into(), serializer)
}
}
/// Identifies the collection or database on which an event occurred.
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
#[non_exhaustive]
pub struct ChangeNamespace {
/// The name of the database in which the change occurred.
pub db: String,
/// The name of the collection in which the change occurred.
pub coll: Option<String>,
}