blob: 3a7b76e565817ca40a31c6d7ebeb4746870c9502 [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.tomcat.bayeux.request;
import java.io.IOException;
import java.util.HashMap;
import javax.servlet.ServletException;
import org.apache.catalina.comet.CometEvent;
import org.apache.tomcat.bayeux.HttpError;
import org.apache.tomcat.bayeux.BayeuxException;
import org.apache.tomcat.bayeux.BayeuxRequest;
import org.apache.tomcat.bayeux.ClientImpl;
import org.apache.tomcat.bayeux.TomcatBayeux;
import org.json.JSONException;
import org.json.JSONObject;
import org.apache.cometd.bayeux.Bayeux;
import org.apache.tomcat.bayeux.*;
import org.apache.cometd.bayeux.Channel;
/******************************************************************************
* Handshake request Bayeux message.
*
* @author Guy A. Molinari
* @version 1.0
*
*/
public class MetaDisconnectRequest extends RequestBase implements BayeuxRequest {
protected static HashMap<String,Object> responseTemplate = new HashMap<String,Object>();
static {
responseTemplate.put(Bayeux.CHANNEL_FIELD,Bayeux.META_DISCONNECT);
responseTemplate.put(Bayeux.SUCCESSFUL_FIELD,Boolean.TRUE);
responseTemplate.put(Bayeux.ADVICE_FIELD, new HashMap<String, Object>());
}
public MetaDisconnectRequest(TomcatBayeux tb, CometEvent event, JSONObject jsReq) throws JSONException {
super(tb, event, jsReq);
}
/**
* Check client request for validity.
*
* Per section 4.4.1 of the Bayuex spec a connect request must contain:
* 1) The "/meta/disconnect" channel identifier.
* 2) The clientId.
*
* @return HttpError This method returns null if no errors were found
*/
public HttpError validate() {
if(clientId==null|| (!this.getTomcatBayeux().hasClient(clientId)))
return new HttpError(400,"Client Id not valid.", null);
// if (! (Bayeux.TRANSPORT_LONG_POLL.equals(conType) || Bayeux.TRANSPORT_CALLBACK_POLL.equals(conType)))
// return new HttpError(400,"Unsupported connection type.",null);
return null;//no error
}
/**
* Disconnect a client session.
*/
public int process(int prevops) throws BayeuxException {
super.process(prevops);
response = (HashMap<String, Object>)responseTemplate.clone();
ClientImpl client = (ClientImpl)getTomcatBayeux().getClient(clientId);
HttpError error = validate();
if (error == null) {
((HashMap) response.get(Bayeux.ADVICE_FIELD)).put("reconnect", "retry");
((HashMap) response.get(Bayeux.ADVICE_FIELD)).put("interval", getReconnectInterval());
}else {
getTomcatBayeux().remove(client);
response.put(Bayeux.SUCCESSFUL_FIELD,Boolean.FALSE);
response.put(Bayeux.ERROR_FIELD, error.toString());
((HashMap) response.get(Bayeux.ADVICE_FIELD)).put("reconnect", "none");
if (client==null) client = TomcatBayeux.getErrorClient();
}
response.put(Bayeux.CLIENT_FIELD, client.getId());
try {
JSONObject obj = new JSONObject(response);
addToDeliveryQueue(client, obj);
} catch (ServletException x) {
throw new BayeuxException(x);
} catch (IOException x) {
throw new BayeuxException(x);
}
return 0;
}
}