mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-12-02 19:22:07 +01:00
b907d606d9
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13459 b35dd754-fafc-0310-a699-88a17e54d16e
136 lines
3.7 KiB
Java
136 lines
3.7 KiB
Java
/**
|
|
* $RCSfile$
|
|
* $Revision$
|
|
* $Date$
|
|
*
|
|
* Copyright 2003-2007 Jive Software.
|
|
*
|
|
* All rights reserved. Licensed 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.jivesoftware.smackx.jingle;
|
|
|
|
import org.jivesoftware.smack.XMPPException;
|
|
import org.jivesoftware.smack.packet.IQ;
|
|
import org.jivesoftware.smackx.packet.Jingle;
|
|
|
|
/**
|
|
* @author Jeff Williams
|
|
* @see JingleSessionState
|
|
*/
|
|
|
|
public class JingleSessionStatePending extends JingleSessionState {
|
|
private static JingleSessionStatePending INSTANCE = null;
|
|
|
|
protected JingleSessionStatePending() {
|
|
// Prevent instantiation of the class.
|
|
}
|
|
|
|
/**
|
|
* A thread-safe means of getting the one instance of this class.
|
|
* @return The singleton instance of this class.
|
|
*/
|
|
public synchronized static JingleSessionState getInstance() {
|
|
if (INSTANCE == null) {
|
|
INSTANCE = new JingleSessionStatePending();
|
|
}
|
|
return INSTANCE;
|
|
}
|
|
|
|
public void enter() {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
public void exit() {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
public IQ processJingle(JingleSession session, Jingle jingle, JingleActionEnum action) {
|
|
IQ response = null;
|
|
|
|
switch (action) {
|
|
|
|
case CONTENT_ACCEPT:
|
|
response = receiveContentAcceptAction(jingle);
|
|
break;
|
|
|
|
case CONTENT_MODIFY:
|
|
break;
|
|
|
|
case CONTENT_REMOVE:
|
|
break;
|
|
|
|
case SESSION_ACCEPT:
|
|
response = receiveSessionAcceptAction(session, jingle);
|
|
break;
|
|
|
|
case SESSION_INFO:
|
|
break;
|
|
|
|
case SESSION_TERMINATE:
|
|
response = receiveSessionTerminateAction(session, jingle);
|
|
break;
|
|
|
|
case TRANSPORT_INFO:
|
|
break;
|
|
|
|
default:
|
|
// Anything other action is an error.
|
|
//response = createJingleError(inJingle, JingleError.OUT_OF_ORDER);
|
|
break;
|
|
}
|
|
|
|
return response;
|
|
}
|
|
|
|
/**
|
|
* Receive and process the <session-accept> action.
|
|
*/
|
|
private IQ receiveContentAcceptAction(Jingle inJingle) {
|
|
|
|
// According to XEP-167 the only thing we can do is ack.
|
|
//setSessionState(JingleSessionStateEnum.ACTIVE);
|
|
//return createAck(inJingle);
|
|
|
|
// This is now handled by the media negotiator for the matching <content> segment.
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Receive and process the <session-accept> action.
|
|
*/
|
|
private IQ receiveSessionAcceptAction(JingleSession session, Jingle inJingle) {
|
|
|
|
// According to XEP-166 the only thing we can do is ack.
|
|
session.setSessionState(JingleSessionStateActive.getInstance());
|
|
return session.createAck(inJingle);
|
|
}
|
|
|
|
/**
|
|
* Receive and process the <session-terminate> action.
|
|
*/
|
|
private IQ receiveSessionTerminateAction(JingleSession session, Jingle jingle) {
|
|
|
|
// According to XEP-166 the only thing we can do is ack.
|
|
IQ response = session.createAck(jingle);
|
|
|
|
try {
|
|
session.terminate("Closed remotely");
|
|
} catch (XMPPException e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
return response;
|
|
}
|
|
}
|