[go: up one dir, main page]

Menu

[r18]: / metadata / data.cpp  Maximize  Restore  History

Download this file

138 lines (106 with data), 2.7 kB

  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
#include "data.h"
#include <iostream>
int Semantics::loadSemantics(const string& semfile, vector<DataAttr>& attrlist)
{
attrlist.clear();
ifstream ifs(semfile.c_str());
if (ifs.fail())
goto ERROR;
char line[1024];
line[0] = '\0';
// skip all comments and blank lines
while (!ifs.eof())
{
line[0] = '\0';
ifs.getline(line, 1024);
if (0 == strcmp(line, "BEGIN"))
break;
}
if (0 != strcmp(line, "BEGIN"))
goto ERROR;
while (!ifs.eof())
{
line[0] = '\0';
ifs.getline(line, 1024);
if (0 == strcmp(line, "END"))
return 0;
DataAttr attr;
string token;
char* p = line;
if (0 != getToken(&p, token))
break;
attr.m_strName = token;
if (0 != getToken(&p, token))
break;
if ("INTEGER" == token)
attr.m_Type = INTEGER;
else if ("CHAR" == token)
attr.m_Type = CHAR;
else if ("FLOAT" == token)
attr.m_Type = FLOAT;
else if ("BOOLEAN" == token)
attr.m_Type = BOOLEAN;
else if ("STRING" == token)
attr.m_Type = STRING;
else
goto ERROR;
attrlist.insert(attrlist.end(), attr);
}
ERROR:
ifs.close();
return -1;
}
int Semantics::getToken(char** line, string& token)
{
char* p = *line;
while (((' ' == *p) || ('\t' == *p)) && ('\0' != *p))
++ p;
if ('\0' == *p)
return -1;
token = "";
while ((' ' != *p) && ('\t' != *p) && ('\0' != *p))
token.append(1, *p++);
*line = p;
return 0;
}
int Semantics::serialize(string& semstring, vector<DataAttr>& attrlist)
{
semstring = "";
for (vector<DataAttr>::iterator i = attrlist.begin(); i != attrlist.end(); ++ i)
{
char line[1024];
sprintf(line, "%s %d ", i->m_strName.c_str(), i->m_Type);
semstring += line;
}
return semstring.length();
}
int Semantics::deserialize(const string& semstring, vector<DataAttr>& attrlist)
{
char* p = (char*)semstring.c_str();
string token;
attrlist.clear();
for (;;)
{
DataAttr attr;
if (0 != getToken(&p, token))
break;
attr.m_strName = token;
if (0 != getToken(&p, token))
return -1;
attr.m_Type = (DataType)atoi(token.c_str());
attrlist.insert(attrlist.end(), attr);
}
return attrlist.size();
}
void Semantics::display(vector<DataAttr>& attrlist)
{
if (0 == attrlist.size())
{
cout << "NULL\n";
return;
}
for (vector<DataAttr>::iterator i = attrlist.begin(); i != attrlist.end(); ++ i)
{
cout << i->m_strName << " " << i->m_Type << endl;
}
}