​pushlet 传递页面request参数

pushlet 传递页面request参数
最近项目中有服务器端推送的需求,考察了一下,感觉 pushlet 比较适合我们的情况。

用起来比较简单,网上资料也比较多(参考:开源框架Pushlet入门),就不多费笔墨了。


最常见的用法如下:


[java] view plain copy
  1. package com.ljq.test;  

  2. import java.io.Serializable;  

  3. import nl.justobjects.pushlet.core.Event;  

  4. import nl.justobjects.pushlet.core.EventPullSource;  

  5. @SuppressWarnings("serial")  

  6. publicclass HelloWorldPlushlet extends EventPullSource implements Serializable {  

  7. /**

  8.     * 设置休眠时间

  9.     */

  10. @Override

  11. protectedlong getSleepTime() {  

  12. return1000;  

  13.    }  

  14. /**

  15.     * 创建事件

  16.     *

  17.     * 业务部分写在pullEvent()方法中,这个方法会被定时调用。

  18.     */

  19. @Override

  20. protected Event pullEvent() {  

  21.        Event event = Event.createDataEvent("/linjiqin/hw");  

  22.        event.setField("hw", "HelloWorld!!!!");  

  23. return event;  

  24.    }  

  25. }  




在使用的过程中发现,如果要在pullEvent()方法中获取参数比较麻烦,看了半天官方文档也没有找到好的方法(也可能是我没有找对地方,总感觉pushlet不会有这种问题,如果你们知道请一定告诉我)。只好去看源代码,发现在nl.justobjects.pushlet.servlet.Pushlet中已经将request参数传进了Session(注意是nl.justobjects.pushlet.core.Session)。但是在session构造的时候没有用到request。看到这里,就大概知道改怎么改了。代码如下:

1. nl.justobjects.pushlet.core.Session,添加了event域和getEvent()方法,修改了public static Session create(String anId, Event anEvent)方法


[java] view plain copy
  1. publicclass Session implements Protocol, ConfigDefs {  

  2. private Controller controller;  

  3. private Subscriber subscriber;  

  4. private Event event;  

  5.    ...  

  6. /**

  7.     * Create instance through factory method.

  8.     *

  9.     * @param anId a session id

  10.     * @return a Session object (or derived)

  11.     * @throws PushletException exception, usually misconfiguration

  12.     */

  13. publicstatic Session create(String anId, Event anEvent) throws PushletException {  

  14.        Session session;  

  15. try {  

  16.            session = (Session) Config.getClass(SESSION_CLASS, "nl.justobjects.pushlet.core.Session").newInstance();  

  17.        } catch (Throwable t) {  

  18. thrownew PushletException("Cannot instantiate Session from config", t);  

  19.        }  

  20. // Init session

  21.        session.id = anId;  

  22.        session.controller = Controller.create(session);  

  23.        session.subscriber = Subscriber.create(session);  

  24.        session.event = anEvent;  

  25. return session;  

  26.    }  

  27.    ...  

  28. /**

  29.     * Return event.

  30.     */

  31. public Event getEvent() {  

  32. return event;  

  33.    }  

  34.    ...  

  35. }  

2. nl.justobjects.pushlet.core.SessionManager,修改了createSession()方法



[java] view plain copy
  1. /**

  2. * Create new Session (but add later).

  3. */

  4. public Session createSession(Event anEvent) throws PushletException {  

  5. // Trivial

  6. return Session.create(createSessionId(), anEvent);  

  7. }  

3. ajax-pushlet-client.js,PL添加了parameters属性,修改了_doRequest函数,在函数的最后加了如下一段:


[javascript] view plain copy
  1. if(PL.parameters.length > 0) {  

  2. for (var i = 0; i < PL.parameters.length; i++) {  

  3. var para = PL.parameters[i];  

  4.        url += "&" + para.name + "=" + para.value;  

  5.    }  

  6. }  


修改后的ajax-pushlet-client.js -_doRequest()函数:




[javascript] view plain copy
  1. _doRequest: function(anEvent, aQuery) {  

  2.        ...  

  3. // Construct base URL for GET

  4. var url = PL.pushletURL + '?p_event=' + anEvent;  

  5. // Optionally attach query string

  6. if (aQuery) {  

  7.            url = url + '&' + aQuery;  

  8.        }  

  9. // Optionally attach session id

  10. if (PL.sessionId != null) {  

  11.            url = url + '&p_id=' + PL.sessionId;  

  12. if (anEvent == 'p_leave') {  

  13.                PL.sessionId = null;  

  14.            }  

  15.        }  

  16. if(PL.parameters.length > 0) {  

  17. for (var i = 0; i < PL.parameters.length; i++) {  

  18. var para = PL.parameters[i];  

  19.                url += "&" + para.name + "=" + para.value;  

  20.            }  

  21.        }  

  22.        PL.debug('_doRequest', url);  

  23.        PL._getXML(url, PL._onResponse);  

  24.    },  


好了,源代码修改完毕,下面是一个如何传递参数的例子

在页面上js代码:


[javascript] view plain copy
  1. // pushlet服务器推送,更新实时监控模块

  2. var initPushlet = function() {  

  3.    PL.parameters.push({"name":"user-id", "value":"001");  

  4.    PL._init();  

  5.    PL.joinListen('/source/event');  

  6. };  

在HelloWorldPlushlet的pullEvent()方法调用:


[java] view plain copy
  1. Session[] sessions = SessionManager.getInstance().getSessions();  

  2. String userId = sessions[0].getEvent().getField("user-id");  



这样就实现了从页面到pushlet的参数传递


你可能感兴趣的:(Pushlet,传参数)