forked from 4thline/cling
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 4thline#110 from ened/getsystemupdateid-action
added GetSystemUpdateID action for content directory
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
...c/main/java/org/fourthline/cling/support/contentdirectory/callback/GetSystemUpdateID.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (C) 2013 4th Line GmbH, Switzerland | ||
* | ||
* The contents of this file are subject to the terms of either the GNU | ||
* Lesser General Public License Version 2 or later ("LGPL") or the | ||
* Common Development and Distribution License Version 1 or later | ||
* ("CDDL") (collectively, the "License"). You may not use this file | ||
* except in compliance with the License. See LICENSE.txt for more | ||
* information. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
*/ | ||
|
||
package org.fourthline.cling.support.contentdirectory.callback; | ||
|
||
import org.fourthline.cling.controlpoint.ActionCallback; | ||
import org.fourthline.cling.model.action.ActionException; | ||
import org.fourthline.cling.model.action.ActionInvocation; | ||
import org.fourthline.cling.model.types.ErrorCode; | ||
|
||
/** | ||
* | ||
* @author Christian Bauer | ||
*/ | ||
public abstract class GetSystemUpdateID extends ActionCallback { | ||
|
||
public GetSystemUpdateID(org.fourthline.cling.model.meta.Service service) { | ||
super(new ActionInvocation(service.getAction("GetSystemUpdateID"))); | ||
} | ||
|
||
public void success(ActionInvocation invocation) { | ||
boolean ok = true; | ||
long id = 0; | ||
try { | ||
id = Long.valueOf(invocation.getOutput("Id").getValue().toString()); // UnsignedIntegerFourBytes... | ||
} catch (Exception ex) { | ||
invocation.setFailure(new ActionException(ErrorCode.ACTION_FAILED, "Can't parse GetSystemUpdateID response: " + ex, ex)); | ||
failure(invocation, null); | ||
ok = false; | ||
} | ||
if (ok) received(invocation, id); | ||
} | ||
|
||
public abstract void received(ActionInvocation invocation, long systemUpdateID); | ||
|
||
} |