author | Ryan C. Gordon <icculus@icculus.org> |
Tue, 20 Mar 2012 15:38:12 -0400 | |
changeset 1240 | 22d4d1bd4e21 |
parent 1129 | d81afe4b0a97 |
child 1247 | 4ea4710d4863 |
permissions | -rw-r--r-- |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* ISO9660 support routines for PhysicsFS. |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
4 |
* Please see the file LICENSE.txt in the source's root directory. |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
6 |
* This file written by Christoph Nelles. |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
7 |
*/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
|
1096 | 9 |
/* !!! FIXME: this file needs Ryanification. */ |
10 |
||
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
11 |
/* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
12 |
* Handles CD-ROM disk images (and raw CD-ROM devices). |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
13 |
* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
14 |
* Not supported: |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
15 |
* - RockRidge |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
16 |
* - Non 2048 Sectors |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
17 |
* - UDF |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
18 |
* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
19 |
* Deviations from the standard |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
20 |
* - Ignores mandatory sort order |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
21 |
* - Allows various invalid file names |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
22 |
* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
23 |
* Problems |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
24 |
* - Ambiguities in the standard |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
25 |
*/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
26 |
|
1116
20dfca1e8a27
Fixed incorrect #ifdef.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
27 |
#if (defined PHYSFS_SUPPORTS_ISO9660) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
28 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
29 |
#define __PHYSICSFS_INTERNAL__ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
30 |
#include "physfs_internal.h" |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
31 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
32 |
#include <time.h> |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
33 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
34 |
/* cache files smaller than this completely in memory */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
35 |
#define ISO9660_FULLCACHEMAXSIZE 2048 |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
36 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
37 |
/* !!! FIXME: this is going to cause trouble. */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
38 |
#pragma pack(push) /* push current alignment to stack */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
39 |
#pragma pack(1) /* set alignment to 1 byte boundary */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
40 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
41 |
/* This is the format as defined by the standard |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
42 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
43 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
44 |
PHYSFS_uint32 lsb; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
45 |
PHYSFS_uint32 msb; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
46 |
} ISOBB32bit; // 32byte Both Byte type, means the value first in LSB then in MSB |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
47 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
48 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
49 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
50 |
PHYSFS_uint16 lsb; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
51 |
PHYSFS_uint16 msb; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
52 |
} ISOBB16bit; // 16byte Both Byte type, means the value first in LSB then in MSB |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
53 |
*/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
54 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
55 |
/* define better ones to simplify coding (less if's) */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
56 |
#if PHYSFS_BYTEORDER == PHYSFS_LIL_ENDIAN |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
57 |
#define ISOBB32bit(name) PHYSFS_uint32 name; PHYSFS_uint32 __dummy_##name; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
58 |
#define ISOBB16bit(name) PHYSFS_uint16 name; PHYSFS_uint16 __dummy_##name; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
59 |
#else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
60 |
#define ISOBB32bit(name) PHYSFS_uint32 __dummy_##name; PHYSFS_uint32 name; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
61 |
#define ISOBB16bit(name) PHYSFS_uint16 __dummy_##name; PHYSFS_uint16 name; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
62 |
#endif |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
63 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
64 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
65 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
66 |
char year[4]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
67 |
char month[2]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
68 |
char day[2]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
69 |
char hour[2]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
70 |
char minute[2]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
71 |
char second[2]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
72 |
char centisec[2]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
73 |
PHYSFS_sint8 offset; /* in 15min from GMT */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
74 |
} ISO9660VolumeTimestamp; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
75 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
76 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
77 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
78 |
PHYSFS_uint8 year; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
79 |
PHYSFS_uint8 month; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
80 |
PHYSFS_uint8 day; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
81 |
PHYSFS_uint8 hour; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
82 |
PHYSFS_uint8 minute; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
83 |
PHYSFS_uint8 second; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
84 |
PHYSFS_sint8 offset; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
85 |
} ISO9660FileTimestamp; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
86 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
87 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
88 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
89 |
unsigned existence:1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
90 |
unsigned directory:1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
91 |
unsigned associated_file:1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
92 |
unsigned record:1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
93 |
unsigned protection:1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
94 |
unsigned reserved:2; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
95 |
unsigned multiextent:1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
96 |
} ISO9660FileFlags; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
97 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
98 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
99 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
100 |
PHYSFS_uint8 length; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
101 |
PHYSFS_uint8 attribute_length; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
102 |
ISOBB32bit(extent_location) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
103 |
ISOBB32bit(data_length) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
104 |
ISO9660FileTimestamp timestamp; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
105 |
ISO9660FileFlags file_flags; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
106 |
PHYSFS_uint8 file_unit_size; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
107 |
PHYSFS_uint8 gap_size; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
108 |
ISOBB16bit(vol_seq_no) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
109 |
PHYSFS_uint8 len_fi; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
110 |
char unused; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
111 |
} ISO9660RootDirectoryRecord; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
112 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
113 |
/* this structure is combined for all Volume descriptor types */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
114 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
115 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
116 |
PHYSFS_uint8 type; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
117 |
char identifier[5]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
118 |
PHYSFS_uint8 version; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
119 |
PHYSFS_uint8 flags; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
120 |
char system_identifier[32]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
121 |
char volume_identifier[32]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
122 |
char unused2[8]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
123 |
ISOBB32bit(space_size) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
124 |
PHYSFS_uint8 escape_sequences[32]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
125 |
ISOBB16bit(vol_set_size) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
126 |
ISOBB16bit(vol_seq_no) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
127 |
ISOBB16bit(block_size) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
128 |
ISOBB32bit(path_table_size) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
129 |
/* PHYSFS_uint32 path_table_start_lsb; // why didn't they use both byte type? |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
130 |
PHYSFS_uint32 opt_path_table_start_lsb; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
131 |
PHYSFS_uint32 path_table_start_msb; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
132 |
PHYSFS_uint32 opt_path_table_start_msb;*/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
133 |
#if PHYSFS_BYTEORDER == PHYSFS_LIL_ENDIAN |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
134 |
PHYSFS_uint32 path_table_start; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
135 |
PHYSFS_uint32 opt_path_table_start; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
136 |
PHYSFS_uint32 unused6; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
137 |
PHYSFS_uint32 unused7; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
138 |
#else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
139 |
PHYSFS_uint32 unused6; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
140 |
PHYSFS_uint32 unused7; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
141 |
PHYSFS_uint32 path_table_start; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
142 |
PHYSFS_uint32 opt_path_table_start; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
143 |
#endif |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
144 |
ISO9660RootDirectoryRecord rootdirectory; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
145 |
char set_identifier[128]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
146 |
char publisher_identifier[128]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
147 |
char preparer_identifer[128]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
148 |
char application_identifier[128]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
149 |
char copyright_file_identifier[37]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
150 |
char abstract_file_identifier[37]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
151 |
char bibliographic_file_identifier[37]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
152 |
ISO9660VolumeTimestamp creation_timestamp; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
153 |
ISO9660VolumeTimestamp modification_timestamp; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
154 |
ISO9660VolumeTimestamp expiration_timestamp; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
155 |
ISO9660VolumeTimestamp effective_timestamp; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
156 |
PHYSFS_uint8 file_structure_version; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
157 |
char unused4; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
158 |
char application_use[512]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
159 |
char unused5[653]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
160 |
} ISO9660VolumeDescriptor; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
161 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
162 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
163 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
164 |
PHYSFS_uint8 recordlen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
165 |
PHYSFS_uint8 extattributelen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
166 |
ISOBB32bit(extentpos) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
167 |
ISOBB32bit(datalen) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
168 |
ISO9660FileTimestamp recordtime; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
169 |
ISO9660FileFlags flags; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
170 |
PHYSFS_uint8 file_unit_size; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
171 |
PHYSFS_uint8 interleave_gap; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
172 |
ISOBB16bit(volseqno) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
173 |
PHYSFS_uint8 filenamelen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
174 |
char filename[222]; /* This is not exact, but makes reading easier */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
175 |
} ISO9660FileDescriptor; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
176 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
177 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
178 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
179 |
ISOBB16bit(owner) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
180 |
ISOBB16bit(group) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
181 |
PHYSFS_uint16 flags; /* not implemented*/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
182 |
ISO9660VolumeTimestamp create_time; /* yes, not file timestamp */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
183 |
ISO9660VolumeTimestamp mod_time; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
184 |
ISO9660VolumeTimestamp expire_time; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
185 |
ISO9660VolumeTimestamp effective_time; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
186 |
PHYSFS_uint8 record_format; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
187 |
PHYSFS_uint8 record_attributes; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
188 |
ISOBB16bit(record_len) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
189 |
char system_identifier[32]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
190 |
char system_use[64]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
191 |
PHYSFS_uint8 version; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
192 |
ISOBB16bit(escape_len) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
193 |
char reserved[64]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
194 |
/** further fields not implemented */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
195 |
} ISO9660ExtAttributeRec; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
196 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
197 |
#pragma pack(pop) /* restore original alignment from stack */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
198 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
199 |
typedef struct |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
200 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
201 |
PHYSFS_Io *io; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
202 |
PHYSFS_uint32 rootdirstart; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
203 |
PHYSFS_uint32 rootdirsize; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
204 |
PHYSFS_uint64 currpos; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
205 |
int isjoliet; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
206 |
char *path; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
207 |
void *mutex; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
208 |
} ISO9660Handle; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
209 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
210 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
211 |
typedef struct __ISO9660FileHandle |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
212 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
213 |
PHYSFS_sint64 filesize; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
214 |
PHYSFS_uint64 currpos; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
215 |
PHYSFS_uint64 startblock; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
216 |
ISO9660Handle *isohandle; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
217 |
PHYSFS_uint32 (*read) (struct __ISO9660FileHandle *filehandle, void *buffer, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
218 |
PHYSFS_uint64 len); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
219 |
int (*seek)(struct __ISO9660FileHandle *filehandle, PHYSFS_sint64 offset); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
220 |
void (*close)(struct __ISO9660FileHandle *filehandle); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
221 |
/* !!! FIXME: anonymouse union is going to cause problems. */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
222 |
union |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
223 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
224 |
/* !!! FIXME: just use a memory PHYSFS_Io here, unify all this code. */ |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
225 |
char *cacheddata; /* data of file when cached */ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
226 |
PHYSFS_Io *io; /* handle to separate opened file */ |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
227 |
}; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
228 |
} ISO9660FileHandle; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
229 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
230 |
/******************************************************************************* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
231 |
* Time conversion functions |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
232 |
******************************************************************************/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
233 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
234 |
static PHYSFS_sint64 iso_mktime(ISO9660FileTimestamp *timestamp) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
235 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
236 |
struct tm tm; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
237 |
tm.tm_year = timestamp->year; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
238 |
tm.tm_mon = timestamp->month - 1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
239 |
tm.tm_mday = timestamp->day; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
240 |
tm.tm_hour = timestamp->hour; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
241 |
tm.tm_min = timestamp->minute; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
242 |
tm.tm_sec = timestamp->second; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
243 |
/* Ignore GMT offset for now... */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
244 |
return mktime(&tm); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
245 |
} /* iso_mktime */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
246 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
247 |
static int iso_atoi2(char *text) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
248 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
249 |
return ((text[0] - 40) * 10) + (text[1] - 40); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
250 |
} /* iso_atoi2 */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
251 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
252 |
static int iso_atoi4(char *text) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
253 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
254 |
return ((text[0] - 40) * 1000) + ((text[1] - 40) * 100) + |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
255 |
((text[2] - 40) * 10) + (text[3] - 40); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
256 |
} /* iso_atoi4 */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
257 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
258 |
static PHYSFS_sint64 iso_volume_mktime(ISO9660VolumeTimestamp *timestamp) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
259 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
260 |
struct tm tm; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
261 |
tm.tm_year = iso_atoi4(timestamp->year); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
262 |
tm.tm_mon = iso_atoi2(timestamp->month) - 1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
263 |
tm.tm_mday = iso_atoi2(timestamp->day); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
264 |
tm.tm_hour = iso_atoi2(timestamp->hour); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
265 |
tm.tm_min = iso_atoi2(timestamp->minute); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
266 |
tm.tm_sec = iso_atoi2(timestamp->second); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
267 |
/* this allows values outside the range of a unix timestamp... sanitize them */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
268 |
PHYSFS_sint64 value = mktime(&tm); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
269 |
return value == -1 ? 0 : value; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
270 |
} /* iso_volume_mktime */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
271 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
272 |
/******************************************************************************* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
273 |
* Filename extraction |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
274 |
******************************************************************************/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
275 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
276 |
static int iso_extractfilenameISO(ISO9660FileDescriptor *descriptor, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
277 |
char *filename, int *version) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
278 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
279 |
*filename = '\0'; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
280 |
if (descriptor->flags.directory) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
281 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
282 |
strncpy(filename, descriptor->filename, descriptor->filenamelen); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
283 |
filename[descriptor->filenamelen] = '\0'; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
284 |
*version = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
285 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
286 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
287 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
288 |
/* find last SEPARATOR2 */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
289 |
int pos = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
290 |
int lastfound = -1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
291 |
for(;pos < descriptor->filenamelen; pos++) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
292 |
if (descriptor->filename[pos] == ';') |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
293 |
lastfound = pos; |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
294 |
BAIL_IF_MACRO(lastfound < 1, PHYSFS_ERR_NO_SUCH_PATH /* !!! FIXME: PHYSFS_ERR_BAD_FILENAME */, -1); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
295 |
BAIL_IF_MACRO(lastfound == (descriptor->filenamelen -1), PHYSFS_ERR_NO_SUCH_PATH /* !!! PHYSFS_ERR_BAD_FILENAME */, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
296 |
strncpy(filename, descriptor->filename, lastfound); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
297 |
if (filename[lastfound - 1] == '.') |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
298 |
filename[lastfound - 1] = '\0'; /* consume trailing ., as done in all implementations */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
299 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
300 |
filename[lastfound] = '\0'; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
301 |
*version = atoi(descriptor->filename + lastfound); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
302 |
} /* else */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
303 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
304 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
305 |
} /* iso_extractfilenameISO */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
306 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
307 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
308 |
static int iso_extractfilenameUCS2(ISO9660FileDescriptor *descriptor, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
309 |
char *filename, int *version) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
310 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
311 |
PHYSFS_uint16 tmp[128]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
312 |
PHYSFS_uint16 *src; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
313 |
int len; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
314 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
315 |
*filename = '\0'; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
316 |
*version = 1; /* Joliet does not have versions.. at least not on my images */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
317 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
318 |
src = (PHYSFS_uint16*) descriptor->filename; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
319 |
len = descriptor->filenamelen / 2; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
320 |
tmp[len] = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
321 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
322 |
while(len--) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
323 |
tmp[len] = PHYSFS_swapUBE16(src[len]); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
324 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
325 |
PHYSFS_utf8FromUcs2(tmp, filename, 255); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
326 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
327 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
328 |
} /* iso_extractfilenameUCS2 */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
329 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
330 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
331 |
static int iso_extractfilename(ISO9660Handle *handle, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
332 |
ISO9660FileDescriptor *descriptor, char *filename,int *version) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
333 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
334 |
if (handle->isjoliet) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
335 |
return iso_extractfilenameUCS2(descriptor, filename, version); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
336 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
337 |
return iso_extractfilenameISO(descriptor, filename, version); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
338 |
} /* iso_extractfilename */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
339 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
340 |
/******************************************************************************* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
341 |
* Basic image read functions |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
342 |
******************************************************************************/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
343 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
344 |
static int iso_readimage(ISO9660Handle *handle, PHYSFS_uint64 where, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
345 |
void *buffer, PHYSFS_uint64 len) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
346 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
347 |
BAIL_IF_MACRO(!__PHYSFS_platformGrabMutex(handle->mutex), ERRPASS, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
348 |
int rc = -1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
349 |
if (where != handle->currpos) |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
350 |
GOTO_IF_MACRO(!handle->io->seek(handle->io,where), ERRPASS, unlockme); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
351 |
rc = handle->io->read(handle->io, buffer, len); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
352 |
if (rc == -1) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
353 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
354 |
handle->currpos = (PHYSFS_uint64) -1; |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
355 |
goto unlockme; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
356 |
} /* if */ |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
357 |
handle->currpos += rc; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
358 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
359 |
unlockme: |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
360 |
__PHYSFS_platformReleaseMutex(handle->mutex); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
361 |
return rc; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
362 |
} /* iso_readimage */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
363 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
364 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
365 |
static PHYSFS_sint64 iso_readfiledescriptor(ISO9660Handle *handle, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
366 |
PHYSFS_uint64 where, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
367 |
ISO9660FileDescriptor *descriptor) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
368 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
369 |
PHYSFS_sint64 rc = iso_readimage(handle, where, descriptor, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
370 |
sizeof (descriptor->recordlen)); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
371 |
BAIL_IF_MACRO(rc == -1, ERRPASS, -1); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
372 |
BAIL_IF_MACRO(rc != 1, PHYSFS_ERR_CORRUPT, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
373 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
374 |
if (descriptor->recordlen == 0) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
375 |
return 0; /* fill bytes at the end of a sector */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
376 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
377 |
rc = iso_readimage(handle, where + 1, &descriptor->extattributelen, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
378 |
descriptor->recordlen - sizeof(descriptor->recordlen)); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
379 |
BAIL_IF_MACRO(rc == -1, ERRPASS, -1); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
380 |
BAIL_IF_MACRO(rc != 1, PHYSFS_ERR_CORRUPT, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
381 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
382 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
383 |
} /* iso_readfiledescriptor */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
384 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
385 |
static void iso_extractsubpath(char *path, char **subpath) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
386 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
387 |
*subpath = strchr(path,'/'); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
388 |
if (*subpath != 0) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
389 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
390 |
**subpath = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
391 |
*subpath +=1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
392 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
393 |
} /* iso_extractsubpath */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
394 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
395 |
/* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
396 |
* Don't use path tables, they are not necessarily faster, but more complicated |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
397 |
* to implement as they store only directories and not files, so searching for |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
398 |
* a file needs to branch to the directory extent sooner or later. |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
399 |
*/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
400 |
static int iso_find_dir_entry(ISO9660Handle *handle,const char *path, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
401 |
ISO9660FileDescriptor *descriptor, int *exists) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
402 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
403 |
char *subpath = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
404 |
PHYSFS_uint64 readpos, end_of_dir; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
405 |
char filename[255]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
406 |
char pathcopy[256]; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
407 |
char *mypath; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
408 |
int version = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
409 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
410 |
strcpy(pathcopy, path); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
411 |
mypath = pathcopy; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
412 |
*exists = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
413 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
414 |
readpos = handle->rootdirstart; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
415 |
end_of_dir = handle->rootdirstart + handle->rootdirsize; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
416 |
iso_extractsubpath(mypath, &subpath); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
417 |
while (1) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
418 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
419 |
BAIL_IF_MACRO(iso_readfiledescriptor(handle, readpos, descriptor), ERRPASS, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
420 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
421 |
/* recordlen = 0 -> no more entries or fill entry */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
422 |
if (!descriptor->recordlen) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
423 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
424 |
/* if we are in the last sector of the directory & it's 0 -> end */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
425 |
if ((end_of_dir - 2048) <= (readpos -1)) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
426 |
break; /* finished */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
427 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
428 |
/* else skip to the next sector & continue; */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
429 |
readpos = (((readpos - 1) / 2048) + 1) * 2048; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
430 |
continue; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
431 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
432 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
433 |
readpos += descriptor->recordlen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
434 |
if (descriptor->filenamelen == 1 && (descriptor->filename[0] == 0 |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
435 |
|| descriptor->filename[0] == 1)) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
436 |
continue; /* special ones, ignore */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
437 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
438 |
BAIL_IF_MACRO( |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
439 |
iso_extractfilename(handle, descriptor, filename, &version), |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
440 |
ERRPASS, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
441 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
442 |
if (strcmp(filename, mypath) == 0) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
443 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
444 |
if ( (subpath == 0) || (subpath[0] == 0) ) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
445 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
446 |
*exists = 1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
447 |
return 0; /* no subpaths left and we found the entry */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
448 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
449 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
450 |
if (descriptor->flags.directory) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
451 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
452 |
/* shorten the path to the subpath */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
453 |
mypath = subpath; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
454 |
iso_extractsubpath(mypath, &subpath); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
455 |
/* gosub to the new directory extent */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
456 |
readpos = descriptor->extentpos * 2048; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
457 |
end_of_dir = readpos + descriptor->datalen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
458 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
459 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
460 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
461 |
/* we're at a file but have a remaining subpath -> no match */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
462 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
463 |
} /* else */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
464 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
465 |
} /* while */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
466 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
467 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
468 |
} /* iso_find_dir_entry */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
469 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
470 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
471 |
static int iso_read_ext_attributes(ISO9660Handle *handle, int block, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
472 |
ISO9660ExtAttributeRec *attributes) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
473 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
474 |
return iso_readimage(handle, block * 2048, attributes, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
475 |
sizeof(ISO9660ExtAttributeRec)); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
476 |
} /* iso_read_ext_attributes */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
477 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
478 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
479 |
static int ISO9660_flush(PHYSFS_Io *io) { return 1; /* no write support. */ } |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
480 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
481 |
static PHYSFS_Io *ISO9660_duplicate(PHYSFS_Io *_io) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
482 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
483 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, NULL); /* !!! FIXME: write me. */ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
484 |
} /* ISO9660_duplicate */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
485 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
486 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
487 |
static void ISO9660_destroy(PHYSFS_Io *io) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
488 |
{ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
489 |
ISO9660FileHandle *fhandle = (ISO9660FileHandle*) io->opaque; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
490 |
fhandle->close(fhandle); |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
491 |
allocator.Free(io); |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
492 |
} /* ISO9660_destroy */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
493 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
494 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
495 |
static PHYSFS_sint64 ISO9660_read(PHYSFS_Io *io, void *buf, PHYSFS_uint64 len) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
496 |
{ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
497 |
ISO9660FileHandle *fhandle = (ISO9660FileHandle*) io->opaque; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
498 |
return fhandle->read(fhandle, buf, len); |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
499 |
} /* ISO9660_read */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
500 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
501 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
502 |
static PHYSFS_sint64 ISO9660_write(PHYSFS_Io *io, const void *b, PHYSFS_uint64 l) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
503 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
504 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, -1); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
505 |
} /* ISO9660_write */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
506 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
507 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
508 |
static PHYSFS_sint64 ISO9660_tell(PHYSFS_Io *io) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
509 |
{ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
510 |
return ((ISO9660FileHandle*) io->opaque)->currpos; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
511 |
} /* ISO9660_tell */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
512 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
513 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
514 |
static int ISO9660_seek(PHYSFS_Io *io, PHYSFS_uint64 offset) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
515 |
{ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
516 |
ISO9660FileHandle *fhandle = (ISO9660FileHandle*) io->opaque; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
517 |
return fhandle->seek(fhandle, offset); |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
518 |
} /* ISO9660_seek */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
519 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
520 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
521 |
static PHYSFS_sint64 ISO9660_length(PHYSFS_Io *io) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
522 |
{ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
523 |
return ((ISO9660FileHandle*) io->opaque)->filesize; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
524 |
} /* ISO9660_length */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
525 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
526 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
527 |
static const PHYSFS_Io ISO9660_Io = |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
528 |
{ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
529 |
ISO9660_read, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
530 |
ISO9660_write, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
531 |
ISO9660_seek, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
532 |
ISO9660_tell, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
533 |
ISO9660_length, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
534 |
ISO9660_duplicate, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
535 |
ISO9660_flush, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
536 |
ISO9660_destroy, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
537 |
NULL |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
538 |
}; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
539 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
540 |
|
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
541 |
/******************************************************************************* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
542 |
* Archive management functions |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
543 |
******************************************************************************/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
544 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
545 |
static void *ISO9660_openArchive(PHYSFS_Io *io, const char *filename, int forWriting) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
546 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
547 |
char magicnumber[6]; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
548 |
ISO9660Handle *handle; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
549 |
int founddescriptor = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
550 |
int foundjoliet = 0; |
1113
2136d64bd1ad
Removed PHYSFS_Archiver's isArchive() method.
Ryan C. Gordon <icculus@icculus.org>
parents:
1111
diff
changeset
|
551 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
552 |
assert(io != NULL); /* shouldn't ever happen. */ |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
553 |
|
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
554 |
BAIL_IF_MACRO(forWriting, PHYSFS_ERR_READ_ONLY, NULL); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
555 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
556 |
/* Skip system area to magic number in Volume descriptor */ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
557 |
BAIL_IF_MACRO(!io->seek(io, 32769), ERRPASS, NULL); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
558 |
BAIL_IF_MACRO(!io->read(io, magicnumber, 5) != 5, ERRPASS, NULL); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
559 |
if (memcmp(magicnumber, "CD001", 6) != 0) |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
560 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, NULL); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
561 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
562 |
handle = allocator.Malloc(sizeof(ISO9660Handle)); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
563 |
GOTO_IF_MACRO(!handle, PHYSFS_ERR_OUT_OF_MEMORY, errorcleanup); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
564 |
handle->path = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
565 |
handle->mutex= 0; |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
566 |
handle->io = NULL; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
567 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
568 |
handle->path = allocator.Malloc(strlen(filename) + 1); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
569 |
GOTO_IF_MACRO(!handle->path, PHYSFS_ERR_OUT_OF_MEMORY, errorcleanup); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
570 |
strcpy(handle->path, filename); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
571 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
572 |
handle->mutex = __PHYSFS_platformCreateMutex(); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
573 |
GOTO_IF_MACRO(!handle->mutex, ERRPASS, errorcleanup); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
574 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
575 |
handle->io = io; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
576 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
577 |
/* seek Primary Volume Descriptor */ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
578 |
GOTO_IF_MACRO(!io->seek(io, 32768), PHYSFS_ERR_IO, errorcleanup); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
579 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
580 |
while (1) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
581 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
582 |
ISO9660VolumeDescriptor descriptor; |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
583 |
GOTO_IF_MACRO(io->read(io, &descriptor, sizeof(ISO9660VolumeDescriptor)) != sizeof(ISO9660VolumeDescriptor), PHYSFS_ERR_IO, errorcleanup); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
584 |
GOTO_IF_MACRO(strncmp(descriptor.identifier, "CD001", 5) != 0, PHYSFS_ERR_UNSUPPORTED, errorcleanup); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
585 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
586 |
if (descriptor.type == 255) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
587 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
588 |
/* type 255 terminates the volume descriptor list */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
589 |
if (founddescriptor) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
590 |
return handle; /* ok, we've found one volume descriptor */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
591 |
else |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
592 |
GOTO_MACRO(PHYSFS_ERR_CORRUPT, errorcleanup); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
593 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
594 |
if (descriptor.type == 1 && !founddescriptor) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
595 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
596 |
handle->currpos = io->tell(io); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
597 |
handle->rootdirstart = |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
598 |
descriptor.rootdirectory.extent_location * 2048; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
599 |
handle->rootdirsize = |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
600 |
descriptor.rootdirectory.data_length; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
601 |
handle->isjoliet = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
602 |
founddescriptor = 1; /* continue search for joliet */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
603 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
604 |
if (descriptor.type == 2 && !foundjoliet) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
605 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
606 |
/* check if is joliet */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
607 |
PHYSFS_uint8 *s = descriptor.escape_sequences; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
608 |
int joliet = !(descriptor.flags & 1) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
609 |
&& (s[0] == 0x25) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
610 |
&& (s[1] == 0x2F) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
611 |
&& ((s[2] == 0x40) || (s[2] == 0x43) || (s[2] == 0x45)); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
612 |
if (!joliet) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
613 |
continue; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
614 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
615 |
handle->currpos = io->tell(io); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
616 |
handle->rootdirstart = |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
617 |
descriptor.rootdirectory.extent_location * 2048; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
618 |
handle->rootdirsize = |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
619 |
descriptor.rootdirectory.data_length; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
620 |
handle->isjoliet = 1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
621 |
founddescriptor = 1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
622 |
foundjoliet = 1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
623 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
624 |
} /* while */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
625 |
|
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
626 |
GOTO_MACRO(PHYSFS_ERR_CORRUPT, errorcleanup); /* not found. */ |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
627 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
628 |
errorcleanup: |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
629 |
if (handle) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
630 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
631 |
if (handle->path) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
632 |
allocator.Free(handle->path); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
633 |
if (handle->mutex) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
634 |
__PHYSFS_platformDestroyMutex(handle->mutex); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
635 |
allocator.Free(handle); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
636 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
637 |
return NULL; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
638 |
} /* ISO9660_openArchive */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
639 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
640 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
641 |
static void ISO9660_dirClose(dvoid *opaque) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
642 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
643 |
ISO9660Handle *handle = (ISO9660Handle*) opaque; |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
644 |
handle->io->destroy(handle->io); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
645 |
__PHYSFS_platformDestroyMutex(handle->mutex); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
646 |
allocator.Free(handle->path); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
647 |
allocator.Free(handle); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
648 |
} /* ISO9660_dirClose */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
649 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
650 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
651 |
/******************************************************************************* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
652 |
* Read functions |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
653 |
******************************************************************************/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
654 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
655 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
656 |
static PHYSFS_uint32 iso_file_read_mem(ISO9660FileHandle *filehandle, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
657 |
void *buffer, PHYSFS_uint64 len) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
658 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
659 |
/* check remaining bytes & max obj which can be fetched */ |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
660 |
const PHYSFS_sint64 bytesleft = filehandle->filesize - filehandle->currpos; |
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
661 |
if (bytesleft < len) |
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
662 |
len = bytesleft; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
663 |
|
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
664 |
if (len == 0) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
665 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
666 |
|
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
667 |
memcpy(buffer, filehandle->cacheddata + filehandle->currpos, (size_t) len); |
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
668 |
|
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
669 |
filehandle->currpos += len; |
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
670 |
return (PHYSFS_uint32) len; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
671 |
} /* iso_file_read_mem */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
672 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
673 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
674 |
static int iso_file_seek_mem(ISO9660FileHandle *fhandle, PHYSFS_sint64 offset) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
675 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
676 |
BAIL_IF_MACRO(offset < 0, PHYSFS_ERR_INVALID_ARGUMENT, 0); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
677 |
BAIL_IF_MACRO(offset >= fhandle->filesize, PHYSFS_ERR_PAST_EOF, 0); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
678 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
679 |
fhandle->currpos = offset; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
680 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
681 |
} /* iso_file_seek_mem */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
682 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
683 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
684 |
static void iso_file_close_mem(ISO9660FileHandle *fhandle) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
685 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
686 |
allocator.Free(fhandle->cacheddata); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
687 |
allocator.Free(fhandle); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
688 |
} /* iso_file_close_mem */ |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
689 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
690 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
691 |
static PHYSFS_uint32 iso_file_read_foreign(ISO9660FileHandle *filehandle, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
692 |
void *buffer, PHYSFS_uint64 len) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
693 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
694 |
/* check remaining bytes & max obj which can be fetched */ |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
695 |
const PHYSFS_sint64 bytesleft = filehandle->filesize - filehandle->currpos; |
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
696 |
if (bytesleft < len) |
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
697 |
len = bytesleft; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
698 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
699 |
const PHYSFS_sint64 rc = filehandle->io->read(filehandle->io, buffer, len); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
700 |
BAIL_IF_MACRO(rc == -1, ERRPASS, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
701 |
|
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
702 |
filehandle->currpos += rc; /* i trust my internal book keeping */ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
703 |
BAIL_IF_MACRO(rc < len, PHYSFS_ERR_CORRUPT, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
704 |
return rc; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
705 |
} /* iso_file_read_foreign */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
706 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
707 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
708 |
static int iso_file_seek_foreign(ISO9660FileHandle *fhandle, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
709 |
PHYSFS_sint64 offset) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
710 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
711 |
BAIL_IF_MACRO(offset < 0, PHYSFS_ERR_INVALID_ARGUMENT, 0); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
712 |
BAIL_IF_MACRO(offset >= fhandle->filesize, PHYSFS_ERR_PAST_EOF, 0); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
713 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
714 |
PHYSFS_sint64 pos = fhandle->startblock * 2048 + offset; |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
715 |
BAIL_IF_MACRO(!fhandle->io->seek(fhandle->io, pos), ERRPASS, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
716 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
717 |
fhandle->currpos = offset; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
718 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
719 |
} /* iso_file_seek_foreign */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
720 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
721 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
722 |
static void iso_file_close_foreign(ISO9660FileHandle *fhandle) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
723 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
724 |
fhandle->io->destroy(fhandle->io); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
725 |
allocator.Free(fhandle); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
726 |
} /* iso_file_close_foreign */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
727 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
728 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
729 |
static int iso_file_open_mem(ISO9660Handle *handle, ISO9660FileHandle *fhandle) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
730 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
731 |
fhandle->cacheddata = allocator.Malloc(fhandle->filesize); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
732 |
BAIL_IF_MACRO(!fhandle->cacheddata, PHYSFS_ERR_OUT_OF_MEMORY, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
733 |
int rc = iso_readimage(handle, fhandle->startblock * 2048, |
1098
4e86cec1143f
Moved all the file i/o from stdio-style to POSIX-style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1097
diff
changeset
|
734 |
fhandle->cacheddata, fhandle->filesize); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
735 |
GOTO_IF_MACRO(rc < 0, ERRPASS, freemem); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
736 |
GOTO_IF_MACRO(rc == 0, PHYSFS_ERR_CORRUPT, freemem); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
737 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
738 |
fhandle->read = iso_file_read_mem; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
739 |
fhandle->seek = iso_file_seek_mem; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
740 |
fhandle->close = iso_file_close_mem; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
741 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
742 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
743 |
freemem: |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
744 |
allocator.Free(fhandle->cacheddata); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
745 |
return -1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
746 |
} /* iso_file_open_mem */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
747 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
748 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
749 |
static int iso_file_open_foreign(ISO9660Handle *handle, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
750 |
ISO9660FileHandle *fhandle) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
751 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
752 |
int rc; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
753 |
fhandle->io = __PHYSFS_createNativeIo(handle->path, 'r'); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
754 |
BAIL_IF_MACRO(!fhandle->io, ERRPASS, -1); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
755 |
rc = fhandle->io->seek(fhandle->io, fhandle->startblock * 2048); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
756 |
GOTO_IF_MACRO(!rc, ERRPASS, closefile); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
757 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
758 |
fhandle->read = iso_file_read_foreign; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
759 |
fhandle->seek = iso_file_seek_foreign; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
760 |
fhandle->close = iso_file_close_foreign; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
761 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
762 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
763 |
closefile: |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
764 |
fhandle->io->destroy(fhandle->io); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
765 |
return -1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
766 |
} /* iso_file_open_foreign */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
767 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
768 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
769 |
static PHYSFS_Io *ISO9660_openRead(dvoid *opaque, const char *filename, int *exists) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
770 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
771 |
PHYSFS_Io *retval = NULL; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
772 |
ISO9660Handle *handle = (ISO9660Handle*) opaque; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
773 |
ISO9660FileHandle *fhandle; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
774 |
ISO9660FileDescriptor descriptor; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
775 |
int rc; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
776 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
777 |
fhandle = allocator.Malloc(sizeof(ISO9660FileHandle)); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
778 |
BAIL_IF_MACRO(fhandle == 0, PHYSFS_ERR_OUT_OF_MEMORY, NULL); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
779 |
fhandle->cacheddata = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
780 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
781 |
retval = allocator.Malloc(sizeof(PHYSFS_Io)); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
782 |
GOTO_IF_MACRO(retval == 0, PHYSFS_ERR_OUT_OF_MEMORY, errorhandling); |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
783 |
|
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
784 |
/* find file descriptor */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
785 |
rc = iso_find_dir_entry(handle, filename, &descriptor, exists); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
786 |
GOTO_IF_MACRO(rc, ERRPASS, errorhandling); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
787 |
GOTO_IF_MACRO(!*exists, PHYSFS_ERR_NO_SUCH_PATH, errorhandling); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
788 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
789 |
fhandle->startblock = descriptor.extentpos + descriptor.extattributelen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
790 |
fhandle->filesize = descriptor.datalen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
791 |
fhandle->currpos = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
792 |
fhandle->isohandle = handle; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
793 |
fhandle->cacheddata = NULL; |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
794 |
fhandle->io = NULL; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
795 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
796 |
if (descriptor.datalen <= ISO9660_FULLCACHEMAXSIZE) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
797 |
rc = iso_file_open_mem(handle, fhandle); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
798 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
799 |
rc = iso_file_open_foreign(handle, fhandle); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
800 |
GOTO_IF_MACRO(rc, ERRPASS, errorhandling); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
801 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
802 |
memcpy(retval, &ISO9660_Io, sizeof (PHYSFS_Io)); |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
803 |
retval->opaque = fhandle; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
804 |
return retval; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
805 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
806 |
errorhandling: |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
807 |
if (retval) allocator.Free(retval); |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
808 |
if (fhandle) allocator.Free(fhandle); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
809 |
return NULL; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
810 |
} /* ISO9660_openRead */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
811 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
812 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
813 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
814 |
/******************************************************************************* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
815 |
* Information gathering functions |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
816 |
******************************************************************************/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
817 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
818 |
static void ISO9660_enumerateFiles(dvoid *opaque, const char *dname, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
819 |
int omitSymLinks, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
820 |
PHYSFS_EnumFilesCallback cb, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
821 |
const char *origdir, void *callbackdata) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
822 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
823 |
ISO9660Handle *handle = (ISO9660Handle*) opaque; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
824 |
ISO9660FileDescriptor descriptor; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
825 |
PHYSFS_uint64 readpos; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
826 |
PHYSFS_uint64 end_of_dir; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
827 |
char filename[130]; /* ISO allows 31, Joliet 128 -> 128 + 2 eol bytes */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
828 |
int version = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
829 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
830 |
if (*dname == '\0') |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
831 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
832 |
readpos = handle->rootdirstart; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
833 |
end_of_dir = readpos + handle->rootdirsize; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
834 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
835 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
836 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
837 |
printf("pfad %s\n",dname); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
838 |
int exists = 0; |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
839 |
BAIL_IF_MACRO(iso_find_dir_entry(handle,dname, &descriptor, &exists), ERRPASS,); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
840 |
BAIL_IF_MACRO(!exists, ERRPASS, ); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
841 |
BAIL_IF_MACRO(!descriptor.flags.directory, ERRPASS,); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
842 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
843 |
readpos = descriptor.extentpos * 2048; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
844 |
end_of_dir = readpos + descriptor.datalen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
845 |
} /* else */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
846 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
847 |
while (1) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
848 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
849 |
BAIL_IF_MACRO(iso_readfiledescriptor(handle, readpos, &descriptor), ERRPASS, ); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
850 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
851 |
/* recordlen = 0 -> no more entries or fill entry */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
852 |
if (!descriptor.recordlen) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
853 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
854 |
/* if we are in the last sector of the directory & it's 0 -> end */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
855 |
if ((end_of_dir - 2048) <= (readpos -1)) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
856 |
break; /* finished */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
857 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
858 |
/* else skip to the next sector & continue; */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
859 |
readpos = (((readpos - 1) / 2048) + 1) * 2048; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
860 |
continue; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
861 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
862 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
863 |
readpos += descriptor.recordlen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
864 |
if (descriptor.filenamelen == 1 && (descriptor.filename[0] == 0 |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
865 |
|| descriptor.filename[0] == 1)) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
866 |
continue; /* special ones, ignore */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
867 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
868 |
strncpy(filename,descriptor.filename,descriptor.filenamelen); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
869 |
iso_extractfilename(handle, &descriptor, filename, &version); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
870 |
cb(callbackdata, origdir,filename); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
871 |
} /* while */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
872 |
} /* ISO9660_enumerateFiles */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
873 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
874 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
875 |
static int ISO9660_stat(dvoid *opaque, const char *name, int *exists, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
876 |
PHYSFS_Stat *stat) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
877 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
878 |
ISO9660Handle *handle = (ISO9660Handle*) opaque; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
879 |
ISO9660FileDescriptor descriptor; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
880 |
ISO9660ExtAttributeRec extattr; |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
881 |
BAIL_IF_MACRO(iso_find_dir_entry(handle, name, &descriptor, exists), ERRPASS, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
882 |
if (!*exists) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
883 |
return 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
884 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
885 |
stat->readonly = 1; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
886 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
887 |
/* try to get extended info */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
888 |
if (descriptor.extattributelen) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
889 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
890 |
BAIL_IF_MACRO(iso_read_ext_attributes(handle, |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
891 |
descriptor.extentpos, &extattr), ERRPASS, -1); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
892 |
stat->createtime = iso_volume_mktime(&extattr.create_time); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
893 |
stat->modtime = iso_volume_mktime(&extattr.mod_time); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
894 |
stat->accesstime = iso_volume_mktime(&extattr.mod_time); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
895 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
896 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
897 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
898 |
stat->createtime = iso_mktime(&descriptor.recordtime); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
899 |
stat->modtime = iso_mktime(&descriptor.recordtime); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
900 |
stat->accesstime = iso_mktime(&descriptor.recordtime); |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
901 |
} /* else */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
902 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
903 |
if (descriptor.flags.directory) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
904 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
905 |
stat->filesize = 0; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
906 |
stat->filetype = PHYSFS_FILETYPE_DIRECTORY; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
907 |
} /* if */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
908 |
else |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
909 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
910 |
stat->filesize = descriptor.datalen; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
911 |
stat->filetype = PHYSFS_FILETYPE_REGULAR; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
912 |
} /* else */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
913 |
|
1106
94c3669d0311
Fixed PHYSFS_stat()'s return value to match rest of PhysicsFS API.
Ryan C. Gordon <icculus@icculus.org>
parents:
1098
diff
changeset
|
914 |
return 1; |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
915 |
} /* ISO9660_stat */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
916 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
917 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
918 |
/******************************************************************************* |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
919 |
* Not supported functions |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
920 |
******************************************************************************/ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
921 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
922 |
static PHYSFS_Io *ISO9660_openWrite(dvoid *opaque, const char *name) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
923 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
924 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, NULL); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
925 |
} /* ISO9660_openWrite */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
926 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
927 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
928 |
static PHYSFS_Io *ISO9660_openAppend(dvoid *opaque, const char *name) |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
929 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
930 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, NULL); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
931 |
} /* ISO9660_openAppend */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
932 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
933 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
934 |
static int ISO9660_remove(dvoid *opaque, const char *name) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
935 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
936 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, 0); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
937 |
} /* ISO9660_remove */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
938 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
939 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
940 |
static int ISO9660_mkdir(dvoid *opaque, const char *name) |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
941 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1129
diff
changeset
|
942 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, 0); |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
943 |
} /* ISO9660_mkdir */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
944 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
945 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
946 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
947 |
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ISO9660 = |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
948 |
{ |
1065
eb39b3977c2d
Corrected file extension for ISO9660 archiver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
949 |
"ISO", |
eb39b3977c2d
Corrected file extension for ISO9660 archiver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
950 |
"ISO9660 image file", |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
951 |
"Christoph Nelles <evilazrael@evilazrael.de>", |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
952 |
"http://www.evilazrael.de", |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
953 |
}; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
954 |
|
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
955 |
const PHYSFS_Archiver __PHYSFS_Archiver_ISO9660 = |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
956 |
{ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
957 |
&__PHYSFS_ArchiveInfo_ISO9660, |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
958 |
ISO9660_openArchive, /* openArchive() method */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
959 |
ISO9660_enumerateFiles, /* enumerateFiles() method */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
960 |
ISO9660_openRead, /* openRead() method */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
961 |
ISO9660_openWrite, /* openWrite() method */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
962 |
ISO9660_openAppend, /* openAppend() method */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
963 |
ISO9660_remove, /* remove() method */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
964 |
ISO9660_mkdir, /* mkdir() method */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
965 |
ISO9660_dirClose, /* dirClose() method */ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1116
diff
changeset
|
966 |
ISO9660_stat /* stat() method */ |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
967 |
}; |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
968 |
|
1066
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1065
diff
changeset
|
969 |
#endif /* defined PHYSFS_SUPPORTS_ISO9660 */ |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1065
diff
changeset
|
970 |
|
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
971 |
/* end of archiver_iso9660.c ... */ |
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
972 |