"Operation not supportorted on remote Libraries");
}
+ /**
+ * Check if this {@link RemoteLibraryServer} is able to connect and identify
+ * to the remote server.
+ *
+ * @return TRUE if it is online
+ */
+ public boolean isOnline() {
+ final Boolean[] result = new Boolean[1];
+
+ result[0] = false;
+ try {
+ new ConnectActionClientObject(host, port, true) {
+ @Override
+ public void action(Version serverVersion) throws Exception {
+ Object rep = send(new Object[] { key, "PING" });
+ result[0] = "PONG".equals(rep);
+ }
+
+ @Override
+ protected void onError(Exception e) {
+ Instance.getTraceHandler().error(e);
+ }
+ }.connect();
+ } catch (Exception e) {
+ Instance.getTraceHandler().error(e);
+ }
+
+ return result[0];
+ }
+
@Override
protected List<MetaData> getMetas(Progress pg) {
final Progress pgF = pg;
* The key is always a String, the commands are also Strings; the parameters
* vary depending upon the command.
* <ul>
+ * <li>[key] PING: will return PONG if the key is accepted</li>
* <li>[key] GET_METADATA *: will return the metadata of all the stories in the
* library</li>
* <li>[key] GET_STORY [luid]: will return the given story if it exists (or NULL
return null;
}
- if ("GET_METADATA".equals(command)) {
+ if ("PING".equals(command)) {
+ return "PONG";
+ } else if ("GET_METADATA".equals(command)) {
if (args[0].equals("*")) {
List<MetaData> metas = Instance.getLibrary().getMetas(
createPgForwarder(action));