summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/Config_Handlers/TPD_Handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/DAnCE/Config_Handlers/TPD_Handler.cpp')
-rw-r--r--TAO/CIAO/DAnCE/Config_Handlers/TPD_Handler.cpp88
1 files changed, 0 insertions, 88 deletions
diff --git a/TAO/CIAO/DAnCE/Config_Handlers/TPD_Handler.cpp b/TAO/CIAO/DAnCE/Config_Handlers/TPD_Handler.cpp
deleted file mode 100644
index d145106bae5..00000000000
--- a/TAO/CIAO/DAnCE/Config_Handlers/TPD_Handler.cpp
+++ /dev/null
@@ -1,88 +0,0 @@
-// $Id$
-
-#include "tao/Exception.h"
-#include "ace/Log_Msg.h"
-#include "Property_Handler.h"
-#include "Requirement_Handler.h"
-#include "CPR_Handler.h"
-#include "CompPkgDesc_Handler.h"
-#include "TPD_Handler.h"
-#include "Process_Element.h"
-#include "Utils.h"
-
-BEGIN_DEPLOYMENT_NAMESPACE
-
-/// handle the package configuration and populate it
-ACE_TString TPD_Handler::process_TopLevelPackageDescription()
-{
- for (DOMNode* node = this->iter_->nextNode ();
- node != 0;
- node = this->iter_->nextNode ())
- {
- XStr node_name (node->getNodeName());
- if (node_name == XStr
- (ACE_TEXT ("Deployment:TopLevelPackageDescription")))
- {
- }
- else if (node_name == XStr(ACE_TEXT ("package")))
- {
- if (node->hasAttributes ())
- {
- DOMNamedNodeMap* named_node_map = node->getAttributes ();
-
- // the number of attributes
- int length = named_node_map->getLength();
- // iterate the attributes
- for (int j = 0; j < length; ++j)
- {
- DOMNode* attribute_node = named_node_map->item (j);
- XStr strattrnodename (attribute_node->getNodeName ());
-
- char * temp =
- XMLString::transcode (attribute_node->getNodeValue ());
- ACE_TString aceattrnodevalue = temp;
- XMLString::release (&temp);
-
- // if href is given find out the referenced position
- // and process the element
- if (strattrnodename == XStr (ACE_TEXT ("href")))
- {
- XMLURL xml_url (aceattrnodevalue.c_str ());
- XMLURL result (aceattrnodevalue.c_str ());
- ACE_TString url_string = aceattrnodevalue.c_str ();
-
- char * temp =
- XMLString::transcode ( doc_->getDocumentURI ());
- ACE_TString doc_path = temp;
- XMLString::release (&temp);
-
- XMLCh * relative_path =
- XMLString::transcode (doc_path.c_str ());
- result.makeRelativeTo (relative_path);
- XMLString::release (&relative_path);
-
- temp = XMLString::transcode (result.getURLText ());
- ACE_TString final_url = temp;
- XMLString::release (&temp);
-
- if (xml_url.isRelative ())
- {
- return final_url;
- }
- else
- {
- return url_string;
- }
- }
- }
- }
- }
- else
- {
- break;
- }
- }
- ACE_THROW (CORBA::INTERNAL());
-}
-
-END_DEPLOYMENT_NAMESPACE