summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/XML_Helpers/Svcconf_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/XML_Helpers/Svcconf_Handler.h')
-rw-r--r--TAO/CIAO/tools/XML_Helpers/Svcconf_Handler.h296
1 files changed, 0 insertions, 296 deletions
diff --git a/TAO/CIAO/tools/XML_Helpers/Svcconf_Handler.h b/TAO/CIAO/tools/XML_Helpers/Svcconf_Handler.h
deleted file mode 100644
index 76932aadf00..00000000000
--- a/TAO/CIAO/tools/XML_Helpers/Svcconf_Handler.h
+++ /dev/null
@@ -1,296 +0,0 @@
-// $Id$
-
-//=============================================================================
-/**
- * @file Svcconf_Handler.h
- *
- * $Id$
- *
- * @author Nanbor Wang <nanbor@cs.wustl.edu>
- */
-//=============================================================================
-
-#ifndef SVCCONF_HANDLER_H
-#define SVCCONF_HANDLER_H
-
-#include "Cascadable_DocHandler.h"
-
-class ACE_Parsed_Info
-{
-public:
- typedef enum {
- MODULE_TYPE,
- SERVICE_OBJECT_TYPE,
- STREAM_TYPE,
- INVALID_TYPE
- } Service_Type;
-
- ACE_Parsed_Info ();
- ~ACE_Parsed_Info ();
-
- /**
- * Set/get name of a parsed entity.
- */
- int name (const ACEXML_Char *n);
- const ACEXML_Char *name (void);
-
- /**
- * Set/get type of a dynamic node.
- */
- int service_type (Service_Type type);
- Service_Type service_type (void);
-
- /**
- * Set/Get active status.
- */
- int active (int a);
- int active (void);
-
- /**
- * Set/get initializer path.
- */
- int path (const ACEXML_Char *n);
- const ACEXML_Char *path (void);
-
- /**
- * Set/get initializer init function.
- */
- int init_func (const ACEXML_Char *n);
- const ACEXML_Char *init_func (void);
-
- /**
- * Set/get initializer init parameter.
- */
- int init_params (const ACEXML_Char *n);
- const ACEXML_Char *init_params (void);
-
- /**
- * Reset Parsed_Info.
- */
- void reset (void);
-
-protected:
- ACEXML_Char *name_;
- Service_Type service_type_;
- int active_;
- ACEXML_Char *path_;
- ACEXML_Char *init_func_;
- ACEXML_Char *init_params_;
-};
-
-/**
- * @class Svcconf_Handler
- *
- * @brief Svcconf_Handler is an example SAX event handler.
- *
- * This SAX event handler try to regenerate the XML document it
- * reads with correct indentation.
- */
-class Svcconf_Handler : public CIAO::XMLHelpers::Cascadable_DocHandler
-{
-
-
-
-
-public:
- /**
- * Default constructor.
- */
- Svcconf_Handler (ACEXML_XMLReader *parser,
- CIAO::XMLHelpers::Cascadable_DocHandler *parent,
- const ACEXML_Char *namespaceURI,
- const ACEXML_Char *localName,
- const ACEXML_Char *qName,
- ACEXML_Attributes *atts
- ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException)) ;
-
- /*
- * Default destructor.
- */
- virtual ~Svcconf_Handler (void);
-
- // Methods inherit from ACEXML_ContentHandler.
-
- /*
- * Receive notification of character data.
- */
- virtual void characters (const ACEXML_Char *ch,
- int start,
- int length ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of the end of a document.
- */
- virtual void endDocument (ACEXML_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of the end of an element.
- */
- virtual void endElement (const ACEXML_Char *namespaceURI,
- const ACEXML_Char *localName,
- const ACEXML_Char *qName ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * End the scope of a prefix-URI mapping.
- */
- virtual void endPrefixMapping (const ACEXML_Char *prefix ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of ignorable whitespace in element content.
- */
- virtual void ignorableWhitespace (const ACEXML_Char *ch,
- int start,
- int length ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of a processing instruction.
- */
- virtual void processingInstruction (const ACEXML_Char *target,
- const ACEXML_Char *data ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive an object for locating the origin of SAX document events.
- */
- virtual void setDocumentLocator (ACEXML_Locator *) ;
-
- /*
- * Receive notification of a skipped entity.
- */
- virtual void skippedEntity (const ACEXML_Char *name ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of the beginning of a document.
- */
- virtual void startDocument (ACEXML_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of the beginning of an element.
- */
- virtual void startElement (const ACEXML_Char *namespaceURI,
- const ACEXML_Char *localName,
- const ACEXML_Char *qName,
- ACEXML_Attributes *atts ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Begin the scope of a prefix-URI Namespace mapping.
- */
- virtual void startPrefixMapping (const ACEXML_Char *prefix,
- const ACEXML_Char *uri ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- // *** Methods inherit from ACEXML_DTDHandler.
-
- /*
- * Receive notification of a notation declaration event.
- */
- virtual void notationDecl (const ACEXML_Char *name,
- const ACEXML_Char *publicId,
- const ACEXML_Char *systemId ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of an unparsed entity declaration event.
- */
- virtual void unparsedEntityDecl (const ACEXML_Char *name,
- const ACEXML_Char *publicId,
- const ACEXML_Char *systemId,
- const ACEXML_Char *notationName ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- // Methods inherit from ACEXML_EnitityResolver.
-
- /*
- * Allow the application to resolve external entities.
- */
- virtual ACEXML_InputSource *resolveEntity (const ACEXML_Char *publicId,
- const ACEXML_Char *systemId ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- // Methods inherit from ACEXML_ErrorHandler.
-
- /*
- * Receive notification of a recoverable error.
- */
- virtual void error (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of a non-recoverable error.
- */
- virtual void fatalError (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
- /*
- * Receive notification of a warning.
- */
- virtual void warning (ACEXML_SAXParseException &exception ACEXML_ENV_ARG_DECL)
- ACE_THROW_SPEC ((ACEXML_SAXException))
- ;
-
-protected:
- /**
- * Get the only attribute in <stream> or <streamdef>.
- */
- int get_stream_id (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL);
-
- /**
- * Get the only attribute in <resume>, <suspend>, <remove>
- */
- int get_id (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL);
-
- /**
- * Get the dynamic tag attributes.
- */
- int get_dynamic_attrs (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL);
-
- /**
- * Get the initializer tag attributes.
- */
- int get_initializer_attrs (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL);
-
- /**
- * Get the static tag attributes.
- */
- int get_static_attrs (ACEXML_Attributes *alist ACEXML_ENV_ARG_DECL);
-
-private:
- /// We are parsing a stream definition
- int in_stream_def_;
-
- /// We are defining a steam module
- int in_module_;
-
- ACE_Parsed_Info parsed_info_;
-
- ACE_Parsed_Info stream_info_;
-};
-
-#if defined (__ACE_INLINE__)
-# include "Svcconf_Handler.i"
-#endif /* __ACE_INLINE__ */
-#endif /* SVCCONF_HANDLER_H */