Click here to Skip to main content
15,891,777 members
Articles / Programming Languages / Visual C++ 10.0

SIP Stack (1 of 3)

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
20 Aug 2012CPOL3 min read 30.1K   1.7K   4  
SIP Stack Implementation on the basis of RFC SIP 3261 Specification
#pragma once

#ifndef CSIPInfoParser_h
	#define CSIPInfoParser_h

	#include "ASIPParser.h"
	#include "CSIPParamListParser.h"

	namespace SIPParserFW
	{
		class SIP_PARSER_DLL_DECLARATION_SPECIFIER CSIPInfoParser : public ASIPParser 
		{
			friend class CPoolObject<CSIPInfoParser> ;

		protected:
			CSIPInfoParser() ;
			CSIPInfoParser( const CSIPInfoParser &SIPInfoParser ) ;
			
			virtual ~CSIPInfoParser() ;

			CSIPInfoParser& operator=( const CSIPInfoParser &SIPInfoParser ) ;

		public:
			void Release() ;
			ASIPParser* Copy() ;

			FW_RETURN_TYPE Parse( const std::string &strStringToParse ) ;
			std::string ToString() const ;

		public:
			void SetAbsoluteURI( const std::string &strAbsoluteURI ) ;
			const std::string& GetAbsoluteURI() const ;

			FW_RETURN_TYPE QuerySIPInfoParameters( CSIPParamListParser **pSIPInfoParameters ) ;

			CSIPParamListParser* GetSIPInfoParameters() ;

		public:
			static CSIPInfoParser* GetAvailable() ;

		private:
			void ReleaseParameters() ;

		private:	
			void ReleaseCSIPInfoParserData() ;
			void CopyCSIPInfoParserData( const CSIPInfoParser &SIPInfoParser ) ;

		private:
			std::string m_strAbsoluteURI ;
			CSIPParamListParser *m_pSIPInfoParameters ;
		} ;

		inline CSIPParamListParser* CSIPInfoParser::GetSIPInfoParameters()
		{
			return m_pSIPInfoParameters ;
		}

		inline void CSIPInfoParser::SetAbsoluteURI( const std::string &strAbsoluteURI )
		{
			m_strAbsoluteURI = strAbsoluteURI ;
		}

		inline const std::string& CSIPInfoParser::GetAbsoluteURI() const
		{
			return m_strAbsoluteURI ;
		}
		
	} // End namespace

#endif

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
India India
Hatim Haidry

VC++, Technical Architect

India

haidryhatim@gmail.com

Comments and Discussions