All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xmpp.packet.IQ Maven / Gradle / Ivy

Go to download

Tinder is a Java based XMPP library, providing an implementation for XMPP stanzas and components. Tinders origins lie in code that's shared between Jive Software's Openfire and Whack implementations. The implementation that's provided in Tinder hasn't been written again from scratch. Instead, code has been moved from the original projects into Tinder, preserving al of the existing features and functionality. Most of the code that's now in Tinder is based on the org.xmpp package implementation that previously existed in Openfire and Whack. This is the code that defines classes such as Packet, JID, IQ, Component and their extensions. Additionally, some multi-purpose code (such as the DataForm and Result Set Management implementations have been moved to Tinder as well.

There is a newer version: 1.3.0
Show newest version
package org.xmpp.packet;

import org.dom4j.Element;
import org.dom4j.QName;

import java.lang.reflect.Constructor;
import java.util.Iterator;
import java.util.List;
import java.util.Random;

/**
 * IQ (Info/Query) packet. IQ packets are used to get and set information
 * on the server, including authentication, roster operations, and creating
 * accounts. Each IQ packet has a specific type that indicates what type of action
 * is being taken: "get", "set", "result", or "error".

* * IQ packets can contain a single child element that exists in a extended XML * namespace. */ public class IQ extends Packet { // Sequence and random number generator used for creating unique ID's. private static int sequence = 0; private static Random random = new Random(); /** * Constructs a new IQ with an automatically generated ID and a type * of {@link Type#get IQ.Type.get}. */ public IQ() { this.element = docFactory.createDocument().addElement("iq"); String id = String.valueOf(random.nextInt(1000) + "-" + sequence++); setType(Type.get); setID(id); } /** * Constructs a new IQ using the specified type. A packet ID will * be automatically generated. * * @param type the IQ type. */ public IQ(Type type) { this.element = docFactory.createDocument().addElement("iq"); setType(type); String id = String.valueOf(random.nextInt(1000) + "-" + sequence++); setID(id); } /** * Constructs a new IQ using the specified type and ID. * * @param ID the packet ID of the IQ. * @param type the IQ type. */ public IQ(Type type, String ID) { this.element = docFactory.createDocument().addElement("iq"); setType(type); setID(ID); } /** * Constructs a new IQ using an existing Element. This is useful * for parsing incoming IQ Elements into IQ objects. * * @param element the IQ Element. */ public IQ(Element element) { super(element); } /** * Constructs a new IQ using an existing Element. This is useful * for parsing incoming IQ Elements into IQ objects. Stringprep validation * on the TO address can be disabled. The FROM address will not be validated since the * server is the one that sets that value. * * @param element the IQ Element. * @param skipValidation true if stringprep should not be applied to the TO address. */ public IQ(Element element, boolean skipValidation) { super(element, skipValidation); } /** * Constructs a new IQ that is a copy of an existing IQ. * * @param iq the iq packet. * @see #createCopy() */ private IQ(IQ iq) { Element elementCopy = iq.element.createCopy(); docFactory.createDocument().add(elementCopy); this.element = elementCopy; // Copy cached JIDs (for performance reasons) this.toJID = iq.toJID; this.fromJID = iq.fromJID; } /** * Returns the type of this IQ. * * @return the IQ type. * @see Type */ public Type getType() { String type = element.attributeValue("type"); if (type != null) { return Type.valueOf(type); } else { return null; } } /** * Sets the type of this IQ. * * @param type the IQ type. * @see Type */ public void setType(Type type) { element.addAttribute("type", type==null?null:type.toString()); } /** * Convenience routine to indicate if this is a request stanza. (get or set) * * @return True or false if this is a request stanza */ public boolean isRequest() { Type type = getType(); return (type != null && (type.equals(Type.get) || type.equals(Type.set))); } /** * Convenience routine to indicate if this is a response stanza. (result or error) * * @return True or false if this is a response stanza */ public boolean isResponse() { Type type = getType(); return (type != null && (type.equals(Type.result) || type.equals(Type.error))); } /** * Returns the child element of this IQ. IQ packets may have a single child * element in an extended namespace. This is a convenience method to * avoid manipulating the underlying packet's Element instance directly.

* * An IQ child element in extended namespaces is used to extend the features * of XMPP. Although any valid XML can be included in a child element * in an extended namespace, many common features have been standardized * as Jabber Enhancement Proposals * (JEPs). * * @return the child element. */ @SuppressWarnings("unchecked") public Element getChildElement() { List elements = element.elements(); if (elements.isEmpty()) { return null; } else { // Search for a child element that is in a different namespace. for (int i=0; i * * A sample use of this method might look like the following: *

     * IQ iq = new IQ("time_1");
     * iq.setTo("[email protected]");
     * iq.setType(IQ.Type.GET);
     * iq.setChildElement(docFactory.createElement("query", "jabber:iq:time"));

* * An IQ child element in extended namespaces is used to extend the features * of XMPP. Although any valid XML can be included in a child element * in an extended namespace, many common features have been standardized * as Jabber Enhancement Proposals * (JEPs). * * @param childElement the child element. */ @SuppressWarnings("unchecked") public void setChildElement(Element childElement) { for (Iterator i=element.elementIterator(); i.hasNext(); ) { element.remove(i.next()); } element.add(childElement); } /** * Sets the child element of this IQ by constructing a new Element with the * given name and namespace. The newly created child element is returned. * IQ packets may have a single child element in an extended namespace. * This method is a convenience method to avoid manipulating the underlying * packet's Element instance directly.

* * In some cases, additional custom sub-elements must be added to an IQ child * element (called packet extensions). For example, when adding a data form to * an IQ response. See {@link #addExtension(PacketExtension)}.

* * A sample use of this method might look like the following: *

     * IQ iq = new IQ("time_1");
     * iq.setTo("[email protected]");
     * iq.setType(IQ.Type.GET);
     * iq.setChildElement("query", "jabber:iq:time");
* * @param name the child element name. * @param namespace the child element namespace. * @return the newly created child element. */ @SuppressWarnings("unchecked") public Element setChildElement(String name, String namespace) { for (Iterator i=element.elementIterator(); i.hasNext(); ) { element.remove(i.next()); } return element.addElement(name, namespace); } /** * Adds the element contained in the PacketExtension to the child element of the IQ * packet. IQ packets, unlike the other packet types, have a unique child element that * holds the packet extensions. If an extension is added to an IQ packet that does * not have a child element then an IllegalStateException will be thrown.

* * It is important that this is the first and last time the element contained in * PacketExtension is added to another Packet. Otherwise, a runtime error will be * thrown when trying to add the PacketExtension's element to the Packet's element. * Future modifications to the PacketExtension will be reflected in this Packet.

* * Note: packet extensions on IQ packets are only for use in specialized situations. * In most cases, you should only need to set the child element of the IQ. * * @param extension the PacketExtension whose element will be added to this Packet's element. */ public void addExtension(PacketExtension extension) { Element childElement = getChildElement(); if (childElement == null) { throw new IllegalStateException("Cannot add packet extension when child element is null"); } // Add the extension to the child element childElement.add(extension.getElement()); } /** * Returns a {@link PacketExtension} on the first element found in this packet's * child element for the specified name and namespace or null if * none was found. If the IQ packet does not have a child element then null * will be returned.

* * Note: packet extensions on IQ packets are only for use in specialized situations. * In most cases, you should only need to set the child element of the IQ. * * @param name the child element name. * @param namespace the child element namespace. * @return a PacketExtension on the first element found in this packet for the specified * name and namespace or null if none was found. */ @SuppressWarnings("unchecked") public PacketExtension getExtension(String name, String namespace) { Element childElement = getChildElement(); if (childElement == null) { return null; } // Search for extensions in the child element List extensions = childElement.elements(QName.get(name, namespace)); if (!extensions.isEmpty()) { Class extensionClass = PacketExtension.getExtensionClass(name, namespace); if (extensionClass != null) { try { Constructor constructor = extensionClass.getDeclaredConstructor(new Class[]{ Element.class}); return constructor.newInstance(new Object[]{ extensions.get(0)}); } catch (Exception e) { } } } return null; } /** * Deletes the first element whose element name and namespace matches the specified * element name and namespace in this packet's child element. If the * IQ packet does not have a child element then this method does nothing and returns * false.

* * Notice that this method may remove any child element that matches the specified * element name and namespace even if that element was not added to the Packet using a * {@link PacketExtension}.

* * Note: packet extensions on IQ packets are only for use in specialized situations. * In most cases, you should only need to set the child element of the IQ. * * @param name the child element name. * @param namespace the child element namespace. * @return true if a child element was removed. */ @SuppressWarnings("unchecked") public boolean deleteExtension(String name, String namespace) { Element childElement = getChildElement(); if (childElement == null) { return false; } // Delete extensions in the child element List extensions = childElement.elements(QName.get(name, namespace)); if (!extensions.isEmpty()) { childElement.remove(extensions.get(0)); return true; } return false; } /** * Returns a deep copy of this IQ. * * @return a deep copy of this IQ. */ public IQ createCopy() { return new IQ(this); } /** * Convenience method to create a new {@link Type#result IQ.Type.result} IQ based * on a {@link Type#get IQ.Type.get} or {@link Type#set IQ.Type.set} IQ. The new * packet will be initialized with:

    * *
  • The sender set to the recipient of the originating IQ. *
  • The recipient set to the sender of the originating IQ. *
  • The type set to {@link Type#result IQ.Type.result}. *
  • The id set to the id of the originating IQ. *
* * @param iq the {@link Type#get IQ.Type.get} or {@link Type#set IQ.Type.set} IQ packet. * @throws IllegalArgumentException if the IQ packet does not have a type of * {@link Type#get IQ.Type.get} or {@link Type#set IQ.Type.set}. * @return a new {@link Type#result IQ.Type.result} IQ based on the originating IQ. */ public static IQ createResultIQ(IQ iq) { if (!(iq.getType() == Type.get || iq.getType() == Type.set)) { throw new IllegalArgumentException( "IQ must be of type 'set' or 'get'. Original IQ: " + iq.toXML()); } IQ result = new IQ(Type.result, iq.getID()); result.setFrom(iq.getTo()); result.setTo(iq.getFrom()); return result; } /** * Type-safe enumeration to represent the type of the IQ packet. The types are: * *
    *
  • IQ.Type.get -- the IQ is a request for information or requirements. *
  • IQ.Type.set -- the IQ provides required data, sets new values, or * replaces existing values. *
  • IQ.Type.result -- the IQ is a response to a successful get or set request. *
  • IQ.Type.error -- an error has occurred regarding processing or delivery of a * previously-sent get or set. *
* * If {@link #get IQ.Type.get} or {@link #set IQ.Type.set} is received the response * must be {@link #result IQ.Type.result} or {@link #error IQ.Type.error}. The id of the * originating {@link #get IQ.Type.get} of {@link #set IQ.Type.set} IQ must be preserved * when sending {@link #result IQ.Type.result} or {@link #error IQ.Type.error}. */ public enum Type { /** * The IQ is a request for information or requirements. */ get, /** * The IQ provides required data, sets new values, or * replaces existing values. */ set, /** * The IQ is a response to a successful get or set request. */ result, /** * An error has occurred regarding processing or delivery of a * previously-sent get or set. */ error; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy