本文整理汇总了C++中StringParser::Is方法的典型用法代码示例。如果您正苦于以下问题:C++ StringParser::Is方法的具体用法?C++ StringParser::Is怎么用?C++ StringParser::Is使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringParser
的用法示例。
在下文中一共展示了StringParser::Is方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Construct
bool Arguments::Construct(char * data, int size)
{
String::Construct(data,size);
StringParser parser;
parser.Assign(*this);
bool error = false;
while ( !error && !parser.Eof() )
{
if (parser.Is('-'))
{
parser.Next();
if (parser.Is('-'))
parser.Next();
Path * path = new Path();
Append(path);
if (parser.ParseWord())
{
if (parser.Eof() || parser.SkipWhitespace())
{
Path * name = new Path();
Path * value = new Path();
path->Append(name);
path->Append(value);
name->Assign(parser.Token);
if (!parser.Is('-'))
{
parser.Mark();
while (!parser.Eof() && !parser.IsWhitespace()) parser.Next();
parser.Trap();
if (!parser.Token.IsEmpty())
value->Assign(parser.Token);
}
}
else
{
error = true;
}
}
else
{
error = true;
}
}
else
{
parser.Mark();
while (!parser.Eof() && !parser.IsWhitespace())
parser.Next();
parser.Trap();
if (!parser.Token.IsEmpty())
{
Path * path = new Path();
path->Assign(parser.Token);
Append(path);
}
}
if ( !error && !parser.Eof() && !parser.SkipWhitespace() && !parser.Is('-'))
error = true;
}
if (error)
{
Release(false);
OutputError("Arguments::Construct - Invalid token in arguments at column %d.",parser.Column());
return false;
}
else
{
return true;
}
}
示例2: Load
bool Configuration::Load(char * data, int size)
{
TextFileStream textFileStream(data,size);
TokenizerStream streamIterator(textFileStream);
streamIterator.Separators.Append(new Path("\r"));
streamIterator.Separators.Append(new Path("\n"));
System::Section * section = 0;
Iterand< Reason::Structure::Mapped<String,String> > iterand;
bool continued=false;
for (streamIterator.Forward();streamIterator.Has();streamIterator.Move())
{
StringParser parser;
parser.Assign(*streamIterator());
parser.ParseWhitespace();
if (continued)
{
parser.Mark();
while (!parser.Eof() && !parser.Is("\\")) parser.Next();
parser.Trap();
continued = (parser.Is("\\"))?true:false;
iterand().Value().Append(parser.Token);
}
else
if (parser.Is("#") || parser.Is("!") || parser.Is(";") || parser.Is("//"))
{
}
else
if (parser.Is("["))
{
parser.Mark();
while (!parser.Eof() && !parser.Is("]"))
parser.Next();
parser.Trap();
if (parser.Is("]"))
{
if (section) Sections.Append(section);
section = new System::Section();
section->Name = parser.Token;
parser.Next();
}
else
{
OutputError("Properties::Load","Missing \"]\" after section name, line %d column %d\n",parser.Line(),parser.Column());
}
}
else
if (!parser.Eof())
{
parser.Mark();
while (!parser.Eof() && !parser.IsWhitespace() && !parser.Is("="))
parser.Next();
parser.Trap();
Substring name(parser.Token);
if (parser.Is("="))
{
parser.Next();
parser.Mark();
while (!parser.Eof() && !parser.Is("\\")) parser.Next();
parser.Trap();
continued = (parser.Is("\\"))?true:false;
Substring value(parser.Token);
if (!section)
{
section = new System::Section();
}
iterand = section->Properties.Insert(name,value);
}
else
{
OutputError("Configuration::Load","Missing \"=\" after attribute name, line %d column %d\n",parser.Line(),parser.Column());
}
}
}
if (section)
Sections.Append(section);
return true;
}