mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
new improved logparse
This commit is contained in:
parent
b491633bcf
commit
6d71410d47
@ -20,6 +20,7 @@
|
||||
#define nsILoggingSink_h___
|
||||
|
||||
#include "nsIHTMLContentSink.h"
|
||||
#include "nsString.h"
|
||||
|
||||
// IID for nsILoggingSink
|
||||
#define NS_ILOGGING_SINK_IID \
|
||||
@ -31,7 +32,7 @@
|
||||
|
||||
class nsILoggingSink : public nsIHTMLContentSink {
|
||||
public:
|
||||
NS_IMETHOD Init(FILE* fp) = 0;
|
||||
NS_IMETHOD SetOutputStream(ostream& aStream) =0;
|
||||
};
|
||||
|
||||
extern "C" nsresult NS_NewHTMLLoggingSink(nsIContentSink** aInstancePtrResult);
|
||||
|
@ -18,6 +18,7 @@
|
||||
*/
|
||||
#include "nsILoggingSink.h"
|
||||
#include "nsHTMLTags.h"
|
||||
#include "nsString.h"
|
||||
|
||||
static NS_DEFINE_IID(kIContentSinkIID, NS_ICONTENT_SINK_IID);
|
||||
static NS_DEFINE_IID(kIHTMLContentSinkIID, NS_IHTML_CONTENT_SINK_IID);
|
||||
@ -34,6 +35,21 @@ static char gSkippedContentTags[] = {
|
||||
0
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @update gess8/8/98
|
||||
* @param
|
||||
* @return
|
||||
*/
|
||||
ostream& operator<<(ostream& os,nsAutoString& aString){
|
||||
const PRUnichar* uc=aString.GetUnicode();
|
||||
int len=aString.Length();
|
||||
for(int i=0;i<len;i++)
|
||||
os<<(char)uc[i];
|
||||
return os;
|
||||
}
|
||||
|
||||
|
||||
class nsLoggingSink : public nsILoggingSink {
|
||||
public:
|
||||
nsLoggingSink();
|
||||
@ -68,7 +84,7 @@ public:
|
||||
NS_IMETHOD CloseFrameset(const nsIParserNode& aNode);
|
||||
|
||||
// nsILoggingSink
|
||||
NS_IMETHOD Init(FILE* fp);
|
||||
NS_IMETHOD SetOutputStream(ostream& aStream);
|
||||
|
||||
nsresult OpenNode(const char* aKind, const nsIParserNode& aNode);
|
||||
nsresult CloseNode(const char* aKind);
|
||||
@ -78,7 +94,8 @@ public:
|
||||
PRBool WillWriteAttributes(const nsIParserNode& aNode);
|
||||
|
||||
protected:
|
||||
FILE* mFile;
|
||||
ostream* mOutput;
|
||||
int mLevel;
|
||||
};
|
||||
|
||||
nsresult
|
||||
@ -98,14 +115,15 @@ NS_NewHTMLLoggingSink(nsIContentSink** aInstancePtrResult)
|
||||
nsLoggingSink::nsLoggingSink()
|
||||
{
|
||||
NS_INIT_REFCNT();
|
||||
mFile = nsnull;
|
||||
mOutput = 0;
|
||||
mLevel=-1;
|
||||
}
|
||||
|
||||
nsLoggingSink::~nsLoggingSink()
|
||||
{
|
||||
if (nsnull != mFile) {
|
||||
fclose(mFile);
|
||||
mFile = nsnull;
|
||||
if (0 != mOutput) {
|
||||
mOutput->flush();
|
||||
mOutput = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@ -143,27 +161,32 @@ nsLoggingSink::QueryInterface(const nsIID& aIID, void** aInstancePtr)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsresult
|
||||
nsLoggingSink::Init(FILE* fp)
|
||||
{
|
||||
if (nsnull == fp) {
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
}
|
||||
mFile = fp;
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::SetOutputStream(ostream& aStream) {
|
||||
mOutput = &aStream;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
void WriteTabs(ostream& anOutputStream,int aTabCount) {
|
||||
int tabs;
|
||||
for(tabs=0;tabs<aTabCount;tabs++)
|
||||
anOutputStream << " ";
|
||||
}
|
||||
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::WillBuildModel()
|
||||
{
|
||||
fputs("<begin>\n", mFile);
|
||||
WriteTabs(*mOutput,++mLevel);
|
||||
(*mOutput) << "<begin>" << endl;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::DidBuildModel(PRInt32 aQualityLevel)
|
||||
{
|
||||
fputs("</begin>\n", mFile);
|
||||
WriteTabs(*mOutput,mLevel--);
|
||||
(*mOutput) << "</begin>" << endl;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -188,7 +211,14 @@ nsLoggingSink::OpenContainer(const nsIParserNode& aNode)
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::CloseContainer(const nsIParserNode& aNode)
|
||||
{
|
||||
return CloseNode("container");
|
||||
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
if ((nodeType >= eHTMLTag_unknown) &&
|
||||
(nodeType <= nsHTMLTag(NS_HTML_TAG_MAX))) {
|
||||
const char* tag = NS_EnumToTag(nodeType);
|
||||
return CloseNode(tag);
|
||||
}
|
||||
return CloseNode("???");
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
@ -208,9 +238,9 @@ nsLoggingSink::SetTitle(const nsString& aValue)
|
||||
{
|
||||
nsAutoString tmp;
|
||||
QuoteText(aValue, tmp);
|
||||
fputs("<title value=\"", mFile);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>", mFile);
|
||||
WriteTabs(*mOutput,++mLevel);
|
||||
(*mOutput) << "<title value=\"" << tmp << "\"/>" << endl;
|
||||
--mLevel;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -286,31 +316,32 @@ nsLoggingSink::CloseFrameset(const nsIParserNode& aNode)
|
||||
return CloseNode("frameset");
|
||||
}
|
||||
|
||||
|
||||
nsresult
|
||||
nsLoggingSink::OpenNode(const char* aKind, const nsIParserNode& aNode)
|
||||
{
|
||||
fprintf(mFile, "<open kind=\"%s\" ", aKind);
|
||||
WriteTabs(*mOutput,++mLevel);
|
||||
|
||||
(*mOutput) << "<open container=";
|
||||
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
if ((nodeType >= eHTMLTag_unknown) &&
|
||||
(nodeType <= nsHTMLTag(NS_HTML_TAG_MAX))) {
|
||||
const char* tag = NS_EnumToTag(nodeType);
|
||||
fprintf(mFile, "tag=\"%s\"", tag);
|
||||
(*mOutput) << "\"" << tag << "\"";
|
||||
}
|
||||
else {
|
||||
const nsString& text = aNode.GetText();
|
||||
fputs("tag=\"", mFile);
|
||||
fputs(text, mFile);
|
||||
fputs(" \"", mFile);
|
||||
(*mOutput) << "\"" << text << " \"";
|
||||
}
|
||||
|
||||
if (WillWriteAttributes(aNode)) {
|
||||
fputs(">\n", mFile);
|
||||
(*mOutput) << ">" << endl;
|
||||
WriteAttributes(aNode);
|
||||
fputs("</open>\n", mFile);
|
||||
(*mOutput) << "</open>" << endl;
|
||||
}
|
||||
else {
|
||||
fputs("/>\n", mFile);
|
||||
(*mOutput) << ">" << endl;
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
@ -319,7 +350,8 @@ nsLoggingSink::OpenNode(const char* aKind, const nsIParserNode& aNode)
|
||||
nsresult
|
||||
nsLoggingSink::CloseNode(const char* aKind)
|
||||
{
|
||||
fprintf(mFile, "<close kind=\"%s\"/>\n", aKind);
|
||||
WriteTabs(*mOutput,mLevel--);
|
||||
(*mOutput) << "<close container=\"" << aKind << "\">" << endl;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -332,10 +364,9 @@ nsLoggingSink::WriteAttributes(const nsIParserNode& aNode)
|
||||
for (PRInt32 i = 0; i < ac; i++) {
|
||||
const nsString& k = aNode.GetKeyAt(i);
|
||||
const nsString& v = aNode.GetValueAt(i);
|
||||
fputs(" <attr key=\"", mFile);
|
||||
fputs(k, mFile);
|
||||
fputs("\" value=\"", mFile);
|
||||
|
||||
(*mOutput) << " <attr key=\"" << k << "\" value=\"";
|
||||
|
||||
tmp.Truncate();
|
||||
tmp.Append(v);
|
||||
PRUnichar first = tmp.First();
|
||||
@ -351,18 +382,18 @@ nsLoggingSink::WriteAttributes(const nsIParserNode& aNode)
|
||||
}
|
||||
}
|
||||
QuoteText(tmp, tmp2);
|
||||
fputs(tmp2, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
|
||||
(*mOutput) << tmp2 << "\"/>" << endl;
|
||||
}
|
||||
|
||||
if (0 != strchr(gSkippedContentTags, aNode.GetNodeType())) {
|
||||
const nsString& content = aNode.GetSkippedContent();
|
||||
if (content.Length() > 0) {
|
||||
nsAutoString tmp;
|
||||
fputs(" <content value=\"", mFile);
|
||||
|
||||
QuoteText(content, tmp);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
(*mOutput) << " <content value=\"";
|
||||
(*mOutput) << tmp << "\"/>" << endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -388,18 +419,20 @@ nsLoggingSink::WillWriteAttributes(const nsIParserNode& aNode)
|
||||
nsresult
|
||||
nsLoggingSink::LeafNode(const nsIParserNode& aNode)
|
||||
{
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
WriteTabs(*mOutput,1+mLevel);
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
if ((nodeType >= eHTMLTag_unknown) &&
|
||||
(nodeType <= nsHTMLTag(NS_HTML_TAG_MAX))) {
|
||||
const char* tag = NS_EnumToTag(nodeType);
|
||||
fprintf(mFile, "<leaf tag=\"%s\"", tag);
|
||||
|
||||
(*mOutput) << "<leaf tag=\"" << tag << "\"";
|
||||
if (WillWriteAttributes(aNode)) {
|
||||
fputs(">\n", mFile);
|
||||
(*mOutput) << ">" << endl;
|
||||
WriteAttributes(aNode);
|
||||
fputs("</leaf>\n", mFile);
|
||||
(*mOutput) << "</leaf>" << endl;
|
||||
}
|
||||
else {
|
||||
fputs("/>\n", mFile);
|
||||
(*mOutput) << "/>" << endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
@ -409,13 +442,11 @@ nsLoggingSink::LeafNode(const nsIParserNode& aNode)
|
||||
case eHTMLTag_whitespace:
|
||||
case eHTMLTag_text:
|
||||
QuoteText(aNode.GetText(), tmp);
|
||||
fputs("<text value=\"", mFile);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
(*mOutput) << "<text value=\"" << tmp << "\"/>" << endl;
|
||||
break;
|
||||
|
||||
case eHTMLTag_newline:
|
||||
fputs("<newline/>\n", mFile);
|
||||
(*mOutput) << "<newline/>" << endl;
|
||||
break;
|
||||
|
||||
case eHTMLTag_entity:
|
||||
@ -425,9 +456,7 @@ nsLoggingSink::LeafNode(const nsIParserNode& aNode)
|
||||
if (pos >= 0) {
|
||||
tmp.Cut(pos, 1);
|
||||
}
|
||||
fputs("<entity value=\"", mFile);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
(*mOutput) << "<entity value=\"" << tmp << "\"/>" << endl;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
@ -40,63 +40,162 @@ static NS_DEFINE_IID(kLoggingSinkCID, NS_LOGGING_SINK_IID);
|
||||
static NS_DEFINE_IID(kIParserIID, NS_IPARSER_IID);
|
||||
static NS_DEFINE_IID(kILoggingSinkIID, NS_ILOGGING_SINK_IID);
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
static void SetupRegistry()
|
||||
{
|
||||
NSRepository::RegisterFactory(kParserCID, PARSER_DLL, PR_FALSE, PR_FALSE);
|
||||
NSRepository::RegisterFactory(kLoggingSinkCID, PARSER_DLL,PR_FALSE,PR_FALSE);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
static const char* kWorkingDir = "s:/mozilla/htmlparser/tests/logparse";
|
||||
|
||||
nsresult GenerateBaselineFile(const char* aSourceFilename,const char* aBaselineFilename) {
|
||||
nsresult result=NS_OK;
|
||||
|
||||
if(aSourceFilename && aBaselineFilename) {
|
||||
|
||||
fstream theInputStream(aSourceFilename,ios::in | ios::nocreate);
|
||||
|
||||
// Create a parser
|
||||
nsIParser* parser;
|
||||
nsresult rv = NSRepository::CreateInstance(kParserCID,nsnull,kIParserIID,(void**)&parser);
|
||||
if (NS_OK != rv) {
|
||||
cout << "Unable to create a parser (" << rv << ")" <<endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Create a sink
|
||||
nsILoggingSink* sink;
|
||||
rv = NSRepository::CreateInstance(kLoggingSinkCID,nsnull,kILoggingSinkIID,(void**)&sink);
|
||||
if (NS_OK != rv) {
|
||||
cout << "Unable to create a sink (" << rv << ")" <<endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
{
|
||||
fstream theOutputStream(aBaselineFilename,ios::out);
|
||||
sink->SetOutputStream(theOutputStream);
|
||||
|
||||
// Parse the document, having the sink write the data to fp
|
||||
nsIDTD* dtd = nsnull;
|
||||
NS_NewNavHTMLDTD(&dtd);
|
||||
parser->RegisterDTD(dtd);
|
||||
parser->SetContentSink(sink);
|
||||
result = parser->Parse(theInputStream);
|
||||
NS_RELEASE(parser);
|
||||
NS_RELEASE(sink);
|
||||
}
|
||||
|
||||
}
|
||||
return (NS_OK == result) ? 0 : -1;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
PRBool CompareFiles(const char* aFilename1, const char* aFilename2) {
|
||||
PRBool result=PR_TRUE;
|
||||
|
||||
fstream theFirstStream(aFilename1,ios::in | ios::nocreate);
|
||||
fstream theSecondStream(aFilename2,ios::in | ios::nocreate);
|
||||
|
||||
PRBool done=PR_FALSE;
|
||||
char ch1,ch2;
|
||||
|
||||
while(!done) {
|
||||
theFirstStream >> ch1;
|
||||
theSecondStream >> ch2;
|
||||
if(ch1!=ch2) {
|
||||
result=PR_FALSE;
|
||||
break;
|
||||
}
|
||||
done=PRBool((theFirstStream.ipfx(1)==0) || (theSecondStream.ipfx(1)==0));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
static const char* kAppName = "logparse ";
|
||||
static const char* kOption1 = "Compare baseline file-set";
|
||||
static const char* kOption2 = "Generate baseline ";
|
||||
static const char* kResultMsg[2] = {" does not match baseline."," matches baseline."};
|
||||
|
||||
void ValidateBaselineFiles(const char* anIndexFilename) {
|
||||
|
||||
fstream theIndexFile(anIndexFilename,ios::in | ios::nocreate);
|
||||
char theFilename[500];
|
||||
char theBaselineFilename[500];
|
||||
PRBool done=PR_FALSE;
|
||||
|
||||
while(!done) {
|
||||
theIndexFile >> theFilename;
|
||||
theIndexFile >> theBaselineFilename;
|
||||
if(theFilename[0] && theBaselineFilename[0]) {
|
||||
char theTempFile[500];
|
||||
sprintf(theTempFile,theBaselineFilename);
|
||||
strcat(theTempFile,"x");
|
||||
if(0==GenerateBaselineFile(theFilename,theTempFile)) {
|
||||
PRBool matches=CompareFiles(theTempFile,theBaselineFilename);
|
||||
cout << theFilename << kResultMsg[matches] << endl;
|
||||
}
|
||||
}
|
||||
theFilename[0]=0;
|
||||
theBaselineFilename[0]=0;
|
||||
done=PRBool(theIndexFile.ipfx(1)==0);
|
||||
}
|
||||
|
||||
|
||||
// Now it's time to compare our output to the baseline...
|
||||
// if(!CompareFiles(aBaselineFilename,aBaselineFilename)){
|
||||
// cout << "File: \"" << aSourceFilename << "\" does not match baseline." << endl;
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (argc != 3) {
|
||||
fprintf(stderr, "Usage: logparse in out\n");
|
||||
if (argc < 2) {
|
||||
cout << "Usage: " << kAppName << " [options] [filename]" << endl;
|
||||
cout << " -c [filelist] " << kOption1 << endl;
|
||||
cout << " -g [in] [out] " << kOption2 << endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
fstream *in = new fstream();
|
||||
in->open(argv[1], ios::in | ios::nocreate);
|
||||
int result=0;
|
||||
|
||||
FILE* fp = fopen(argv[2], "wb");
|
||||
if (nsnull == fp) {
|
||||
fprintf(stderr, "can't create '%s'\n", argv[2]);
|
||||
return -1;
|
||||
}
|
||||
SetupRegistry();
|
||||
|
||||
SetupRegistry();
|
||||
if(0==strcmp("-c",argv[1])) {
|
||||
|
||||
// Create a parser
|
||||
nsIParser* parser;
|
||||
nsresult rv = NSRepository::CreateInstance(kParserCID,
|
||||
nsnull,
|
||||
kIParserIID,
|
||||
(void**)&parser);
|
||||
if (NS_OK != rv) {
|
||||
fprintf(stderr, "Unable to create a parser (%x)\n", rv);
|
||||
return -1;
|
||||
}
|
||||
if(argc>2) {
|
||||
cout << kOption1 << "..." << endl;
|
||||
|
||||
// Create a sink
|
||||
nsILoggingSink* sink;
|
||||
rv = NSRepository::CreateInstance(kLoggingSinkCID,
|
||||
nsnull,
|
||||
kILoggingSinkIID,
|
||||
(void**)&sink);
|
||||
if (NS_OK != rv) {
|
||||
fprintf(stderr, "Unable to create a sink (%x)\n", rv);
|
||||
return -1;
|
||||
}
|
||||
sink->Init(fp);
|
||||
//Open the master filelist, and read the filenames.
|
||||
//Each line contains a source filename and a baseline filename, separated by a space.
|
||||
ValidateBaselineFiles(argv[2]);
|
||||
}
|
||||
else {
|
||||
cout << kAppName << ": Filelist missing for -c option -- nothing to do." << endl;
|
||||
}
|
||||
|
||||
// Parse the document, having the sink write the data to fp
|
||||
nsIDTD* dtd = nsnull;
|
||||
NS_NewNavHTMLDTD(&dtd);
|
||||
parser->RegisterDTD(dtd);
|
||||
parser->SetContentSink(sink);
|
||||
PRInt32 status = parser->Parse(*in);
|
||||
NS_RELEASE(parser);
|
||||
NS_RELEASE(sink);
|
||||
|
||||
return (NS_OK == status) ? 0 : -1;
|
||||
}
|
||||
else if(0==strcmp("-g",argv[1])) {
|
||||
if(argc>3) {
|
||||
cout << kOption2 << argv[3] << " from " << argv[2] << "..." << endl;
|
||||
GenerateBaselineFile(argv[2],argv[3]);
|
||||
}
|
||||
else {
|
||||
cout << kAppName << ": Filename(s) missing for -g option -- nothing to do." << endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
cout << kAppName << ": Unknown options -- nothing to do." << endl;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -20,6 +20,7 @@
|
||||
#define nsILoggingSink_h___
|
||||
|
||||
#include "nsIHTMLContentSink.h"
|
||||
#include "nsString.h"
|
||||
|
||||
// IID for nsILoggingSink
|
||||
#define NS_ILOGGING_SINK_IID \
|
||||
@ -31,7 +32,7 @@
|
||||
|
||||
class nsILoggingSink : public nsIHTMLContentSink {
|
||||
public:
|
||||
NS_IMETHOD Init(FILE* fp) = 0;
|
||||
NS_IMETHOD SetOutputStream(ostream& aStream) =0;
|
||||
};
|
||||
|
||||
extern "C" nsresult NS_NewHTMLLoggingSink(nsIContentSink** aInstancePtrResult);
|
||||
|
@ -18,6 +18,7 @@
|
||||
*/
|
||||
#include "nsILoggingSink.h"
|
||||
#include "nsHTMLTags.h"
|
||||
#include "nsString.h"
|
||||
|
||||
static NS_DEFINE_IID(kIContentSinkIID, NS_ICONTENT_SINK_IID);
|
||||
static NS_DEFINE_IID(kIHTMLContentSinkIID, NS_IHTML_CONTENT_SINK_IID);
|
||||
@ -34,6 +35,21 @@ static char gSkippedContentTags[] = {
|
||||
0
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @update gess8/8/98
|
||||
* @param
|
||||
* @return
|
||||
*/
|
||||
ostream& operator<<(ostream& os,nsAutoString& aString){
|
||||
const PRUnichar* uc=aString.GetUnicode();
|
||||
int len=aString.Length();
|
||||
for(int i=0;i<len;i++)
|
||||
os<<(char)uc[i];
|
||||
return os;
|
||||
}
|
||||
|
||||
|
||||
class nsLoggingSink : public nsILoggingSink {
|
||||
public:
|
||||
nsLoggingSink();
|
||||
@ -68,7 +84,7 @@ public:
|
||||
NS_IMETHOD CloseFrameset(const nsIParserNode& aNode);
|
||||
|
||||
// nsILoggingSink
|
||||
NS_IMETHOD Init(FILE* fp);
|
||||
NS_IMETHOD SetOutputStream(ostream& aStream);
|
||||
|
||||
nsresult OpenNode(const char* aKind, const nsIParserNode& aNode);
|
||||
nsresult CloseNode(const char* aKind);
|
||||
@ -78,7 +94,8 @@ public:
|
||||
PRBool WillWriteAttributes(const nsIParserNode& aNode);
|
||||
|
||||
protected:
|
||||
FILE* mFile;
|
||||
ostream* mOutput;
|
||||
int mLevel;
|
||||
};
|
||||
|
||||
nsresult
|
||||
@ -98,14 +115,15 @@ NS_NewHTMLLoggingSink(nsIContentSink** aInstancePtrResult)
|
||||
nsLoggingSink::nsLoggingSink()
|
||||
{
|
||||
NS_INIT_REFCNT();
|
||||
mFile = nsnull;
|
||||
mOutput = 0;
|
||||
mLevel=-1;
|
||||
}
|
||||
|
||||
nsLoggingSink::~nsLoggingSink()
|
||||
{
|
||||
if (nsnull != mFile) {
|
||||
fclose(mFile);
|
||||
mFile = nsnull;
|
||||
if (0 != mOutput) {
|
||||
mOutput->flush();
|
||||
mOutput = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@ -143,27 +161,32 @@ nsLoggingSink::QueryInterface(const nsIID& aIID, void** aInstancePtr)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsresult
|
||||
nsLoggingSink::Init(FILE* fp)
|
||||
{
|
||||
if (nsnull == fp) {
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
}
|
||||
mFile = fp;
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::SetOutputStream(ostream& aStream) {
|
||||
mOutput = &aStream;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
void WriteTabs(ostream& anOutputStream,int aTabCount) {
|
||||
int tabs;
|
||||
for(tabs=0;tabs<aTabCount;tabs++)
|
||||
anOutputStream << " ";
|
||||
}
|
||||
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::WillBuildModel()
|
||||
{
|
||||
fputs("<begin>\n", mFile);
|
||||
WriteTabs(*mOutput,++mLevel);
|
||||
(*mOutput) << "<begin>" << endl;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::DidBuildModel(PRInt32 aQualityLevel)
|
||||
{
|
||||
fputs("</begin>\n", mFile);
|
||||
WriteTabs(*mOutput,mLevel--);
|
||||
(*mOutput) << "</begin>" << endl;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -188,7 +211,14 @@ nsLoggingSink::OpenContainer(const nsIParserNode& aNode)
|
||||
NS_IMETHODIMP
|
||||
nsLoggingSink::CloseContainer(const nsIParserNode& aNode)
|
||||
{
|
||||
return CloseNode("container");
|
||||
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
if ((nodeType >= eHTMLTag_unknown) &&
|
||||
(nodeType <= nsHTMLTag(NS_HTML_TAG_MAX))) {
|
||||
const char* tag = NS_EnumToTag(nodeType);
|
||||
return CloseNode(tag);
|
||||
}
|
||||
return CloseNode("???");
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
@ -208,9 +238,9 @@ nsLoggingSink::SetTitle(const nsString& aValue)
|
||||
{
|
||||
nsAutoString tmp;
|
||||
QuoteText(aValue, tmp);
|
||||
fputs("<title value=\"", mFile);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>", mFile);
|
||||
WriteTabs(*mOutput,++mLevel);
|
||||
(*mOutput) << "<title value=\"" << tmp << "\"/>" << endl;
|
||||
--mLevel;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -286,31 +316,32 @@ nsLoggingSink::CloseFrameset(const nsIParserNode& aNode)
|
||||
return CloseNode("frameset");
|
||||
}
|
||||
|
||||
|
||||
nsresult
|
||||
nsLoggingSink::OpenNode(const char* aKind, const nsIParserNode& aNode)
|
||||
{
|
||||
fprintf(mFile, "<open kind=\"%s\" ", aKind);
|
||||
WriteTabs(*mOutput,++mLevel);
|
||||
|
||||
(*mOutput) << "<open container=";
|
||||
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
if ((nodeType >= eHTMLTag_unknown) &&
|
||||
(nodeType <= nsHTMLTag(NS_HTML_TAG_MAX))) {
|
||||
const char* tag = NS_EnumToTag(nodeType);
|
||||
fprintf(mFile, "tag=\"%s\"", tag);
|
||||
(*mOutput) << "\"" << tag << "\"";
|
||||
}
|
||||
else {
|
||||
const nsString& text = aNode.GetText();
|
||||
fputs("tag=\"", mFile);
|
||||
fputs(text, mFile);
|
||||
fputs(" \"", mFile);
|
||||
(*mOutput) << "\"" << text << " \"";
|
||||
}
|
||||
|
||||
if (WillWriteAttributes(aNode)) {
|
||||
fputs(">\n", mFile);
|
||||
(*mOutput) << ">" << endl;
|
||||
WriteAttributes(aNode);
|
||||
fputs("</open>\n", mFile);
|
||||
(*mOutput) << "</open>" << endl;
|
||||
}
|
||||
else {
|
||||
fputs("/>\n", mFile);
|
||||
(*mOutput) << ">" << endl;
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
@ -319,7 +350,8 @@ nsLoggingSink::OpenNode(const char* aKind, const nsIParserNode& aNode)
|
||||
nsresult
|
||||
nsLoggingSink::CloseNode(const char* aKind)
|
||||
{
|
||||
fprintf(mFile, "<close kind=\"%s\"/>\n", aKind);
|
||||
WriteTabs(*mOutput,mLevel--);
|
||||
(*mOutput) << "<close container=\"" << aKind << "\">" << endl;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -332,10 +364,9 @@ nsLoggingSink::WriteAttributes(const nsIParserNode& aNode)
|
||||
for (PRInt32 i = 0; i < ac; i++) {
|
||||
const nsString& k = aNode.GetKeyAt(i);
|
||||
const nsString& v = aNode.GetValueAt(i);
|
||||
fputs(" <attr key=\"", mFile);
|
||||
fputs(k, mFile);
|
||||
fputs("\" value=\"", mFile);
|
||||
|
||||
(*mOutput) << " <attr key=\"" << k << "\" value=\"";
|
||||
|
||||
tmp.Truncate();
|
||||
tmp.Append(v);
|
||||
PRUnichar first = tmp.First();
|
||||
@ -351,18 +382,18 @@ nsLoggingSink::WriteAttributes(const nsIParserNode& aNode)
|
||||
}
|
||||
}
|
||||
QuoteText(tmp, tmp2);
|
||||
fputs(tmp2, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
|
||||
(*mOutput) << tmp2 << "\"/>" << endl;
|
||||
}
|
||||
|
||||
if (0 != strchr(gSkippedContentTags, aNode.GetNodeType())) {
|
||||
const nsString& content = aNode.GetSkippedContent();
|
||||
if (content.Length() > 0) {
|
||||
nsAutoString tmp;
|
||||
fputs(" <content value=\"", mFile);
|
||||
|
||||
QuoteText(content, tmp);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
(*mOutput) << " <content value=\"";
|
||||
(*mOutput) << tmp << "\"/>" << endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -388,18 +419,20 @@ nsLoggingSink::WillWriteAttributes(const nsIParserNode& aNode)
|
||||
nsresult
|
||||
nsLoggingSink::LeafNode(const nsIParserNode& aNode)
|
||||
{
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
WriteTabs(*mOutput,1+mLevel);
|
||||
nsHTMLTag nodeType = nsHTMLTag(aNode.GetNodeType());
|
||||
if ((nodeType >= eHTMLTag_unknown) &&
|
||||
(nodeType <= nsHTMLTag(NS_HTML_TAG_MAX))) {
|
||||
const char* tag = NS_EnumToTag(nodeType);
|
||||
fprintf(mFile, "<leaf tag=\"%s\"", tag);
|
||||
|
||||
(*mOutput) << "<leaf tag=\"" << tag << "\"";
|
||||
if (WillWriteAttributes(aNode)) {
|
||||
fputs(">\n", mFile);
|
||||
(*mOutput) << ">" << endl;
|
||||
WriteAttributes(aNode);
|
||||
fputs("</leaf>\n", mFile);
|
||||
(*mOutput) << "</leaf>" << endl;
|
||||
}
|
||||
else {
|
||||
fputs("/>\n", mFile);
|
||||
(*mOutput) << "/>" << endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
@ -409,13 +442,11 @@ nsLoggingSink::LeafNode(const nsIParserNode& aNode)
|
||||
case eHTMLTag_whitespace:
|
||||
case eHTMLTag_text:
|
||||
QuoteText(aNode.GetText(), tmp);
|
||||
fputs("<text value=\"", mFile);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
(*mOutput) << "<text value=\"" << tmp << "\"/>" << endl;
|
||||
break;
|
||||
|
||||
case eHTMLTag_newline:
|
||||
fputs("<newline/>\n", mFile);
|
||||
(*mOutput) << "<newline/>" << endl;
|
||||
break;
|
||||
|
||||
case eHTMLTag_entity:
|
||||
@ -425,9 +456,7 @@ nsLoggingSink::LeafNode(const nsIParserNode& aNode)
|
||||
if (pos >= 0) {
|
||||
tmp.Cut(pos, 1);
|
||||
}
|
||||
fputs("<entity value=\"", mFile);
|
||||
fputs(tmp, mFile);
|
||||
fputs("\"/>\n", mFile);
|
||||
(*mOutput) << "<entity value=\"" << tmp << "\"/>" << endl;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
@ -40,63 +40,162 @@ static NS_DEFINE_IID(kLoggingSinkCID, NS_LOGGING_SINK_IID);
|
||||
static NS_DEFINE_IID(kIParserIID, NS_IPARSER_IID);
|
||||
static NS_DEFINE_IID(kILoggingSinkIID, NS_ILOGGING_SINK_IID);
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
static void SetupRegistry()
|
||||
{
|
||||
NSRepository::RegisterFactory(kParserCID, PARSER_DLL, PR_FALSE, PR_FALSE);
|
||||
NSRepository::RegisterFactory(kLoggingSinkCID, PARSER_DLL,PR_FALSE,PR_FALSE);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
static const char* kWorkingDir = "s:/mozilla/htmlparser/tests/logparse";
|
||||
|
||||
nsresult GenerateBaselineFile(const char* aSourceFilename,const char* aBaselineFilename) {
|
||||
nsresult result=NS_OK;
|
||||
|
||||
if(aSourceFilename && aBaselineFilename) {
|
||||
|
||||
fstream theInputStream(aSourceFilename,ios::in | ios::nocreate);
|
||||
|
||||
// Create a parser
|
||||
nsIParser* parser;
|
||||
nsresult rv = NSRepository::CreateInstance(kParserCID,nsnull,kIParserIID,(void**)&parser);
|
||||
if (NS_OK != rv) {
|
||||
cout << "Unable to create a parser (" << rv << ")" <<endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Create a sink
|
||||
nsILoggingSink* sink;
|
||||
rv = NSRepository::CreateInstance(kLoggingSinkCID,nsnull,kILoggingSinkIID,(void**)&sink);
|
||||
if (NS_OK != rv) {
|
||||
cout << "Unable to create a sink (" << rv << ")" <<endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
{
|
||||
fstream theOutputStream(aBaselineFilename,ios::out);
|
||||
sink->SetOutputStream(theOutputStream);
|
||||
|
||||
// Parse the document, having the sink write the data to fp
|
||||
nsIDTD* dtd = nsnull;
|
||||
NS_NewNavHTMLDTD(&dtd);
|
||||
parser->RegisterDTD(dtd);
|
||||
parser->SetContentSink(sink);
|
||||
result = parser->Parse(theInputStream);
|
||||
NS_RELEASE(parser);
|
||||
NS_RELEASE(sink);
|
||||
}
|
||||
|
||||
}
|
||||
return (NS_OK == result) ? 0 : -1;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
PRBool CompareFiles(const char* aFilename1, const char* aFilename2) {
|
||||
PRBool result=PR_TRUE;
|
||||
|
||||
fstream theFirstStream(aFilename1,ios::in | ios::nocreate);
|
||||
fstream theSecondStream(aFilename2,ios::in | ios::nocreate);
|
||||
|
||||
PRBool done=PR_FALSE;
|
||||
char ch1,ch2;
|
||||
|
||||
while(!done) {
|
||||
theFirstStream >> ch1;
|
||||
theSecondStream >> ch2;
|
||||
if(ch1!=ch2) {
|
||||
result=PR_FALSE;
|
||||
break;
|
||||
}
|
||||
done=PRBool((theFirstStream.ipfx(1)==0) || (theSecondStream.ipfx(1)==0));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
static const char* kAppName = "logparse ";
|
||||
static const char* kOption1 = "Compare baseline file-set";
|
||||
static const char* kOption2 = "Generate baseline ";
|
||||
static const char* kResultMsg[2] = {" does not match baseline."," matches baseline."};
|
||||
|
||||
void ValidateBaselineFiles(const char* anIndexFilename) {
|
||||
|
||||
fstream theIndexFile(anIndexFilename,ios::in | ios::nocreate);
|
||||
char theFilename[500];
|
||||
char theBaselineFilename[500];
|
||||
PRBool done=PR_FALSE;
|
||||
|
||||
while(!done) {
|
||||
theIndexFile >> theFilename;
|
||||
theIndexFile >> theBaselineFilename;
|
||||
if(theFilename[0] && theBaselineFilename[0]) {
|
||||
char theTempFile[500];
|
||||
sprintf(theTempFile,theBaselineFilename);
|
||||
strcat(theTempFile,"x");
|
||||
if(0==GenerateBaselineFile(theFilename,theTempFile)) {
|
||||
PRBool matches=CompareFiles(theTempFile,theBaselineFilename);
|
||||
cout << theFilename << kResultMsg[matches] << endl;
|
||||
}
|
||||
}
|
||||
theFilename[0]=0;
|
||||
theBaselineFilename[0]=0;
|
||||
done=PRBool(theIndexFile.ipfx(1)==0);
|
||||
}
|
||||
|
||||
|
||||
// Now it's time to compare our output to the baseline...
|
||||
// if(!CompareFiles(aBaselineFilename,aBaselineFilename)){
|
||||
// cout << "File: \"" << aSourceFilename << "\" does not match baseline." << endl;
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (argc != 3) {
|
||||
fprintf(stderr, "Usage: logparse in out\n");
|
||||
if (argc < 2) {
|
||||
cout << "Usage: " << kAppName << " [options] [filename]" << endl;
|
||||
cout << " -c [filelist] " << kOption1 << endl;
|
||||
cout << " -g [in] [out] " << kOption2 << endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
fstream *in = new fstream();
|
||||
in->open(argv[1], ios::in | ios::nocreate);
|
||||
int result=0;
|
||||
|
||||
FILE* fp = fopen(argv[2], "wb");
|
||||
if (nsnull == fp) {
|
||||
fprintf(stderr, "can't create '%s'\n", argv[2]);
|
||||
return -1;
|
||||
}
|
||||
SetupRegistry();
|
||||
|
||||
SetupRegistry();
|
||||
if(0==strcmp("-c",argv[1])) {
|
||||
|
||||
// Create a parser
|
||||
nsIParser* parser;
|
||||
nsresult rv = NSRepository::CreateInstance(kParserCID,
|
||||
nsnull,
|
||||
kIParserIID,
|
||||
(void**)&parser);
|
||||
if (NS_OK != rv) {
|
||||
fprintf(stderr, "Unable to create a parser (%x)\n", rv);
|
||||
return -1;
|
||||
}
|
||||
if(argc>2) {
|
||||
cout << kOption1 << "..." << endl;
|
||||
|
||||
// Create a sink
|
||||
nsILoggingSink* sink;
|
||||
rv = NSRepository::CreateInstance(kLoggingSinkCID,
|
||||
nsnull,
|
||||
kILoggingSinkIID,
|
||||
(void**)&sink);
|
||||
if (NS_OK != rv) {
|
||||
fprintf(stderr, "Unable to create a sink (%x)\n", rv);
|
||||
return -1;
|
||||
}
|
||||
sink->Init(fp);
|
||||
//Open the master filelist, and read the filenames.
|
||||
//Each line contains a source filename and a baseline filename, separated by a space.
|
||||
ValidateBaselineFiles(argv[2]);
|
||||
}
|
||||
else {
|
||||
cout << kAppName << ": Filelist missing for -c option -- nothing to do." << endl;
|
||||
}
|
||||
|
||||
// Parse the document, having the sink write the data to fp
|
||||
nsIDTD* dtd = nsnull;
|
||||
NS_NewNavHTMLDTD(&dtd);
|
||||
parser->RegisterDTD(dtd);
|
||||
parser->SetContentSink(sink);
|
||||
PRInt32 status = parser->Parse(*in);
|
||||
NS_RELEASE(parser);
|
||||
NS_RELEASE(sink);
|
||||
|
||||
return (NS_OK == status) ? 0 : -1;
|
||||
}
|
||||
else if(0==strcmp("-g",argv[1])) {
|
||||
if(argc>3) {
|
||||
cout << kOption2 << argv[3] << " from " << argv[2] << "..." << endl;
|
||||
GenerateBaselineFile(argv[2],argv[3]);
|
||||
}
|
||||
else {
|
||||
cout << kAppName << ": Filename(s) missing for -g option -- nothing to do." << endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
cout << kAppName << ": Unknown options -- nothing to do." << endl;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user