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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
//! The interface between [rs3cache](crate) and the cache database.

use core::panic::Location;
use std::collections::BTreeSet;

#[cfg(feature = "dat2")]
use {crate::error, crate::xtea::Xtea, ::error::Context, std::collections::HashMap, std::fs::File};
#[cfg(feature = "sqlite")]
use {crate::error, ::error::Context};
#[cfg(feature = "dat")]
use {std::collections::BTreeMap, std::fs::File};

use crate::{
    arc::Archive,
    error::CacheResult,
    meta::{IndexMetadata, Metadata},
    path::CachePath,
};

/// This contains the game-specific implementations.
#[cfg_attr(feature = "sqlite", path = "index/sqlite.rs")]
#[cfg_attr(feature = "dat2", path = "index/dat2.rs")]
#[cfg_attr(feature = "dat", path = "index/dat.rs")]
mod index_impl;

pub use index_impl::*;

mod states {
    /// Initial state of [`CacheIndex`](super::CacheIndex).
    pub struct Initial {}

    pub struct Truncated {
        pub feed: Vec<u32>,
    }

    /// Trait that describes the current index state. Cannot be implemented.
    pub trait IndexState {}
    impl IndexState for Initial {}
    impl IndexState for Truncated {}
}

pub use states::{IndexState, Initial, Truncated};

/// Container of [`Archive`]s.
pub struct CacheIndex<S: IndexState> {
    index_id: u32,
    metadatas: IndexMetadata,
    state: S,
    input: CachePath,

    #[cfg(feature = "sqlite")]
    connection: rusqlite::Connection,

    #[cfg(any(feature = "dat2", feature = "dat"))]
    file: File,

    #[cfg(feature = "dat2")]
    xteas: Option<HashMap<u32, Xtea>>,
}

// methods valid in any state
impl<S> CacheIndex<S>
where
    S: IndexState,
{
    /// The index id of `self`,
    /// corresponding to the `raw/js5-{index_id}.jcache` file being held.
    #[inline(always)]
    pub fn index_id(&self) -> u32 {
        self.index_id
    }

    /// Returns a view over the [`IndexMetadata`] of `self`.
    #[inline(always)]
    pub fn metadatas(&self) -> &IndexMetadata {
        &(self.metadatas)
    }

    /// Get an [`Archive`] from `self`.
    ///
    /// # Errors
    ///
    /// Raises [`ArchiveNotFoundError`](CacheError::ArchiveNotFoundError) if `archive_id` is not in `self`.
    #[cfg(any(feature = "sqlite", feature = "dat2"))]
    pub fn archive(&self, archive_id: u32) -> CacheResult<Archive> {
        let metadata = self
            .metadatas()
            .get(&archive_id)
            .context(ArchiveMissing {
                index_id: self.index_id,
                archive_id,
            })
            .context(error::Integrity)?;
        let data = self.get_file(metadata)?;

        Ok(Archive::deserialize(metadata, data))
    }

    #[cfg(feature = "dat")]
    pub fn archive(&self, archive_id: u32) -> CacheResult<Archive> {
        // FIXME
        let metadata = Metadata {
            index_id: self.index_id,
            archive_id,
            child_count: 1,
            child_indices: vec![0],
            ..Default::default()
        };

        let data = self.get_file(&metadata)?;

        if self.index_id == 0 {
            Ok(Archive::deserialize_jag(&metadata, data)?)
        } else {
            Ok(Archive {
                index_id: self.index_id,
                archive_id,
                files: {
                    let mut files = BTreeMap::new();
                    files.insert(metadata.child_indices()[0], data);
                    files
                },
                files_named: BTreeMap::new(),
            })
        }
    }
}

impl CacheIndex<Initial> {
    /// Retain only those archives that are in `ids`.
    /// Advances `self` to the `Truncated` state.
    ///
    /// # Panics
    ///
    /// Panics if any of `ids` is not in `self`.
    pub fn retain(self, ids: Vec<u32>) -> CacheIndex<Truncated> {
        let all_ids = self.metadatas().keys().copied().collect::<BTreeSet<_>>();

        if let Some(missing_id) = ids.iter().find(|id| !all_ids.contains(id)) {
            panic!("Attempted to retain missing archive id {missing_id},")
        }
        let Self {
            input,
            #[cfg(feature = "sqlite")]
            connection,
            #[cfg(any(feature = "dat2", feature = "dat"))]
            file,
            index_id,
            metadatas,
            #[cfg(feature = "dat2")]
            xteas,
            ..
        } = self;

        CacheIndex {
            input,
            #[cfg(feature = "sqlite")]
            connection,
            #[cfg(any(feature = "dat2", feature = "dat"))]
            file,
            index_id,
            metadatas,
            #[cfg(feature = "dat2")]
            xteas,
            state: Truncated { feed: ids },
        }
    }
}

