forked from dr-m/cbmconvert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrite.c
398 lines (338 loc) · 10.3 KB
/
write.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/**
* @file write.c
* Writes files with converted names
* @author Marko Mäkelä (marko.makela at iki.fi)
*/
/*
** Copyright © 1993-1997,2001,2021,2022 Marko Mäkelä
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <string.h>
#include <errno.h>
#include "output.h"
/** Convert a PETSCII file name to a printable null-terminated ASCII string.
* @param name the PETSCII file name
* @param newname (output) the converted file name
* @return false on out of memory
*/
static bool
filename2char (const struct Filename* name, char** newname)
{
size_t i = sizeof(name->name);
char* c;
if (!newname)
return false;
/* free the old string */
if (*newname) free (*newname);
*newname = 0;
/* search for shifted spaces at the end */
while (--i && name->name[i] == 0xA0);
/* copy the PETSCII filename */
if (!(*newname = malloc (i + 2)))
return false;
memcpy (*newname, name->name, i + 1);
(*newname)[i + 1] = 0;
for (c = *newname; c <= *newname + i; c++) {
if (*c == '/') /* map slash */
*c = '.';
else if (*c >= 0x41 && *c <= 0x5A) /* convert lower case letters */
*c += 'a' - 0x41;
else if ((*c & 0x7f) < 32) /* convert control chars */
*c = '-';
else if ((*c & 0x7f) >= 0x41 && ((*c & 0x7f)) <= 0x5A)
/* convert upper case letters */
*c += 'A' - 0xC1;
else if (*c & 0x80) /* convert graphics characters */
*c = '+';
}
return true;
}
/** Determine whether a character is a wovel in English
* @param c the character
* @return true if c is a wovel
*/
static bool
isWovel (unsigned char c)
{
return !!memchr ("aeiou", c, 5);
}
/** A character that was removed to make a file name ISO 9660 compliant */
#define REMOVED '-'
/** Truncate the file name in-place to ISO9660 compliant format.
* @param name a null-terminated string that is at least 1 character long
* (excluding the terminating NUL character)
* @return the length of the truncated string,
* excluding the terminating NUL character
*/
static size_t
TruncateName (unsigned char* name)
{
unsigned char* c;
size_t len, efflen;
for (c = name; *c; c++) {
if (*c >= 'a' && *c <= 'z') /* Lower case chars are OK */
continue;
else if (*c >= '0' && *c <= '9')/* So are numbers */
continue;
else if (*c >= 'A' && *c <= 'Z')/* Convert characters to lower case */
*c -= (unsigned char) ('A' - 'a');
else
*c = '_'; /* Convert anything else to underscore */
}
efflen = len = (size_t) (c - name);
if (efflen > 8) {
/* Remove underscores from the end */
for (c = &name[len]; c > name; c--) {
if (*c == '_') {
*c = REMOVED;
if (--efflen <= 8) break;
}
}
}
if (efflen > 8) {
/* remove wovels from the end */
size_t i;
/* Search for the first non-wovel */
for (i = 0; i < len && isWovel (name[i]); i++);
if (i < len) {
for (c = &name[len]; c > &name[i]; c--)
if (isWovel (*c)) {
*c = REMOVED;
if (--efflen <= 8) break;
}
}
}
if (efflen > 8) {
/* remove letters from the end */
for (c = &name[len]; c > name; c--)
if (*c >= 'a' && *c <= 'z') {
*c = REMOVED;
if (--efflen <= 8) break;
}
}
if (efflen > 8) {
/* remove anything from the end */
for (c = &name[len]; c > name; c--)
if (*c && *c != REMOVED) {
*c = REMOVED;
if (--efflen <= 8) break;
}
}
{
/* remove removed characters */
unsigned char* t;
for (c = t = name; *c; c++)
if (*c != REMOVED)
*t++ = *c;
*t = 0;
}
return efflen;
}
/** Return a file name suffix corresponding to a Commodore file type
* @param filename the Commodore file name
* @return a corresponding file name suffix
*/
static const char*
filesuffix (const struct Filename* filename)
{
/** Suffix for relative files */
static char relsuffix[5];
switch (filename->type) {
case DEL:
return ".del";
case SEQ:
return ".seq";
case PRG:
return ".prg";
case USR:
return ".usr";
case REL:
sprintf (relsuffix, ".l%02X", filename->recordLength & 0xFF);
return relsuffix;
case CBM:
return ".cbm";
}
return "";
}
/** Write data to a file
* @param data the contents of the file
* @param length length of the file contents
* @param newname (output) the converted file name
* @param name native (PETSCII) name of the file
* @param log Call-back function for diagnostic output
* @return status of the operation
*/
static enum WrStatus
do_it (const byte_t* data,
size_t length,
char** newname,
const struct Filename* name,
log_t log)
{
FILE* f;
if (!(f = fopen (*newname, "wb"))) {
(*log) (Errors, name, "fopen: %s", strerror (errno));
return errno == ENOSPC ? WrNoSpace : WrFail;
}
if (length != fwrite (data, 1, length, f)) {
(*log) (Errors, name, "fwrite: %s", strerror (errno));
fclose (f);
return errno == ENOSPC ? WrNoSpace : WrFail;
}
fclose (f);
return WrOK;
}
/** Write a file in raw format
* @param name native (PETSCII) name of the file
* @param data the contents of the file
* @param length length of the file contents
* @param newname (output) the converted file name
* @param log Call-back function for diagnostic output
* @return status of the operation
*/
enum WrStatus
WriteNative (const struct Filename* name,
const byte_t* data,
size_t length,
char** newname,
log_t log)
{
struct stat statbuf;
char* filename;
int i;
if (!filename2char (name, newname))
return WrFail;
if (!(filename = malloc (strlen (*newname) + (4 + 5 + 1)))) {
free (filename);
return WrFail;
}
/* try the plain filename */
sprintf (filename, "%s%.4s", *newname, filesuffix (name));
if (stat (filename, &statbuf)) {
free (*newname);
*newname = filename;
return do_it (data, length, newname, name, log);
}
for (i = 0; i < 10000; i++) {
sprintf (filename, "%s~%d%.4s", *newname, i, filesuffix (name));
if (stat (filename, &statbuf)) { /* found an available file name */
free (*newname);
*newname = filename;
return do_it (data, length, newname, name, log);
}
}
free (filename);
(*log) (Errors, name, "out of file name space");
return WrFail;
}
/** Write a file in PC64 format (.P00, .S00 etc.)
* @param name native (PETSCII) name of the file
* @param data the contents of the file
* @param length length of the file contents
* @param newname (output) the converted file name
* @param log Call-back function for diagnostic output
* @return status of the operation
*/
enum WrStatus
WritePC64 (const struct Filename* name,
const byte_t* data,
size_t length,
char** newname,
log_t log)
{
char* filename,* c;
int i;
struct stat statbuf;
if (!filename2char (name, newname))
return WrFail;
if (!(filename = malloc (TruncateName ((unsigned char*)*newname) + 4 + 1)))
return WrFail;
i = sprintf (filename, "%s%.4s", *newname, filesuffix (name));
if (name->type == REL) /* Fix the suffix for relative files */
filename[i - 3] = 'r';
c = &filename[i - 2];
for (i = 0; i < 100; i++) {
sprintf (c, "%02d", i);
if (stat (filename, &statbuf)) { /* found an available file name */
FILE* f;
free (*newname);
*newname = filename;
if (!(f = fopen (*newname, "wb"))) {
(*log) (Errors, name, "fopen: %s", strerror (errno));
return errno == ENOSPC ? WrNoSpace : WrFail;
}
if (1 != fwrite ("C64File", 8, 1, f) ||
1 != fwrite (name->name, 16, 1, f) ||
EOF == fputc (0, f) ||
EOF == fputc (name->recordLength, f) ||
length != fwrite (data, 1, length, f)) {
(*log) (Errors, name, "fwrite: %s", strerror (errno));
fclose (f);
return errno == ENOSPC ? WrNoSpace : WrFail;
}
fclose (f);
return WrOK;
}
}
free (filename);
(*log) (Errors, name, "out of file name space");
return WrFail;
}
/** Write a file in raw format, using ISO 9660 compliant filenames
* @param name native (PETSCII) name of the file
* @param data the contents of the file
* @param length length of the file contents
* @param newname (output) the converted file name
* @param log Call-back function for diagnostic output
* @return status of the operation
*/
enum WrStatus
Write9660 (const struct Filename* name,
const byte_t* data,
size_t length,
char** newname,
log_t log)
{
char* filename;
int i;
struct stat statbuf;
if (!filename2char (name, newname))
return WrFail;
if (!(filename = malloc (TruncateName ((unsigned char*)*newname) + 4 + 1)))
return WrFail;
/* try the basic file name */
sprintf (filename, "%s%.4s", *newname, filesuffix (name));
if (stat (filename, &statbuf)) {
free (*newname);
*newname = filename;
return do_it (data, length, newname, name, log);
}
/* try with .000-style file names */
for (i = 0; i < 1000; i++) {
sprintf (filename, "%s.%03u", *newname, i);
if (stat (filename, &statbuf)) { /* found an available file name */
free (*newname);
*newname = filename;
return do_it (data, length, newname, name, log);
}
}
free (filename);
(*log) (Errors, name, "out of file name space");
return WrFail;
}