blob: 563bb981ce3764b2b0e00ff5e266261443acf072 [file] [log] [blame]
Francesco Furfariec7e1752006-10-02 13:37:04 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Francesco Furfarid8bdb642006-04-04 23:33:40 +00009 *
Francesco Furfariec7e1752006-10-02 13:37:04 +000010 * http://www.apache.org/licenses/LICENSE-2.0
Francesco Furfarid8bdb642006-04-04 23:33:40 +000011 *
Francesco Furfariec7e1752006-10-02 13:37:04 +000012 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Francesco Furfarid8bdb642006-04-04 23:33:40 +000018 */
19
20package org.apache.felix.upnp.basedriver.importer.core.event.thread;
21
22
23import org.cybergarage.upnp.Service;
24
25import org.apache.felix.upnp.basedriver.importer.core.MyCtrlPoint;
26import org.apache.felix.upnp.basedriver.importer.core.event.message.SidExipired;
27import org.apache.felix.upnp.basedriver.importer.core.event.structs.SubscriptionQueue;
28
Francesco Furfarif2a67912006-07-17 17:08:02 +000029/*
Karl Paulsd312acc2007-06-18 20:38:33 +000030* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
Francesco Furfarif2a67912006-07-17 17:08:02 +000031*/
Francesco Furfarid8bdb642006-04-04 23:33:40 +000032public class Renewer extends Thread {
33 private long timeout;
34 private String sid;
35 private Service service;
36 private MyCtrlPoint ctrl;
37 private boolean bool;
38 private SubscriptionQueue subqueue;
39 private final long time_before_renew=60000;
40 /**
41 * *
42 *
43 * @param timeout
44 * @param sid
45 * @param service
46 */
47 public Renewer(long timeout, String sid, Service service,
48 MyCtrlPoint ctrl,SubscriptionQueue subqueue) {
49 super("ReNewal" + sid);
50 if (timeout - time_before_renew > 0) {
51 this.timeout = timeout - time_before_renew;
52 } else {
53 this.timeout = timeout;
54 }
55 this.sid = sid;
56 this.service = service;
57 this.ctrl = ctrl;
58 bool = true;
59 this.subqueue=subqueue;
60 }
61 public void run() {
62 while (bool) {
63 try {
64 sleep(timeout);
65 } catch (InterruptedException e) {
66 // TODO Auto-generated catch block
67 e.printStackTrace();
68 }
69 boolean ok = ctrl.subscribe(service, sid, 180000);
70 if (ok) {//renew ok
71 if (service.getTimeout() - time_before_renew > 0) {
72 timeout = service.getTimeout() - time_before_renew;
73 } else {
74 timeout = service.getTimeout();
75 }
76 } else {//renew not ok
77 bool=false;
Francesco Furfarid8bdb642006-04-04 23:33:40 +000078 subqueue.enqueue(new SidExipired(sid,service));
79 }
80 }
81 }
82
Karl Paulsd312acc2007-06-18 20:38:33 +000083}