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
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::any::{type_name, TypeId};
use std::ops::{Deref, DerefMut};
use std::ptr::NonNull;

use fxhash::FxHashMap;
use lock_api::RawRwLock as _;
use parking_lot::RawRwLock;

use crate::archetype::Archetype;
use crate::world::Component;

/// Tracks which components of a world are borrowed in what ways
#[derive(Default)]
pub struct BorrowState {
    states: FxHashMap<TypeId, RawRwLock>,
}

impl BorrowState {
    pub(crate) fn ensure(&mut self, ty: TypeId) {
        self.states.entry(ty).or_insert(RawRwLock::INIT);
    }

    /// Acquire a shared borrow
    pub fn borrow(&self, ty: TypeId, name: &str) {
        if self.states.get(&ty).map_or(false, |x| !x.try_lock_shared()) {
            panic!("{} already borrowed uniquely", name);
        }
    }

    /// Acquire a unique borrow
    pub fn borrow_mut(&self, ty: TypeId, name: &str) {
        if self
            .states
            .get(&ty)
            .map_or(false, |x| !x.try_lock_exclusive())
        {
            panic!("{} already borrowed", name);
        }
    }

    /// Release a shared borrow
    pub fn release(&self, ty: TypeId) {
        if let Some(x) = self.states.get(&ty) {
            x.unlock_shared();
        }
    }

    /// Release a unique borrow
    pub fn release_mut(&self, ty: TypeId) {
        if let Some(x) = self.states.get(&ty) {
            x.unlock_exclusive();
        }
    }
}

/// Shared borrow of an entity's component
#[derive(Clone)]
pub struct Ref<'a, T: Component> {
    borrow: &'a BorrowState,
    target: NonNull<T>,
}

impl<'a, T: Component> Ref<'a, T> {
    pub(crate) unsafe fn new(borrow: &'a BorrowState, target: NonNull<T>) -> Self {
        borrow.borrow(TypeId::of::<T>(), type_name::<T>());
        Self { borrow, target }
    }
}

impl<'a, T: Component> Drop for Ref<'a, T> {
    fn drop(&mut self) {
        self.borrow.release(TypeId::of::<T>());
    }
}

impl<'a, T: Component> Deref for Ref<'a, T> {
    type Target = T;
    fn deref(&self) -> &T {
        unsafe { self.target.as_ref() }
    }
}

/// Unique borrow of an entity's component
pub struct RefMut<'a, T: Component> {
    borrow: &'a BorrowState,
    target: NonNull<T>,
}

impl<'a, T: Component> RefMut<'a, T> {
    pub(crate) fn new(borrow: &'a BorrowState, target: NonNull<T>) -> Self {
        borrow.borrow_mut(TypeId::of::<T>(), type_name::<T>());
        Self { borrow, target }
    }
}

impl<'a, T: Component> Drop for RefMut<'a, T> {
    fn drop(&mut self) {
        self.borrow.release_mut(TypeId::of::<T>());
    }
}

impl<'a, T: Component> Deref for RefMut<'a, T> {
    type Target = T;
    fn deref(&self) -> &T {
        unsafe { self.target.as_ref() }
    }
}

impl<'a, T: Component> DerefMut for RefMut<'a, T> {
    fn deref_mut(&mut self) -> &mut T {
        unsafe { self.target.as_mut() }
    }
}

/// Handle to an entity with any component types
#[derive(Copy, Clone)]
pub struct EntityRef<'a> {
    borrow: &'a BorrowState,
    archetype: &'a Archetype,
    index: u32,
}

impl<'a> EntityRef<'a> {
    pub(crate) fn new(borrow: &'a BorrowState, archetype: &'a Archetype, index: u32) -> Self {
        Self {
            borrow,
            archetype,
            index,
        }
    }

    /// Borrow the component of type `T`, if it exists
    ///
    /// Panics if a component of type `T` is already uniquely borrowed from the world
    pub fn get<T: Component>(&self) -> Option<Ref<'a, T>> {
        Some(unsafe { Ref::new(self.borrow, self.archetype.get(self.index)?) })
    }

    /// Uniquely borrow the component of type `T`, if it exists
    ///
    /// Panics if a component of type `T` is already borrowed from the world
    pub fn get_mut<T: Component>(&self) -> Option<RefMut<'a, T>> {
        Some(unsafe { RefMut::new(self.borrow, self.archetype.get(self.index)?) })
    }
}