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 257 258 259 260 261 262 263 264 265 266 267
use std::{
cmp::{Eq, Ord, Ordering, PartialEq, PartialOrd},
fmt,
hash::{Hash, Hasher},
marker::PhantomData,
str::FromStr,
};
use arrayvec::ArrayString;
use serde::{Deserialize, Serialize};
use wasm_bindgen::JsCast;
use crate::{game, Resolvable, RoomObject};
mod errors;
mod raw;
pub use errors::*;
pub use raw::*;
/// Represents an Object ID and a type that the ID points to.
///
/// Each object id in screeps is represented by a Mongo GUID, which,
/// while not guaranteed, is unlikely to change. This takes advantage of that by
/// storing a packed representation of 12 bytes.
///
/// This object ID is typed, but not strictly. It's completely safe to create an
/// ObjectId with an incorrect type, and all operations which use the type will
/// double-check at runtime.
///
/// With that said, using this can provide nice type inference, and should have
/// few disadvantages to the lower-level alternative, [`RawObjectId`].
///
/// # Conversion
///
/// Use `into` to convert between `ObjectId<T>` and [`RawObjectId`], and
/// [`ObjectId::into_type`] to change the type this `ObjectId` points to freely.
///
/// # Ordering
///
/// To facilitate use as a key in a [`BTreeMap`] or other similar data
/// structures, `ObjectId` implements [`PartialOrd`] and [`Ord`].
///
/// `ObjectId`'s are ordered by the corresponding order of their underlying
/// byte values. This agrees with:
///
/// - lexicographical ordering of the object id strings
/// - JavaScript's ordering of object id strings
/// - ordering of [`RawObjectId`]s
///
/// **Note:** when running on the official screeps server, or on a private
/// server backed by a MongoDB database, this ordering roughly corresponds to
/// creation order. The first four bytes of a MongoDB-created `ObjectId` [are
/// seconds since the epoch when the id was created][1], so up to a second
/// accuracy, these ids will be sorted by object creation time.
///
/// [`BTreeMap`]: std::collections::BTreeMap
/// [1]: https://docs.mongodb.com/manual/reference/method/ObjectId/
// Copy, Clone, Debug, PartialEq, Eq, Hash, PartialEq, Eq implemented manually below
#[derive(Serialize, Deserialize)]
#[serde(transparent, bound = "")]
pub struct ObjectId<T> {
raw: RawObjectId,
#[serde(skip)]
phantom: PhantomData<T>,
}
// traits implemented manually so they don't depend on `T` implementing them.
impl<T> Copy for ObjectId<T> {}
impl<T> Clone for ObjectId<T> {
fn clone(&self) -> ObjectId<T> {
ObjectId {
raw: self.raw,
phantom: PhantomData,
}
}
}
impl<T> fmt::Debug for ObjectId<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.raw.fmt(f)
}
}
impl<T> PartialEq for ObjectId<T> {
fn eq(&self, o: &ObjectId<T>) -> bool {
self.raw.eq(&o.raw)
}
}
impl<T> Eq for ObjectId<T> {}
impl<T> Hash for ObjectId<T> {
fn hash<H: Hasher>(&self, state: &mut H) {
self.raw.hash(state)
}
}
impl<T> PartialOrd<ObjectId<T>> for ObjectId<T> {
#[inline]
fn partial_cmp(&self, other: &ObjectId<T>) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl<T> Ord for ObjectId<T> {
#[inline]
fn cmp(&self, other: &Self) -> Ordering {
self.raw.cmp(&other.raw)
}
}
impl<T> FromStr for ObjectId<T> {
type Err = RawObjectIdParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let raw: RawObjectId = s.parse()?;
Ok(raw.into())
}
}
impl<T> fmt::Display for ObjectId<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.raw.fmt(f)
}
}
impl<T> ObjectId<T> {
/// Changes the type this [`ObjectId`] points to, unchecked.
///
/// This will allow changing to any type - `ObjectId` makes no guarantees
/// about its ID matching the type of any object in the game that it
/// actually points to.
pub fn into_type<U>(self) -> ObjectId<U> {
RawObjectId::from(self).into()
}
/// Creates an object ID from its packed representation.
///
/// The input to this function is the bytes representing the up-to-24 hex
/// digits in the object id.
///
/// See also [`RawObjectId::from_packed`].
pub fn from_packed(packed: u128) -> Self {
RawObjectId::from_packed(packed).into()
}
/// Converts this object ID to a `u128` number.
///
/// The returned number, when formatted as hex, will produce a string
/// parseable into this object id.
///
/// The returned number will be less than or equal to `2^96 - 1`, as that's
/// the maximum value that `RawObjectId` can hold.
pub fn to_u128(self) -> u128 {
self.raw.into()
}
/// Formats this object ID as a string on the stack.
///
/// This is equivalent to [`ToString::to_string`], but involves no
/// allocation.
///
/// See also [`RawObjectId::to_array_string`].
pub fn to_array_string(&self) -> ArrayString<24> {
self.raw.to_array_string()
}
/// Resolves this object ID into an object.
///
/// This is a shortcut for [`game::get_object_by_id_typed(id)`][1]
///
/// # Errors
///
/// Will return an error if this ID's type does not match the object it
/// points to with the resolved [`RoomObject`] with an unknown type.
///
/// Will return `Ok(None)` if the object no longer exists, or is in a room
/// we don't have vision for.
///
/// [1]: crate::game::get_object_by_id_typed
pub fn try_resolve(self) -> Result<Option<T>, RoomObject>
where
T: Resolvable + JsCast,
{
match game::get_object_by_id_erased(&self.raw) {
Some(v) => v.dyn_into().map(|v| Some(v)),
None => Ok(None),
}
}
/// Resolves this ID into an object, assuming the type `T` is the correct
/// type of object that this ID refers to. If the ID has been converted to
/// an invalid type, using the returned object in a way not valid for its
/// type will cause a panic.
///
/// Will return `None` if this object no longer exists, or is in a room we
/// don't have vision for.
pub fn resolve(self) -> Option<T>
where
T: Resolvable,
{
game::get_object_by_id_typed(&self)
}
}
impl<T> PartialEq<RawObjectId> for ObjectId<T> {
#[inline]
fn eq(&self, other: &RawObjectId) -> bool {
self.raw == *other
}
}
impl<T> PartialEq<ObjectId<T>> for RawObjectId {
#[inline]
fn eq(&self, other: &ObjectId<T>) -> bool {
*self == other.raw
}
}
impl<T> PartialOrd<RawObjectId> for ObjectId<T> {
#[inline]
fn partial_cmp(&self, other: &RawObjectId) -> Option<Ordering> {
Some(self.raw.cmp(other))
}
}
impl<T> PartialOrd<ObjectId<T>> for RawObjectId {
#[inline]
fn partial_cmp(&self, other: &ObjectId<T>) -> Option<Ordering> {
Some(self.cmp(&other.raw))
}
}
impl<T> From<RawObjectId> for ObjectId<T> {
fn from(raw: RawObjectId) -> Self {
ObjectId {
raw,
phantom: PhantomData,
}
}
}
impl<T> From<ObjectId<T>> for RawObjectId {
fn from(id: ObjectId<T>) -> Self {
id.raw
}
}
impl<T> From<ObjectId<T>> for ArrayString<24> {
fn from(id: ObjectId<T>) -> Self {
id.to_array_string()
}
}
impl<T> From<ObjectId<T>> for String {
fn from(id: ObjectId<T>) -> Self {
id.to_string()
}
}
impl<T> From<ObjectId<T>> for u128 {
fn from(id: ObjectId<T>) -> Self {
id.raw.into()
}
}
impl<T> From<u128> for ObjectId<T> {
fn from(packed: u128) -> Self {
Self::from_packed(packed)
}
}