]> git.draconx.ca Git - liblbx.git/blob - src/lbx.c
1d92f469d9b8c357003f61c05c381969ab61ea5e
[liblbx.git] / src / lbx.c
1 /*
2  *  2ooM: The Master of Orion II Reverse Engineering Project
3  *  Library for working with LBX archive files.
4  *  Copyright (C) 2006-2010 Nick Bowler
5  *
6  *  This program is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 #include <config.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <assert.h>
25
26 #include "pack.h"
27 #include "misc.h"
28 #include "error.h"
29 #include "lbx.h"
30
31 #define LBX_MAGIC    0x0000fead
32 #define LBX_HDR_SIZE 8
33
34 struct lbx_priv {
35         struct lbx pub;
36
37         char *name;
38
39         const struct lbx_file_ops *fops;
40         int (*dtor)(void *handle);
41         void *f;
42
43         struct lbx_file_state *last_file;
44
45         unsigned long offsets[];
46 };
47
48 struct lbx_file_state {
49         unsigned long base, limit, offset;
50         struct lbx_priv *lbx;
51         int eof;
52 };
53
54 static struct lbx_priv *lbx_init(unsigned char hdr[static LBX_HDR_SIZE])
55 {
56         unsigned short nfiles  = unpack_16_le(hdr+0);
57         unsigned long  magic   = unpack_32_le(hdr+2);
58         unsigned short version = unpack_16_le(hdr+6);
59         struct lbx_priv *lbx;
60
61         if (magic != LBX_MAGIC) {
62                 lbx_error_raise(LBX_EMAGIC);
63                 return NULL;
64         }
65
66         lbx = malloc(sizeof *lbx + sizeof lbx->offsets[0] * (nfiles+1));
67         if (!lbx) {
68                 lbx_error_raise(LBX_ENOMEM);
69                 return NULL;
70         }
71
72         *lbx = (struct lbx_priv) {
73                 .pub = { .nfiles = nfiles, },
74         };
75
76         return lbx;
77 }
78
79 static char *str_dup(const char *s)
80 {
81         char *buf;
82
83         buf = malloc(strlen(s)+1);
84         if (buf)
85                 strcpy(buf, s);
86         return buf;
87 }
88
89 struct lbx *lbx_open(void *f, const struct lbx_file_ops *fops,
90                      int (*destructor)(void *), const char *name)
91 {
92         unsigned char hdr_buf[LBX_HDR_SIZE];
93         struct lbx_priv *lbx = NULL;
94         char *dupname = NULL;
95
96         dupname = str_dup(name);
97         if (!dupname) {
98                 lbx_error_raise(LBX_ENOMEM);
99                 goto err;
100         }
101
102         if (fops->read(hdr_buf, sizeof hdr_buf, f) != sizeof hdr_buf) {
103                 if (fops->eof(f))
104                         lbx_error_raise(LBX_EEOF);
105                 goto err;
106         }
107
108         lbx = lbx_init(hdr_buf);
109         if (!lbx)
110                 goto err;
111
112         lbx->name = dupname;
113         lbx->dtor = destructor;
114         lbx->fops = fops;
115         lbx->f    = f;
116
117         for (unsigned i = 0; i <= lbx->pub.nfiles; i++) {
118                 unsigned char buf[4];
119
120                 if (fops->read(buf, sizeof buf, f) != sizeof buf) {
121                         if (fops->eof(f))
122                                 lbx_error_raise(LBX_EEOF);
123                         goto err;
124                 }
125
126                 lbx->offsets[i] = unpack_32_le(buf);
127         }
128
129         return &lbx->pub;
130 err:
131         free(dupname);
132         free(lbx);
133         return NULL;
134 }
135
136 static int file_close(void *f)
137 {
138         return fclose((FILE *)f);
139 }
140
141 static int pipe_close(void *f)
142 {
143         struct lbx_pipe_state *p = f;
144         int rc;
145
146         rc = fclose(p->f);
147         free(p);
148         return rc;
149 }
150
151 static char *last_component(const char *name)
152 {
153         char *c;
154
155         /* TODO: Handle other path separators. */
156         c = strrchr(name, '/');
157         if (!c)
158                 return (char *)name;
159         return c+1;
160 }
161
162 struct lbx *lbx_fopen(const char *file)
163 {
164         const char *name = last_component(file);
165         struct lbx_pipe_state *p;
166         FILE *f;
167
168         f = fopen(file, "rb");
169         if (!f)
170                 return NULL;
171
172         if (fseek(f, 0, SEEK_CUR) == 0)
173                 return lbx_open(f, &lbx_default_fops, file_close, name);
174
175         p = malloc(sizeof *p);
176         if (!p) {
177                 fclose(f);
178                 return NULL;
179         }
180
181         *p = (struct lbx_pipe_state) { .f = f };
182         return lbx_open(p, &lbx_pipe_fops, pipe_close, name);
183 }
184
185 size_t lbx_numfiles(struct lbx *pub)
186 {
187         return pub->nfiles;
188 }
189
190 int
191 lbx_file_stat(struct lbx *pub, unsigned fileno, struct lbx_statbuf *buf)
192 {
193         struct lbx_priv *lbx = (struct lbx_priv *)pub;
194         static char str[256]; /* FIXME */
195
196         if (fileno >= lbx->pub.nfiles) {
197                 lbx_error_raise(LBX_ENOENT);
198                 buf->name = NULL;
199                 return -1;
200         }
201
202         snprintf(str, sizeof str, "%s.%03u", lbx->name, fileno);
203         buf->name = str;
204         buf->size = lbx->offsets[fileno+1] - lbx->offsets[fileno];
205         return 0;
206 }
207
208 int lbx_close(struct lbx *pub)
209 {
210         struct lbx_priv *lbx = (struct lbx_priv *)pub;
211         int rc = 0;
212
213         if (lbx && lbx->dtor)
214                 rc = lbx->dtor(lbx->f);
215         free(lbx->name);
216         free(lbx);
217
218         return rc;
219 }
220
221 struct lbx_file_state *lbx_file_open(struct lbx *pub, unsigned fileno)
222 {
223         struct lbx_priv *lbx = (struct lbx_priv *)pub;
224         struct lbx_file_state *state;
225
226         if (fileno >= lbx->pub.nfiles) {
227                 lbx_error_raise(LBX_ENOENT);
228                 return NULL;
229         }
230
231         lbx->last_file = NULL;
232         if (lbx->fops->seek(lbx->f, lbx->offsets[fileno], SEEK_SET) != 0) {
233                 return NULL;
234         }
235
236         state = malloc(sizeof *state);
237         if (!state) {
238                 lbx_error_raise(LBX_ENOMEM);
239                 return NULL;
240         }
241
242         *state = (struct lbx_file_state) {
243                 .base  = lbx->offsets[fileno],
244                 .limit = lbx->offsets[fileno+1] - lbx->offsets[fileno],
245                 .lbx   = lbx,
246         };
247
248         lbx->last_file = state;
249         return state;
250 }
251
252 size_t lbx_file_read(struct lbx_file_state *f, void *buf, size_t n)
253 {
254         const struct lbx_file_ops *fops = f->lbx->fops;
255         size_t want = MIN(n, f->limit - f->offset);
256         size_t rc;
257
258         if (f != f->lbx->last_file) {
259                 f->lbx->last_file = NULL;
260                 if (fops->seek(f->lbx->f, f->base + f->limit, SEEK_SET) != 0)
261                         return 0;
262                 f->lbx->last_file = f;
263         }
264
265         rc = fops->read(buf, want, f->lbx->f);
266         f->offset += rc;
267
268         if (want < n || (rc < want && fops->eof(f->lbx->f)))
269                 f->eof = 1;
270         return rc;
271 }
272
273 int lbx_file_seek(struct lbx_file_state *f, long offset, int whence)
274 {
275         const struct lbx_file_ops *fops = f->lbx->fops;
276         unsigned long pos;
277
278         switch (whence) {
279         case SEEK_CUR:
280                 pos = f->offset + offset;
281                 break;
282         case SEEK_SET:
283                 pos = offset;
284                 break;
285         case SEEK_END:
286                 pos = f->limit + offset;
287                 break;
288         }
289
290         if (pos > f->limit)
291                 return -1;
292
293         f->lbx->last_file = NULL;
294         if (fops->seek(f->lbx->f, f->base + pos, SEEK_SET) != 0)
295                 return -1;
296
297         f->offset = pos;
298         f->lbx->last_file = f;
299         f->eof = 0;
300
301         return 0;
302 }
303
304 long lbx_file_tell(struct lbx_file_state *f)
305 {
306         return f->offset;
307 }
308
309 int lbx_file_eof(struct lbx_file_state *f)
310 {
311         return f->eof;
312 }
313
314 void lbx_file_close(struct lbx_file_state *f)
315 {
316         if (f->lbx->last_file == f)
317                 f->lbx->last_file = NULL;
318         free(f);
319 }