Audinaut-subsonic-app-android/app/src/main/java/net/nullsum/audinaut/service/parser/AbstractParser.java

138 lines
4.0 KiB
Java
Raw Normal View History

2016-12-18 18:41:30 +01:00
/*
This file is part of Subsonic.
Subsonic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Subsonic 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. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
Copyright 2009 (C) Sindre Mehus
*/
2017-01-09 08:01:12 +01:00
package net.nullsum.audinaut.service.parser;
2016-12-18 18:41:30 +01:00
import android.content.Context;
import android.util.Log;
import android.util.Xml;
2018-03-25 03:28:28 +02:00
2017-01-09 08:01:12 +01:00
import net.nullsum.audinaut.R;
import net.nullsum.audinaut.util.ProgressListener;
import net.nullsum.audinaut.util.Util;
2016-12-18 18:41:30 +01:00
2018-03-25 03:28:28 +02:00
import org.xmlpull.v1.XmlPullParser;
import java.io.IOException;
import java.io.InputStream;
2016-12-18 18:41:30 +01:00
/**
* @author Sindre Mehus
*/
2018-03-25 03:28:28 +02:00
abstract class AbstractParser {
2016-12-18 18:41:30 +01:00
private static final String TAG = AbstractParser.class.getSimpleName();
2017-03-12 07:58:17 +01:00
private static final String SUBSONIC_RESPONSE = "subsonic-response";
2016-12-18 18:41:30 +01:00
2018-03-25 03:28:28 +02:00
final Context context;
private final int instance;
2016-12-18 18:41:30 +01:00
private XmlPullParser parser;
private boolean rootElementFound;
2018-03-25 03:28:28 +02:00
AbstractParser(Context context, int instance) {
2016-12-18 18:41:30 +01:00
this.context = context;
2017-03-12 07:58:17 +01:00
this.instance = instance;
2016-12-18 18:41:30 +01:00
}
2018-03-25 03:28:28 +02:00
Context getContext() {
2016-12-18 18:41:30 +01:00
return context;
}
2018-03-25 03:28:28 +02:00
void handleError() throws Exception {
2016-12-18 18:41:30 +01:00
int code = getInteger("code");
String message;
switch (code) {
2017-03-12 07:58:17 +01:00
case 0:
message = context.getResources().getString(R.string.parser_server_error, get("message"));
break;
2016-12-18 18:41:30 +01:00
case 20:
message = context.getResources().getString(R.string.parser_upgrade_client);
break;
case 30:
message = context.getResources().getString(R.string.parser_upgrade_server);
break;
case 40:
message = context.getResources().getString(R.string.parser_not_authenticated);
break;
2017-03-12 07:58:17 +01:00
case 41:
2018-03-25 03:28:28 +02:00
Util.setBlockTokenUse(context, instance);
2016-12-18 18:41:30 +01:00
2017-03-12 07:58:17 +01:00
// Throw IOException so RESTMusicService knows to retry
throw new IOException();
2016-12-18 18:41:30 +01:00
case 50:
message = context.getResources().getString(R.string.parser_not_authorized);
break;
default:
message = get("message");
break;
}
2018-03-25 03:28:28 +02:00
throw new SubsonicRESTException(message);
2016-12-18 18:41:30 +01:00
}
2018-03-25 03:28:28 +02:00
void updateProgress(ProgressListener progressListener, String message) {
2016-12-18 18:41:30 +01:00
if (progressListener != null) {
progressListener.updateProgress(message);
}
}
2018-03-25 03:28:28 +02:00
String getText() {
2016-12-18 18:41:30 +01:00
return parser.getText();
}
2018-03-25 03:28:28 +02:00
String get(String name) {
2016-12-18 18:41:30 +01:00
return parser.getAttributeValue(null, name);
}
2018-03-25 03:28:28 +02:00
boolean getBoolean() {
return "true".equals(get("isDir"));
2016-12-18 18:41:30 +01:00
}
2018-03-25 03:28:28 +02:00
Integer getInteger(String name) {
2016-12-18 18:41:30 +01:00
String s = get(name);
try {
return (s == null || "".equals(s)) ? null : Integer.valueOf(s);
2018-03-25 03:28:28 +02:00
} catch (Exception e) {
2016-12-18 18:41:30 +01:00
Log.w(TAG, "Failed to parse " + s + " into integer");
return null;
}
}
2018-03-25 03:28:28 +02:00
void init(InputStream inputStream) throws Exception {
2016-12-18 18:41:30 +01:00
parser = Xml.newPullParser();
2017-03-12 07:58:17 +01:00
parser.setInput(inputStream, "UTF-8");
2016-12-18 18:41:30 +01:00
rootElementFound = false;
}
2018-03-25 03:28:28 +02:00
int nextParseEvent() throws Exception {
return parser.next();
2016-12-18 18:41:30 +01:00
}
2018-03-25 03:28:28 +02:00
String getElementName() {
2016-12-18 18:41:30 +01:00
String name = parser.getName();
if (SUBSONIC_RESPONSE.equals(name)) {
rootElementFound = true;
}
return name;
}
2018-03-25 03:28:28 +02:00
void validate() throws Exception {
2016-12-18 18:41:30 +01:00
if (!rootElementFound) {
throw new Exception(context.getResources().getString(R.string.background_task_parse_error));
}
}
}