impl IntoIterator for CacheIndex<Initial> {
    type Item = CacheResult<Archive>;

    type IntoIter = IntoIter;

    fn into_iter(self) -> Self::IntoIter {
        let feed = self.metadatas().keys().copied().collect::<Vec<u32>>().into_iter();

        IntoIter { index: self, feed }
    }
}

impl IntoIterator for CacheIndex<Truncated> {
    type Item = CacheResult<Archive>;

    type IntoIter = IntoIter;

    fn into_iter(self) -> Self::IntoIter {
        let Self {
            input,
            #[cfg(feature = "sqlite")]
            connection,
            #[cfg(any(feature = "dat2", feature = "dat"))]
            file,
            index_id,
            metadatas,
            #[cfg(feature = "dat2")]
            xteas,
            state,
        } = self;

        let index = CacheIndex {
            input,
            #[cfg(feature = "sqlite")]
            connection,
            #[cfg(any(feature = "dat2", feature = "dat"))]
            file,
            index_id,
            metadatas,
            #[cfg(feature = "dat2")]
            xteas,
            state: Initial {},
        };

        IntoIter {
            index,
            feed: state.feed.into_iter(),
        }
    }
}

/// Iterator over all [`Archive`]s of `self`. Yields in arbitrary order.
#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct IntoIter {
    pub(crate) index: CacheIndex<Initial>,
    feed: std::vec::IntoIter<u32>,
}

impl IntoIter {
    /// Returns a view of the [`IndexMetadata`] of the contained [`CacheIndex`].
    pub fn metadatas(&self) -> &IndexMetadata {
        self.index.metadatas()
    }
}

impl Iterator for IntoIter {
    type Item = CacheResult<Archive>;

    fn next(&mut self) -> Option<Self::Item> {
        self.feed.next().map(|archive_id| self.index.archive(archive_id))
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        self.feed.size_hint()
    }
}

impl ExactSizeIterator for IntoIter {}

#[derive(::error::Error)]
pub enum IntegrityError {
    #[error = "Index {index_id} does not contain archive {archive_id}"]
    ArchiveMissing {
        index_id: u32,
        archive_id: u32,
        #[location]
        location: &'static Location<'static>,
    },
    #[error = "Index {index_id} does not contain archive {name}"]
    ArchiveMissingNamed {
        index_id: u32,
        name: String,
        #[location]
        location: &'static Location<'static>,
    },
    #[error = "Index {index_id}, archive {archive_id} does not contain file {file} "]
    FileMissing { index_id: u32, archive_id: u32, file: u32 },
    #[error = "Index {index_id}, archive {archive_id} does not contain file {name} "]
    FileMissingNamed { index_id: u32, archive_id: u32, name: String },
    #[cfg(feature = "dat2")]
    #[error = "Mapsquare ({i}, {i}) has no xtea"]
    XteaMissing { i: u32, j: u32 },
    #[error = "Index {metadata.index_id} Archive {metadata.archive_id}: Crc does not match: {crc} !=  {metadata.crc}"]
    Crc { crc: i64, metadata: Metadata },
    #[error = "Index {metadata.index_id} Archive {metadata.archive_id}: Version does not match: {version} !=  {metadata.version}"]
    Version { version: i64, metadata: Metadata },
    #[error = "Index {metadata.index_id}'s archive {metadata.archive_id} is blank"]
    Blank { metadata: Metadata },
    #[error = "Error retrieving {metadata}"]
    Corrupted {
        #[cfg(feature = "sqlite")]
        #[source]
        source: rusqlite::Error,
        metadata: Metadata,
        #[location]
        location: &'static Location<'static>,
    },
    #[error = "Something went wrong"]
    Other {
        #[cfg(feature = "sqlite")]
        #[source]
        source: rusqlite::Error,
        #[location]
        location: &'static Location<'static>,
    },
}