Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C++

Fast tokenizer

Rate me:
Please Sign up or sign in to vote.
4.71/5 (11 votes)
5 Sep 20016 min read 79.7K   1.4K   44  
Fast tokenizer for C++ - like 'lexx'
// cooLexxerTokenRule.h: interface for the cooLexxerTokenRule class.
//
//////////////////////////////////////////////////////////////////////

/*********************************************************************
Class:      cooLexxerTokenRule
Author:     Alexander Berthold
Copyright:  Alexander Berthold
Date:       19.4.2001
Purpose:    Base class for rules for the lexical analyzer 'lexxer'
*********************************************************************/

#if !defined(AFX_COOLEXXERTOKENRULE_H__CE5A4B37_A2E3_44BD_BFB7_099D65CD9B7F__INCLUDED_)
#define AFX_COOLEXXERTOKENRULE_H__CE5A4B37_A2E3_44BD_BFB7_099D65CD9B7F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class cooLexxerContext;

class cooLexxerTokenRule : 
	public ctkFlagsMixin<ooltr_flags>,
	public ctkCheckValid
{
// Construction/Destruction
protected:
	// lpszToken==NULL: Not a 'character' - Rule
	// lpszToken!=NULL: Character - Rule
	cooLexxerTokenRule(int nIDValue, ooltr_flags ltrf, LPCTSTR lpszToken);

public: 
	virtual ~cooLexxerTokenRule();

// Attributes
private:
	std::tstring		m_strTokenString;
    int                 m_nIDValue;

// Operations
public:
    int                 nGetIDValue() const
                        { return m_nIDValue; };

	virtual	bool		fCheckValid() const
						{ return true; };

	virtual std::tstring strGetTokenString() const;

	virtual bool		fDoesApply(	const cooLexxerContext *ppcContext, TCHAR tcChar, bool *pfComplete, 
									int nStartPos, int nCurPos) const = 0;
	virtual void		vApplied( cooLexxerContext *ppcContext, TCHAR tcChar, bool fComplete, 
								  int nStartPos, int nCurPos) const = 0;
	virtual bool		fGetResultString(const cooLexxerContext *ppcContext, std::tstring& strResult) const = 0;
};

#endif // !defined(AFX_COOLEXXERTOKENRULE_H__CE5A4B37_A2E3_44BD_BFB7_099D65CD9B7F__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions