#include "pcheck.h"
#include "common.h"
#include "stdlib.h"
#include <string.h>
#include <assert.h>
HostType hostTypesC[] =
{
{
"char"
, 0,
"char"
,
true
,
true
,
false
, CHAR_MIN, CHAR_MAX, 0, 0,
sizeof
(
char
) },
{
"unsigned"
,
"char"
,
"uchar"
,
false
,
true
,
false
, 0, 0, 0, UCHAR_MAX,
sizeof
(unsigned
char
) },
{
"short"
, 0,
"short"
,
true
,
true
,
false
, SHRT_MIN, SHRT_MAX, 0, 0,
sizeof
(
short
) },
{
"unsigned"
,
"short"
,
"ushort"
,
false
,
true
,
false
, 0, 0, 0, USHRT_MAX,
sizeof
(unsigned
short
) },
{
"int"
, 0,
"int"
,
true
,
true
,
false
, INT_MIN, INT_MAX, 0, 0,
sizeof
(
int
) },
{
"unsigned"
,
"int"
,
"uint"
,
false
,
true
,
false
, 0, 0, 0, UINT_MAX,
sizeof
(unsigned
int
) },
{
"long"
, 0,
"long"
,
true
,
true
,
false
, LONG_MIN, LONG_MAX, 0, 0,
sizeof
(
long
) },
{
"unsigned"
,
"long"
,
"ulong"
,
false
,
true
,
false
, 0, 0, 0, ULONG_MAX,
sizeof
(unsigned
long
) }
};
#define S8BIT_MIN -128
#define S8BIT_MAX 127
#define U8BIT_MIN 0
#define U8BIT_MAX 255
#define S16BIT_MIN -32768
#define S16BIT_MAX 32767
#define U16BIT_MIN 0
#define U16BIT_MAX 65535
#define S31BIT_MIN -1073741824L
#define S31BIT_MAX 1073741823L
#define S32BIT_MIN -2147483648L
#define S32BIT_MAX 2147483647L
#define U32BIT_MIN 0
#define U32BIT_MAX 4294967295UL
#define S64BIT_MIN -9223372036854775807LL
#define S64BIT_MAX 9223372036854775807LL
#define U64BIT_MIN 0
#define U64BIT_MAX 18446744073709551615ULL
HostType hostTypesD[] =
{
{
"byte"
, 0,
"byte"
,
true
,
true
,
false
, CHAR_MIN, CHAR_MAX, 0, 0, 1 },
{
"ubyte"
, 0,
"ubyte"
,
false
,
true
,
false
, 0, 0, 0, UCHAR_MAX, 1 },
{
"char"
, 0,
"char"
,
false
,
true
,
false
, 0, 0, 0, UCHAR_MAX, 1 },
{
"short"
, 0,
"short"
,
true
,
true
,
false
, SHRT_MIN, SHRT_MAX, 0, 0, 2 },
{
"ushort"
, 0,
"ushort"
,
false
,
true
,
false
, 0, 0, 0, USHRT_MAX, 2 },
{
"wchar"
, 0,
"wchar"
,
false
,
true
,
false
, 0, 0, 0, USHRT_MAX, 2 },
{
"int"
, 0,
"int"
,
true
,
true
,
false
, INT_MIN, INT_MAX, 0, 0, 4 },
{
"uint"
, 0,
"uint"
,
false
,
true
,
false
, 0, 0, 0, UINT_MAX, 4 },
{
"dchar"
, 0,
"dchar"
,
false
,
true
,
false
, 0, 0, 0, UINT_MAX, 4 }
};
HostType hostTypesGo[] =
{
{
"byte"
, 0,
"uint8"
,
false
,
true
,
false
, 0, 0, U8BIT_MIN, U8BIT_MAX, 1 },
{
"int8"
, 0,
"int8"
,
true
,
true
,
false
, S8BIT_MIN, S8BIT_MAX, 0, 0, 1 },
{
"uint8"
, 0,
"uint8"
,
false
,
true
,
false
, 0, 0, U8BIT_MIN, U8BIT_MAX, 1 },
{
"int16"
, 0,
"int16"
,
true
,
true
,
false
, S16BIT_MIN, S16BIT_MAX, 0, 0, 2 },
{
"uint16"
, 0,
"uint16"
,
false
,
true
,
false
, 0, 0, U16BIT_MIN, U16BIT_MAX, 2 },
{
"int32"
, 0,
"int32"
,
true
,
true
,
false
, S32BIT_MIN, S32BIT_MAX, 0, 0, 4 },
{
"uint32"
, 0,
"uint32"
,
false
,
true
,
false
, 0, 0, U32BIT_MIN, U32BIT_MAX, 4 },
{
"int64"
, 0,
"int64"
,
true
,
true
,
false
, S64BIT_MIN, S64BIT_MAX, 0, 0, 8 },
{
"uint64"
, 0,
"uint64"
,
false
,
true
,
false
, 0, 0, U64BIT_MIN, U64BIT_MAX, 8 },
{
"rune"
, 0,
"int32"
,
true
,
true
,
true
, S32BIT_MIN, S32BIT_MAX, 0, 0, 4 }
};
HostType hostTypesJava[] =
{
{
"byte"
, 0,
"byte"
,
true
,
true
,
false
, CHAR_MIN, CHAR_MAX, 0, 0, 1 },
{
"short"
, 0,
"short"
,
true
,
true
,
false
, SHRT_MIN, SHRT_MAX, 0, 0, 2 },
{
"char"
, 0,
"char"
,
false
,
true
,
false
, 0, 0, 0, USHRT_MAX, 2 },
{
"int"
, 0,
"int"
,
true
,
true
,
false
, INT_MIN, INT_MAX, 0, 0, 4 },
};
HostType hostTypesRuby[] =
{
{
"char"
, 0,
"char"
,
true
,
true
,
false
, CHAR_MIN, CHAR_MAX, 0, 0, 1 },
{
"int"
, 0,
"int"
,
true
,
true
,
false
, INT_MIN, INT_MAX, 0, 0, 4 },
};
HostType hostTypesCSharp[] =
{
{
"sbyte"
, 0,
"sbyte"
,
true
,
true
,
false
, CHAR_MIN, CHAR_MAX, 0, 0, 1 },
{
"byte"
, 0,
"byte"
,
false
,
true
,
false
, 0, 0, 0, UCHAR_MAX, 1 },
{
"short"
, 0,
"short"
,
true
,
true
,
false
, SHRT_MIN, SHRT_MAX, 0, 0, 2 },
{
"ushort"
, 0,
"ushort"
,
false
,
true
,
false
, 0, 0, 0, USHRT_MAX, 2 },
{
"char"
, 0,
"char"
,
false
,
true
,
true
, 0, 0, 0, USHRT_MAX, 2 },
{
"int"
, 0,
"int"
,
true
,
true
,
false
, INT_MIN, INT_MAX, 0, 0, 4 },
{
"uint"
, 0,
"uint"
,
false
,
true
,
false
, 0, 0, 0, UINT_MAX, 4 },
{
"long"
, 0,
"long"
,
true
,
true
,
false
, LONG_MIN, LONG_MAX, 0, 0, 8 },
{
"ulong"
, 0,
"ulong"
,
false
,
true
,
false
, 0, 0, 0, ULONG_MAX, 8 }
};
HostType hostTypesOCaml[] =
{
{
"int"
, 0,
"int"
,
true
,
true
,
false
, S31BIT_MIN, S31BIT_MAX, 0, 0, 4 },
};
HostLang hostLangC = { HostLang::C, hostTypesC, 8, hostTypesC+0,
true
};
HostLang hostLangD = { HostLang::D, hostTypesD, 9, hostTypesD+2,
true
};
HostLang hostLangD2 = { HostLang::D2, hostTypesD, 9, hostTypesD+2,
true
};
HostLang hostLangGo = { HostLang::Go, hostTypesGo, 10, hostTypesGo+0,
false
};
HostLang hostLangJava = { HostLang::Java, hostTypesJava, 4, hostTypesJava+2,
false
};
HostLang hostLangRuby = { HostLang::Ruby, hostTypesRuby, 2, hostTypesRuby+0,
false
};
HostLang hostLangCSharp = { HostLang::CSharp, hostTypesCSharp, 9, hostTypesCSharp+4,
true
};
HostLang hostLangOCaml = { HostLang::OCaml, hostTypesOCaml, 1, hostTypesOCaml+0,
false
};
HostLang *hostLang = &hostLangC;
HostType *findAlphType(
const
char
*s1 )
{
for
(
int
i = 0; i < hostLang->numHostTypes; i++ ) {
if
(
strcmp
( s1, hostLang->hostTypes[i].data1 ) == 0 &&
hostLang->hostTypes[i].data2 == 0 )
{
return
hostLang->hostTypes + i;
}
}
return
0;
}
HostType *findAlphType(
const
char
*s1,
const
char
*s2 )
{
for
(
int
i = 0; i < hostLang->numHostTypes; i++ ) {
if
(
strcmp
( s1, hostLang->hostTypes[i].data1 ) == 0 &&
hostLang->hostTypes[i].data2 != 0 &&
strcmp
( s2, hostLang->hostTypes[i].data2 ) == 0 )
{
return
hostLang->hostTypes + i;
}
}
return
0;
}
HostType *findAlphTypeInternal(
const
char
*s1 )
{
for
(
int
i = 0; i < hostLang->numHostTypes; i++ ) {
if
(
strcmp
( s1, hostLang->hostTypes[i].internalName ) == 0 )
return
hostLang->hostTypes + i;
}
return
0;
}
ParamCheck::ParamCheck(
const
char
*paramSpec,
int
argc,
const
char
**argv )
:
state(noparam),
argOffset(0),
curArg(0),
iCurArg(1),
paramSpec(paramSpec),
argc(argc),
argv(argv)
{
}
bool
ParamCheck::check()
{
bool
requiresParam;
if
( iCurArg >= argc ) {
state = noparam;
return
false
;
}
if
( argOffset != 0 && *argOffset == 0 ) {
iCurArg += 1;
if
( iCurArg >= argc ) {
state = noparam;
return
false
;
}
argOffset = 0;
}
if
( argOffset == 0 ) {
curArg = argv[iCurArg];
if
( argv[iCurArg] == 0 ||
argv[iCurArg][0] !=
'-'
||
argv[iCurArg][1] == 0 ) {
parameter = 0;
paramArg = 0;
iCurArg += 1;
state = noparam;
return
true
;
}
argOffset = argv[iCurArg] + 1;
}
char
argChar = *argOffset;
const
char
*pSpec = paramSpec;
while
( *pSpec != 0 ) {
char
pSpecChar = *pSpec;
if
( pSpec[1] ==
':'
) {
requiresParam =
true
;
pSpec += 2;
}
else
{
requiresParam =
false
;
pSpec += 1;
}
if
( argChar == pSpecChar ) {
if
( requiresParam ) {
if
( argOffset[1] == 0 ) {
if
( iCurArg + 1 == argc ) {
parameter = argChar;
paramArg = 0;
iCurArg += 1;
argOffset = 0;
state = invalid;
return
true
;
}
else
{
parameter = pSpecChar;
paramArg = argv[iCurArg + 1];
iCurArg += 2;
argOffset = 0;
state = match;
return
true
;
}
}
else
{
parameter = pSpecChar;
paramArg = argOffset + 1;
iCurArg += 1;
argOffset = 0;
state = match;
return
true
;
}
}
else
{
parameter = pSpecChar;
paramArg = 0;
argOffset += 1;
state = match;
return
true
;
}
}
}
parameter = argChar;
paramArg = 0;
argOffset += 1;
state = invalid;
return
true
;
}
int
output_filter::sync( )
{
line += 1;
return
std::filebuf::sync();
}
std::streamsize output_filter::xsputn(
const
char
*s, std::streamsize n )
{
for
(
int
i = 0; i < n; i++ ) {
if
( s[i] ==
'\n'
)
line += 1;
}
return
std::filebuf::xsputn( s, n );
}
const
char
*findFileExtension(
const
char
*stemFile )
{
const
char
*ppos = stemFile +
strlen
(stemFile) - 1;
while
( 1 ) {
if
( ppos == stemFile || *ppos ==
'.'
)
break
;
if
( *ppos ==
'/'
) {
ppos = stemFile;
break
;
}
ppos--;
}
if
( ppos == stemFile )
ppos = 0;
return
ppos;
}
const
char
*fileNameFromStem(
const
char
*stemFile,
const
char
*suffix )
{
long
len =
strlen
( stemFile );
assert
( len > 0 );
const
char
*ppos = findFileExtension( stemFile );
if
( ppos != 0 )
len = ppos - stemFile;
char
*retVal =
new
char
[ len +
strlen
( suffix ) + 1 ];
strncpy
( retVal, stemFile, len );
strcpy
( retVal + len, suffix );
return
retVal;
}
exit_object endp;
void
operator<<( std::ostream &out, exit_object & )
{
out << std::endl;
exit
(1);
}