136 lines
3.1 KiB
C
136 lines
3.1 KiB
C
|
#include "picoc.h"
|
||
|
|
||
|
#ifdef UNIX_HOST
|
||
|
/* exit with a message */
|
||
|
void ProgramFail(struct ParseState *Parser, const char *Message, ...)
|
||
|
{
|
||
|
va_list Args;
|
||
|
|
||
|
if (Parser != NULL)
|
||
|
PlatformPrintf("%s:%d: ", Parser->FileName, Parser->Line);
|
||
|
|
||
|
va_start(Args, Message);
|
||
|
PlatformVPrintf(Message, Args);
|
||
|
PlatformPrintf("\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
/* exit lexing with a message */
|
||
|
void LexFail(struct LexState *Lexer, const char *Message, ...)
|
||
|
{
|
||
|
va_list Args;
|
||
|
|
||
|
PlatformPrintf("%s:%d: ", Lexer->FileName, Lexer->Line);
|
||
|
va_start(Args, Message);
|
||
|
PlatformVPrintf(Message, Args);
|
||
|
PlatformPrintf("\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
/* get a line of interactive input */
|
||
|
char *PlatformGetLine(char *Buf, int MaxLen)
|
||
|
{
|
||
|
return fgets(Buf, MaxLen, stdin);
|
||
|
}
|
||
|
|
||
|
/* write a character to the console */
|
||
|
void PlatformPutc(unsigned char OutCh)
|
||
|
{
|
||
|
putchar(OutCh);
|
||
|
}
|
||
|
|
||
|
/* read a file into memory */
|
||
|
char *PlatformReadFile(const char *FileName)
|
||
|
{
|
||
|
struct stat FileInfo;
|
||
|
char *ReadText;
|
||
|
FILE *InFile;
|
||
|
|
||
|
if (stat(FileName, &FileInfo))
|
||
|
ProgramFail(NULL, "can't read file %s\n", FileName);
|
||
|
|
||
|
ReadText = malloc(FileInfo.st_size + 1);
|
||
|
if (ReadText == NULL)
|
||
|
ProgramFail(NULL, "out of memory\n");
|
||
|
|
||
|
InFile = fopen(FileName, "r");
|
||
|
if (InFile == NULL)
|
||
|
ProgramFail(NULL, "can't read file %s\n", FileName);
|
||
|
|
||
|
if (fread(ReadText, 1, FileInfo.st_size, InFile) != FileInfo.st_size)
|
||
|
ProgramFail(NULL, "can't read file %s\n", FileName);
|
||
|
|
||
|
ReadText[FileInfo.st_size] = '\0';
|
||
|
fclose(InFile);
|
||
|
|
||
|
return ReadText;
|
||
|
}
|
||
|
|
||
|
/* read and scan a file for definitions */
|
||
|
void PlatformScanFile(const char *FileName)
|
||
|
{
|
||
|
char *SourceStr = PlatformReadFile(FileName);
|
||
|
Parse(FileName, SourceStr, strlen(SourceStr), TRUE);
|
||
|
free(SourceStr);
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#ifdef SURVEYOR_HOST
|
||
|
/* exit with a message */
|
||
|
void ProgramFail(struct ParseState *Parser, const char *Message, ...)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/* exit lexing with a message */
|
||
|
void LexFail(struct LexState *Lexer, const char *Message, ...)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/* get a line of interactive input */
|
||
|
char *PlatformGetLine(char *Buf, int MaxLen)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
/* write a character to the console */
|
||
|
void PlatformPutc(unsigned char OutCh)
|
||
|
{
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/* printf for compiler error reporting */
|
||
|
void PlatformPrintf(const char *Format, ...)
|
||
|
{
|
||
|
va_list Args;
|
||
|
|
||
|
va_start(Args, Format);
|
||
|
PlatformVPrintf(Format, Args);
|
||
|
va_end(Args);
|
||
|
}
|
||
|
|
||
|
void PlatformVPrintf(const char *Format, va_list Args)
|
||
|
{
|
||
|
const char *FPos;
|
||
|
|
||
|
for (FPos = Format; *FPos != '\0'; FPos++)
|
||
|
{
|
||
|
if (*FPos == '%')
|
||
|
{
|
||
|
FPos++;
|
||
|
switch (*FPos)
|
||
|
{
|
||
|
case 's': PrintStr(va_arg(Args, char *), PlatformPutc); break;
|
||
|
case 'd': PrintInt(va_arg(Args, int), PlatformPutc); break;
|
||
|
case 'c': PlatformPutc(va_arg(Args, int)); break;
|
||
|
#ifndef NO_FP
|
||
|
case 'f': PrintFP(va_arg(Args, double), PlatformPutc); break;
|
||
|
#endif
|
||
|
case '%': PlatformPutc('%'); break;
|
||
|
case '\0': FPos--; break;
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
PlatformPutc(*FPos);
|
||
|
}
|
||
|
}
|