org.cybergarage.upnp.Device.getLeaseTime()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(9.2k)|赞(0)|评价(0)|浏览(144)

本文整理了Java中org.cybergarage.upnp.Device.getLeaseTime()方法的一些代码示例,展示了Device.getLeaseTime()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Device.getLeaseTime()方法的具体详情如下:
包路径:org.cybergarage.upnp.Device
类名称:Device
方法名:getLeaseTime

Device.getLeaseTime介绍

暂无

代码示例

代码示例来源:origin: i2p/i2p.i2p

public boolean isExpired() {
  long elipsedTime = getElapsedTime();
  long leaseTime = getLeaseTime()
      + UPnP.DEFAULT_EXPIRED_DEVICE_EXTRA_TIME;
  if (leaseTime < elipsedTime)
    return true;
  return false;
}

代码示例来源:origin: i2p/i2p.i2p

public void run() 
  {
    Device dev = getDevice();
    long leaseTime = dev.getLeaseTime();
    long notifyInterval;
    while (isRunnable() == true) {
      notifyInterval = (leaseTime/4) + (long)((float)leaseTime * (Math.random() * 0.25f));
      notifyInterval *= 1000;
      try {
        Thread.sleep(notifyInterval);
      } catch (InterruptedException e) {}
      dev.announce();
    }
  }
}

代码示例来源:origin: i2p/i2p.i2p

public void print()
  {
    DeviceList devList = getDeviceList();
    int devCnt = devList.size();
    Debug.message("Device Num = " + devCnt);
    for (int n=0; n<devCnt; n++) {
      Device dev = devList.getDevice(n);
      Debug.message("[" + n + "] " + dev.getFriendlyName() + ", " + dev.getLeaseTime() + ", " + dev.getElapsedTime());
    }        
  }
}

代码示例来源:origin: i2p/i2p.i2p

_log.warn("UP&P IGD found : " + name + " UDN: " + udn + " lease time: " + dev.getLeaseTime());

代码示例来源:origin: cybergarage/cybergarage-upnp

public boolean isExpired() {
  long elipsedTime = getElapsedTime();
  long leaseTime = getLeaseTime()
      + UPnP.DEFAULT_EXPIRED_DEVICE_EXTRA_TIME;
  if (leaseTime < elipsedTime)
    return true;
  return false;
}

代码示例来源:origin: geniusgithub/MediaPlayer

public boolean isExpired() {
  long elipsedTime = getElapsedTime();
  long leaseTime = getLeaseTime()
      + UPnP.DEFAULT_EXPIRED_DEVICE_EXTRA_TIME;
  if (leaseTime < elipsedTime)
    return true;
  return false;
}

代码示例来源:origin: i2p/i2p.i2p

