mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.4 KiB
134 lines
3.4 KiB
|
|
#ifndef __COMPFILE_H_
|
|
#define __COMPFILE_H_
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <fstream>
|
|
#include <section.h>
|
|
|
|
//
|
|
// This class abstracts the compliance file
|
|
//
|
|
class ComplianceFile {
|
|
public:
|
|
ComplianceFile(const string& szFileName){
|
|
m_szFileName = szFileName;
|
|
bindSectionFactory();
|
|
readLines();
|
|
createSections();
|
|
}
|
|
|
|
virtual ~ComplianceFile(){
|
|
vector<Section*>::iterator iter = m_sections.begin();
|
|
|
|
while (iter != m_sections.end())
|
|
delete *iter++;
|
|
|
|
delete m_sectionFactory;
|
|
}
|
|
|
|
void executeTestCases(ostream& os);
|
|
|
|
//
|
|
// accessors
|
|
//
|
|
const string& name() const{ return m_szFileName; }
|
|
const vector<string>& lines() const{ return m_lines; }
|
|
const vector<Section*>& sections() const{ return m_sections; }
|
|
const ValueSection& typesSection() const { return *m_typesSection; }
|
|
const ValueSection& varsSection() const { return *m_varsSection; }
|
|
const ValueSection& suitesSection() const { return *m_suitesSection; }
|
|
const ValueSection& sourcesSection() const { return *m_sourcesSection; }
|
|
const ValueSection& errorsSection() const { return *m_errorsSection; }
|
|
const SectionFactory& sectionFactory() const { return *m_sectionFactory; }
|
|
|
|
//
|
|
// exception classes
|
|
//
|
|
struct InvalidFileName {
|
|
InvalidFileName(const string& name) : m_name(name) {}
|
|
|
|
friend ostream& operator<<(ostream& os, const InvalidFileName& rhs) {
|
|
os << "Exception : Invalid file name : " << rhs.m_name;
|
|
return os;
|
|
}
|
|
|
|
string m_name;
|
|
};
|
|
|
|
struct InvalidFileFormat {
|
|
InvalidFileFormat(const string& name) : m_name(name) {}
|
|
|
|
friend ostream& operator<<(ostream& os, const struct InvalidFileFormat &rhs) {
|
|
os << "Exception : Invalid file format : " << rhs.m_name;
|
|
return os;
|
|
}
|
|
|
|
string m_name;
|
|
};
|
|
|
|
struct MissingSection {
|
|
MissingSection(const string& name) : m_name(name){}
|
|
|
|
friend ostream& operator<<(ostream& os, const struct MissingSection &rhs) {
|
|
os << "Exception : The following section is missing : " << rhs.m_name;
|
|
return os;
|
|
}
|
|
|
|
string m_name;
|
|
};
|
|
|
|
//
|
|
// overloaded operators
|
|
//
|
|
friend ostream& operator<<(ostream& os, const ComplianceFile &cf);
|
|
|
|
/*
|
|
ComplianceFile& operator=(const ComplianceFile& rhs) {
|
|
m_lines = rhs.m_lines;
|
|
m_szFileName = rhs.m_szFileName;
|
|
|
|
delete m_typesSection;
|
|
m_typesSection = sectionFactory().create(rhs.typesSection());
|
|
|
|
delete m_varsSection;
|
|
m_varsSection = sectionFactory().create(rhs.varsSection());
|
|
|
|
delete m_suitesSection;
|
|
m_suitesSection = sectionFactory().create(rhs.suitesSection());
|
|
|
|
m_upgSections = rhs.TestSections();
|
|
}
|
|
*/
|
|
void executeTestCases();
|
|
|
|
protected:
|
|
virtual void bindSectionFactory() {
|
|
m_sectionFactory = new OldFormatSectionFactory();
|
|
}
|
|
|
|
//
|
|
// data members
|
|
//
|
|
vector<string> m_lines;
|
|
string m_szFileName;
|
|
ValueSection *m_typesSection;
|
|
ValueSection *m_varsSection;
|
|
ValueSection *m_suitesSection;
|
|
ValueSection *m_sourcesSection;
|
|
ValueSection *m_errorsSection;
|
|
SectionFactory *m_sectionFactory;
|
|
vector<TestSection*> m_upgSections;
|
|
vector<Section*> m_sections;
|
|
|
|
private:
|
|
void readLines();
|
|
bool isSectionName(const string& szLine) const;
|
|
void createSections();
|
|
|
|
static vector<Section*>::iterator
|
|
findSection(vector<Section*> §ions, const string& szName);
|
|
};
|
|
|
|
#endif // for __COMPFILE_H_
|