mirror of
https://github.com/cregit/cregit.git
synced 2026-03-02 18:23:32 +01:00
91 lines
3.4 KiB
C++
91 lines
3.4 KiB
C++
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
* (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Includes
|
|
// ---------------------------------------------------------------------------
|
|
#include <stack>
|
|
#include <string>
|
|
#include <xercesc/sax2/Attributes.hpp>
|
|
#include <xercesc/sax2/DefaultHandler.hpp>
|
|
|
|
XERCES_CPP_NAMESPACE_USE
|
|
|
|
class srcml2tokenHandlers : public DefaultHandler
|
|
{
|
|
public:
|
|
// -----------------------------------------------------------------------
|
|
// Constructors and Destructor
|
|
// -----------------------------------------------------------------------
|
|
srcml2tokenHandlers();
|
|
~srcml2tokenHandlers();
|
|
|
|
|
|
// Handlers for the SAX ContentHandler interface
|
|
// -----------------------------------------------------------------------
|
|
void startElement(const XMLCh* const uri, const XMLCh* const localname, const XMLCh* const qname, const Attributes& attrs);
|
|
void characters(const XMLCh* const chars, const XMLSize_t length);
|
|
void ignorableWhitespace(const XMLCh* const chars, const XMLSize_t length);
|
|
void startDocument();
|
|
void endElement (const XMLCh *const uri, const XMLCh *const localname, const XMLCh *const qname);
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
// Handlers for the SAX ErrorHandler interface
|
|
// -----------------------------------------------------------------------
|
|
void warning(const SAXParseException& exc);
|
|
void error(const SAXParseException& exc);
|
|
void fatalError(const SAXParseException& exc);
|
|
void resetErrors();
|
|
std::string getPosition();
|
|
std::string newGetPosition();
|
|
void setPosition(const std::string newPos);
|
|
void setPosition(const Attributes& attrs);
|
|
std::string position(const Attributes& attrs);
|
|
void advance(std::string st);
|
|
|
|
private:
|
|
// -----------------------------------------------------------------------
|
|
// Private data members
|
|
//
|
|
// fAttrCount
|
|
// fCharacterCount
|
|
// fElementCount
|
|
// fSpaceCount
|
|
// These are just counters that are run upwards based on the input
|
|
// from the document handlers.
|
|
//
|
|
// fSawErrors
|
|
// This is set by the error handlers, and is queryable later to
|
|
// see if any errors occured.
|
|
// -----------------------------------------------------------------------
|
|
bool fSawErrors;
|
|
int depth;
|
|
int col {1};
|
|
int row {1};
|
|
int all_size {0};
|
|
std::string pos;
|
|
std::string currentContent;
|
|
std::string currentContentOriginal;
|
|
std::string currentPos;
|
|
std::stack<std::string> mystack;
|
|
std::stack<int> toOutputStack;
|
|
std::stack<std::string> fStack;
|
|
};
|