public void announce(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  Device rootDev = getRootDevice();
  String devLocation = rootDev.getLocationURL(bindAddr);
  String serviceNT = getNotifyServiceTypeNT();            
  String serviceUSN = getNotifyServiceTypeUSN();
  Device dev = getDevice();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setServer(UPnP.getServerName());
  ssdpReq.setLeaseTime(dev.getLeaseTime());
  ssdpReq.setLocation(devLocation);
  ssdpReq.setNTS(NTS.ALIVE);
  ssdpReq.setNT(serviceNT);
  ssdpReq.setUSN(serviceUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: i2p/i2p.i2p

public boolean postSearchResponse(SSDPPacket ssdpPacket, String st,
    String usn) {
  String localAddr = ssdpPacket.getLocalAddress();
  Device rootDev = getRootDevice();
  String rootDevLocation = rootDev.getLocationURL(localAddr);
  SSDPSearchResponse ssdpRes = new SSDPSearchResponse();
  ssdpRes.setLeaseTime(getLeaseTime());
  ssdpRes.setDate(cal);
  ssdpRes.setST(st);
  ssdpRes.setUSN(usn);
  ssdpRes.setLocation(rootDevLocation);
  ssdpRes.setBootId(getBootId());
  // Thanks for Brent Hills (10/20/04)
  ssdpRes.setMYNAME(getFriendlyName());
  int mx = ssdpPacket.getMX();
  TimerUtil.waitRandom(mx * 1000);
  String remoteAddr = ssdpPacket.getRemoteAddress();
  int remotePort = ssdpPacket.getRemotePort();
  SSDPSearchResponseSocket ssdpResSock = new SSDPSearchResponseSocket();
  if (Debug.isOn() == true)
    ssdpRes.print();
  int ssdpCount = getSSDPAnnounceCount();
  for (int i = 0; i < ssdpCount; i++)
    ssdpResSock.post(remoteAddr, remotePort, ssdpRes);
  return true;
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public void run() 
  {
    Device dev = getDevice();
    long leaseTime = dev.getLeaseTime();
    long notifyInterval;
    while (isRunnable() == true) {
      notifyInterval = (leaseTime/4) + (long)((float)leaseTime * (Math.random() * 0.25f));
      notifyInterval *= 1000;
      try {
        Thread.sleep(notifyInterval);
      } catch (InterruptedException e) {}
      dev.announce();
    }
  }
}

代码示例来源:origin: geniusgithub/MediaPlayer

public void run() 
  {
    Device dev = getDevice();
    long leaseTime = dev.getLeaseTime();
    long notifyInterval;
    while (isRunnable() == true) {
      notifyInterval = (leaseTime/4) + (long)((float)leaseTime * (Math.random() * 0.25f));
      notifyInterval *= 1000;
      try {
        Thread.sleep(notifyInterval);
      } catch (InterruptedException e) {}
      dev.announce();
    }
  }
}

代码示例来源:origin: i2p/i2p.i2p

ssdpReq.setLeaseTime(getLeaseTime());
ssdpReq.setLocation(devLocation);
ssdpReq.setNTS(NTS.ALIVE);

代码示例来源:origin: cybergarage/cybergarage-upnp

public void printMediaServers()
{
    DeviceList devList = getDeviceList();
    int devCnt = devList.size();
    int mediaServerCnt = 0;
    for (int n=0; n<devCnt; n++) {
      Device dev = devList.getDevice(n);
      if (dev.isDeviceType(MediaServer.DEVICE_TYPE) == false)
        continue;
      System.out.println("[" + n +  "] " + dev.getFriendlyName() + ", " + dev.getLeaseTime() + ", " + dev.getElapsedTime());
      printContentDirectory(dev);
      mediaServerCnt++;
    }        
    if (mediaServerCnt == 0) {
      System.out.println("MediaServer is not found");
    }
}

代码示例来源:origin: geniusgithub/MediaPlayer

public void printMediaServers()
{
    DeviceList devList = getDeviceList();
    int devCnt = devList.size();
    int mediaServerCnt = 0;
    for (int n=0; n<devCnt; n++) {
      Device dev = devList.getDevice(n);
      if (dev.isDeviceType(MediaServer.DEVICE_TYPE) == false)
        continue;
      System.out.println("[" + n +  "] " + dev.getFriendlyName() + ", " + dev.getLeaseTime() + ", " + dev.getElapsedTime());
      printContentDirectory(dev);
      mediaServerCnt++;
    }        
    if (mediaServerCnt == 0) {
      System.out.println("MediaServer is not found");
    }
}

代码示例来源:origin: cybergarage/cybergarage-upnp

void set(Device dev)
  {
    if (dev.isRootDevice() == true) {
      addRow("Location", dev.getLocation());
      addRow("URLBase", dev.getURLBase());
      addRow("LeaseTime", Long.toString(dev.getLeaseTime()));
    }

    set(dev.getDeviceNode());
  }
}

代码示例来源:origin: geniusgithub/MediaPlayer

public void print()
  {
    DeviceList devList = getDeviceList();
    int devCnt = devList.size();
    Debug.message("Device Num = " + devCnt);
    for (int n=0; n<devCnt; n++) {
      Device dev = devList.getDevice(n);
      Debug.message("[" + n + "] " + dev.getFriendlyName() + ", " + dev.getLeaseTime() + ", " + dev.getElapsedTime());
    }        
  }
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public void print()
  {
    DeviceList devList = getDeviceList();
    int devCnt = devList.size();
    Debug.message("Device Num = " + devCnt);
    for (int n=0; n<devCnt; n++) {
      Device dev = devList.getDevice(n);
      Debug.message("[" + n + "] " + dev.getFriendlyName() + ", " + dev.getLeaseTime() + ", " + dev.getElapsedTime());
    }        
  }
}

