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
|
/* jpp.c --- The JACL Preprocessor
(C) 2001 Andreas Matthias
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 1, 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 "glk/jacl/jacl.h"
#include "glk/jacl/language.h"
#include "glk/jacl/types.h"
#include "glk/jacl/prototypes.h"
#include "glk/jacl/version.h"
#include "common/file.h"
namespace Glk {
namespace JACL {
extern char text_buffer[];
extern char temp_buffer[];
extern const char *word[];
extern short int quoted[];
extern short int punctuated[];
extern int wp;
extern char user_id[];
extern char prefix[];
extern char game_path[];
extern char game_file[];
extern char processed_file[];
extern short int encrypted;
extern char include_directory[];
extern char temp_directory[];
extern char error_buffer[];
int lines_written;
Common::WriteStream *outputFile = nullptr;
Common::SeekableReadStream *inputFile = nullptr;
char *stripped_line;
/* INDICATES THAT THE CURRENT '.j2' FILE BEING WORKED
* WITH BEING PREPARED FOR RELEASE (DON'T INCLUDE DEBUG LIBARIES) */
short int release = FALSE;
/* INDICATES THAT THE CURRENT '.j2' FILE BEING WORKED
* SHOULD BE ENCRYPTED */
short int do_encrypt = TRUE;
/* INDICATES THAT THE CURRENT '.processed' FILE BRING WRITTEN SHOULD NOW
* HAVE EACH LINE ENCRYPTED AS THE FIRST NONE COMMENT LINE HAS BEEN HIT */
short int encrypting = FALSE;
int jpp() {
// TODO: Find out if this is actually used
#ifdef UNUSED
int game_version;
lines_written = 0;
/* CHECK IF GAME FILE IS ALREADY A PROCESSED FILE BY LOOKING FOR THE
* STRING "#encrypted" OR "#processed" WITHIN THE FIRST FIVE LINES OF
* THE GAME FILE IF SO, RETURN THE GAME FILE AS THE PROCESSED FILE */
inputFile = File::open(game_file);
if (inputFile) {
int index = 0;
char *result = NULL;
if (inputFile->read(text_buffer, 1024) != 1024) {
Common::sprintf_s(error_buffer, 1024, CANT_OPEN_SOURCE, game_file);
return (FALSE);
}
while (inputFile->pos() < inputFile->size() && index < 10) {
if (strstr(text_buffer, "#processed")) {
/* THE GAME FILE IS ALREADY A PROCESSED FILE, JUST USE IT
* DIRECTLY */
if (sscanf(text_buffer, "#processed:%d", &game_version)) {
if (INTERPRETER_VERSION < game_version) {
Common::sprintf_s(error_buffer, 1024, OLD_INTERPRETER, game_version);
return (FALSE);
}
}
Common::strcpy_s(processed_file, 256, game_file);
return (TRUE);
}
if (inputFile->read(text_buffer, 1024) != 1024)
break;
index++;
}
delete inputFile;
} else {
Common::sprintf_s(error_buffer, 1024, NOT_FOUND);
return (FALSE);
}
/* SAVE A TEMPORARY FILENAME INTO PROCESSED_FILE */
Common::sprintf_s(processed_file, "%s%s.j2", temp_directory, prefix);
/* ATTEMPT TO OPEN THE PROCESSED FILE IN THE TEMP DIRECTORY */
if ((outputFile = fopen(processed_file, "w")) == NULL) {
/* NO LUCK, TRY OPEN THE PROCESSED FILE IN THE CURRENT DIRECTORY */
Common::sprintf_s(processed_file, "%s.j2", prefix);
if ((outputFile = fopen(processed_file, "w")) == NULL) {
/* NO LUCK, CAN'T CONTINUE */
Common::sprintf_s(error_buffer, 1024, CANT_OPEN_PROCESSED, processed_file);
return (FALSE);
}
}
if (process_file(game_file, (const char *) NULL) == FALSE) {
return (FALSE);
}
fclose(outputFile);
#else
error("TODO");
#endif
/* ALL OKAY, RETURN TRUE */
return (TRUE);
}
int process_file(const char *sourceFile1, char *sourceFile2) {
char temp_buffer1[1025];
char temp_buffer2[1025];
Common::File *srcFile = nullptr;
char *includeFile = nullptr;
/* THIS FUNCTION WILL CREATE A PROCESSED FILE THAT HAS HAD ALL
* LEADING AND TRAILING WHITE SPACE REMOVED AND ALL INCLUDED
* FILES INSERTED */
srcFile = File::openForReading(sourceFile1);
if (!srcFile) {
if (sourceFile2 != nullptr) {
srcFile = File::openForReading(sourceFile2);
if (!srcFile) {
Common::sprintf_s(error_buffer, 1024, CANT_OPEN_OR, sourceFile1, sourceFile2);
return (FALSE);
}
} else {
Common::sprintf_s(error_buffer, 1024, CANT_OPEN_SOURCE, sourceFile1);
return (FALSE);
}
}
*text_buffer = 0;
if (srcFile->read(text_buffer, 1024) != 1024) {
Common::sprintf_s(error_buffer, 1024, READ_ERROR);
delete srcFile;
return (FALSE);
}
while (srcFile->pos() < srcFile->size() && *text_buffer != 0) {
if (!strncmp(text_buffer, "#include", 8) ||
(!strncmp(text_buffer, "#debug", 6) & !release)) {
includeFile = strrchr(text_buffer, '"');
if (includeFile != nullptr)
*includeFile = 0;
includeFile = strchr(text_buffer, '"');
if (includeFile != nullptr) {
Common::strcpy_s(temp_buffer1, game_path);
Common::strcat_s(temp_buffer1, includeFile + 1);
Common::strcpy_s(temp_buffer2, include_directory);
Common::strcat_s(temp_buffer2, includeFile + 1);
if (process_file(temp_buffer1, temp_buffer2) == FALSE) {
return (FALSE);
}
} else {
Common::sprintf_s(error_buffer, 1024, BAD_INCLUDE);
return (FALSE);
}
} else {
/* STRIP WHITESPACE FROM LINE BEFORE WRITING TO OUTPUTFILE. */
stripped_line = stripwhite(text_buffer);
if (!encrypting && *stripped_line != '#' && *stripped_line != '\0' && do_encrypt & release) {
/* START ENCRYPTING FROM THE FIRST NON-COMMENT LINE IN
* THE SOURCE FILE */
outputFile->writeString("#encrypted\n");
encrypting = TRUE;
}
/* ENCRYPT PROCESSED FILE IF REQUIRED */
if (encrypting) {
jacl_encrypt(stripped_line);
}
outputFile->writeString(stripped_line);
lines_written++;
if (lines_written == 1) {
Common::sprintf_s(temp_buffer, 1024, "#processed:%d\n", INTERPRETER_VERSION);
outputFile->writeString(temp_buffer);
}
}
*text_buffer = 0;
if (srcFile->read(text_buffer, 1024) != 1024)
// EOF HAS BEEN REACHED
break;
}
delete srcFile;
/* ALL OKAY, RETURN TRUE */
return (TRUE);
}
} // End of namespace JACL
} // End of namespace Glk
|