blob: fcd5569269397225a44dd0489b5375e9dddea3a1 [file] [log] [blame]
/*
* 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.
*/
package org.apache.ode.bpel.engine;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import javax.xml.namespace.QName;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import org.w3c.dom.Document;
import org.apache.ode.bpel.dao.MessageDAO;
import org.apache.ode.bpel.iapi.Message;
import org.apache.ode.utils.DOMUtils;
public class MessageImpl implements Message {
MessageDAO _dao;
public MessageImpl(MessageDAO message) {
if (message == null) throw new NullPointerException("null message!");
_dao = message;
}
public Element getPart(String partName) {
Element message = getMessage();
NodeList eltList = message.getElementsByTagName(partName);
if (eltList.getLength() == 0) return null;
else return (Element) eltList.item(0);
}
public void setPart(String partName, Element content) {
Element message = getMessage();
if (message == null) {
Document doc = DOMUtils.newDocument();
message = doc.createElement("message");
doc.appendChild(message);
}
message.appendChild(message.getOwnerDocument().importNode(content, true));
setMessage(message);
}
public Element getHeaderPart(String partName) {
Element header = _dao.getHeader();
if (header == null) return null;
NodeList eltList = header.getElementsByTagName(partName);
if (eltList.getLength() == 0) return null;
else return (Element) eltList.item(0);
}
public void setHeaderPart(String name, Element content) {
Element header = _dao.getHeader();
if (header == null) {
Document doc = DOMUtils.newDocument();
header = doc.createElement("header");
doc.appendChild(header);
}
Element part = header.getOwnerDocument().createElement(name);
header.appendChild(part);
part.appendChild(header.getOwnerDocument().importNode(content, true));
_dao.setHeader(header);
}
public void setHeaderPart(String name, String content) {
Element header = _dao.getHeader();
if (header == null) {
Document doc = DOMUtils.newDocument();
header = doc.createElement("header");
doc.appendChild(header);
}
Element part = header.getOwnerDocument().createElement(name);
header.appendChild(part);
part.setTextContent(content);
_dao.setHeader(header);
}
public void setMessage(Element msg) {
_dao.setData(msg);
}
public Element getMessage() {
return _dao.getData();
}
public QName getType() {
return _dao.getType();
}
public List<String> getParts() {
ArrayList<String> parts = new ArrayList<String>();
Element message = getMessage();
NodeList nodeList = message.getChildNodes();
for (int m = 0; m < nodeList.getLength(); m++) {
Node node = nodeList.item(m);
if (node.getNodeType() == Node.ELEMENT_NODE)
parts.add(node.getLocalName());
}
return parts;
}
public Map<String, Node> getHeaderParts() {
HashMap<String,Node> l = new HashMap<String,Node>();
Element header = _dao.getHeader();
if (header != null) {
NodeList children = header.getChildNodes();
for (int m = 0; m < children.getLength(); m++)
if (children.item(m).getNodeType() == Node.ELEMENT_NODE) {
Element part = (Element) children.item(m);
Node node = DOMUtils.findChildByType(part, Node.ELEMENT_NODE);
if (node == null) node = DOMUtils.findChildByType(part, Node.TEXT_NODE);
l.put(part.getLocalName(), node);
}
}
return l;
}
}