代码示例来源:origin: geniusgithub/MediaPlayer

public void announce(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  Device rootDev = getRootDevice();
  String devLocation = rootDev.getLocationURL(bindAddr);
  String serviceNT = getNotifyServiceTypeNT();            
  String serviceUSN = getNotifyServiceTypeUSN();
  Device dev = getDevice();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setServer(UPnP.getServerName());
  ssdpReq.setLeaseTime(dev.getLeaseTime());
  ssdpReq.setLocation(devLocation);
  ssdpReq.setNTS(NTS.ALIVE);
  ssdpReq.setNT(serviceNT);
  ssdpReq.setUSN(serviceUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public void announce(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  Device rootDev = getRootDevice();
  String devLocation = rootDev.getLocationURL(bindAddr);
  String serviceNT = getNotifyServiceTypeNT();            
  String serviceUSN = getNotifyServiceTypeUSN();
  Device dev = getDevice();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setServer(UPnP.getServerName());
  ssdpReq.setLeaseTime(dev.getLeaseTime());
  ssdpReq.setLocation(devLocation);
  ssdpReq.setNTS(NTS.ALIVE);
  ssdpReq.setNT(serviceNT);
  ssdpReq.setUSN(serviceUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public boolean postSearchResponse(SSDPPacket ssdpPacket, String st,
    String usn) {
  String localAddr = ssdpPacket.getLocalAddress();
  Device rootDev = getRootDevice();
  String rootDevLocation = rootDev.getLocationURL(localAddr);
  SSDPSearchResponse ssdpRes = new SSDPSearchResponse();
  ssdpRes.setLeaseTime(getLeaseTime());
  ssdpRes.setDate(cal);
  ssdpRes.setST(st);
  ssdpRes.setUSN(usn);
  ssdpRes.setLocation(rootDevLocation);
  ssdpRes.setBootId(getBootId());
  // Thanks for Brent Hills (10/20/04)
  ssdpRes.setMYNAME(getFriendlyName());
  int mx = ssdpPacket.getMX();
  TimerUtil.waitRandom(mx * 1000);
  String remoteAddr = ssdpPacket.getRemoteAddress();
  int remotePort = ssdpPacket.getRemotePort();
  SSDPSearchResponseSocket ssdpResSock = new SSDPSearchResponseSocket();
  if (Debug.isOn() == true)
    ssdpRes.print();
  int ssdpCount = getSSDPAnnounceCount();
  for (int i = 0; i < ssdpCount; i++)
    ssdpResSock.post(remoteAddr, remotePort, ssdpRes);
  return true;
}

代码示例来源:origin: geniusgithub/MediaPlayer

public boolean postSearchResponse(SSDPPacket ssdpPacket, String st,
    String usn) {
  String localAddr = ssdpPacket.getLocalAddress();
  Device rootDev = getRootDevice();
  String rootDevLocation = rootDev.getLocationURL(localAddr);
  SSDPSearchResponse ssdpRes = new SSDPSearchResponse();
  ssdpRes.setLeaseTime(getLeaseTime());
  ssdpRes.setDate(cal);
  ssdpRes.setST(st);
  ssdpRes.setUSN(usn);
  ssdpRes.setLocation(rootDevLocation);
  ssdpRes.setBootId(getBootId());
  // Thanks for Brent Hills (10/20/04)
  ssdpRes.setMYNAME(getFriendlyName());
  int mx = ssdpPacket.getMX();
  TimerUtil.waitRandom(mx * 1000);
  String remoteAddr = ssdpPacket.getRemoteAddress();
  int remotePort = ssdpPacket.getRemotePort();
  SSDPSearchResponseSocket ssdpResSock = new SSDPSearchResponseSocket();
  if (Debug.isOn() == true)
    ssdpRes.print();
  int ssdpCount = getSSDPAnnounceCount();
  for (int i = 0; i < ssdpCount; i++)
    ssdpResSock.post(remoteAddr, remotePort, ssdpRes);
  return true;
}

相关文章

Device类方法