blob: 170c691ba31ae33494664cddd9da45284efc88dc [file] [log] [blame]
/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 1999 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xalan" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation and was
* originally based on software copyright (c) 1999, International
* Business Machines, Inc., http://www.ibm.com. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
#include <cassert>
#include <fstream>
#include <iostream>
#include <strstream>
#if !defined(NDEBUG) && defined(_MSC_VER)
#include <crtdbg.h>
#endif
//These came from the debug test.
#include <cstdio>
#include <ctime>
#include <string>
#include <vector>
#include <util/PlatformUtils.hpp>
#include <PlatformSupport/DOMStringHelper.hpp>
#include <PlatformSupport/XalanFileOutputStream.hpp>
#include <PlatformSupport/XalanOutputStreamPrintWriter.hpp>
#include <XalanSourceTree/XalanSourceTreeDOMSupport.hpp>
#include <XalanSourceTree/XalanSourceTreeParserLiaison.hpp>
#include <XalanTransformer/XalanTransformer.hpp>
#include <XPath/XObjectFactoryDefault.hpp>
#include <XPath/XPathFactoryDefault.hpp>
#include <XSLT/StylesheetConstructionContextDefault.hpp>
#include <XSLT/StylesheetExecutionContextDefault.hpp>
#include <XSLT/StylesheetRoot.hpp>
#include <XSLT/XSLTEngineImpl.hpp>
#include <XSLT/XSLTInit.hpp>
#include <XSLT/XSLTInputSource.hpp>
#include <XSLT/XSLTProcessorEnvSupportDefault.hpp>
#include <XSLT/XSLTResultTarget.hpp>
#include <XMLFileReporter.hpp>
#include <FileUtility.hpp>
//This is here for the threads.
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winbase.h>
#define THREADFUNCTIONRETURN DWORD WINAPI
#if !defined(XALAN_NO_NAMESPACES)
using std::cerr;
using std::cout;
using std::cin;
using std::endl;
using std::ifstream;
using std::ios_base;
using std::ostrstream;
using std::string;
#endif
// This is here for memory leak testing.
#if defined(_DEBUG)
#include <crtdbg.h>
#endif
const char* const excludeStylesheets[] =
{
"attribset15.xml",
"entref08.xml",
"entref10.xml",
"extend01.xml",
0
};
const char* const xslStylesheets[] =
{
"attribset15.xml",
"entref08.xml",
"entref10.xml",
"extend01.xml",
0
};
inline bool
checkForExclusion(XalanDOMString currentFile)
{
for (int i=0; excludeStylesheets[i] != 0; i++)
{ if (equals(currentFile, XalanDOMString(excludeStylesheets[i])))
return true;
}
return false;
}
void
outputMessage(int iter)
{
cout << "\n" << "Starting Iteration: " << iter << '\0';
}
void
getParams(int argc,
const char* argv[])
{
if (argc != 1)
{
cerr << "Usage: ThreadTest" << endl;
exit(1);
}
}
#if defined(XALAN_NO_NAMESPACES)
typedef vector<XalanDOMString> FileNameVectorType;
#else
typedef std::vector<XalanDOMString> FileNameVectorType;
#endif
int
main(
int argc,
const char* argv[])
{
#if !defined(NDEBUG) && defined(_MSC_VER)
_CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
#endif
// Defined root for performance directory. Based on PD's machine.
const XalanDOMString confDir(XALAN_STATIC_UCODE_STRING("d:\\xslt\\xsl-test\\conf\\"));
const XalanDOMString outDir(XALAN_STATIC_UCODE_STRING("d:\\xslt\\xsl-test\\cplus-mem\\"));
FileUtility f;
FileNameVectorType dirs, files;
// Get the list of Directories that are below perf
dirs = f.getDirectoryNames(confDir);
XMLFileReporter logFile("cpp.xml");
logFile.logTestFileInit("Memory Testing - Memory leaks detected during ConformanceTests. ");
getParams(argc, argv);
try
{
// Call the static initializers...
//XMLPlatformUtils::Initialize();
XalanTransformer::initialize();
{
//XSLTInit theInit;
XalanTransformer transformEngine;
const XalanDOMString theXSLSuffix(".xsl");
const XalanDOMString theXMLSuffix(".xml");
const XalanDOMString pathSep(XALAN_STATIC_UCODE_STRING("\\"));
// const XalanDOMString outputSuffix(".out");
for(FileNameVectorType::size_type j = 0; j < dirs.size(); j++)
{
files = f.getTestFileNames(confDir, dirs[j]);
for(FileNameVectorType::size_type i = 0; i < files.size(); i++)
{ /*
if (skip)
{
if (checkForExclusion(files[i]))
{
continue;
}
} */
// Output file name to result log.
//logFile.logTestCaseInit(files[i]);
cout << files[i] << endl;
const XalanDOMString theXMLFile= confDir + dirs[j] + pathSep + files[i];
const XalanDOMString outFile = outDir + dirs[j] + pathSep + files[i];
const XalanDOMString theXSLFile = f.GenerateFileName(theXMLFile,"xsl");
const XalanDOMString theOutputFile = f.GenerateFileName(outFile, "out");
// Do a total end to end transform with no pre parsing of either xsl or xml files.
XSLTResultTarget theResultTarget(theOutputFile);
const XSLTInputSource xslInputSource(c_wstr(theXSLFile));
const XSLTInputSource xmlInputSource(c_wstr(theXMLFile));
int theResult = 0;
/*
const etoetran = eTOeTransform(xmlInputSource,
xslInputSource,
theResultTarget,
csConstructionContext,
psExecutionContext,
csProcessor); */
theResult = transformEngine.transform(xmlInputSource, xslInputSource, theResultTarget);
}
}
}
XalanTransformer::terminate();
}
catch(...)
{
cerr << "Exception caught!!!" << endl << endl;
}
return 0;
}