blob: 290b61417a13b889ebda847696697aea7bf88936 [file] [log] [blame]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.ims.rcs.uce.presence.pidfparser.capabilities;
import android.text.TextUtils;
import com.android.ims.rcs.uce.presence.pidfparser.ElementBase;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlSerializer;
import java.io.IOException;
/**
* The "video" element of the Capabilities namespace.
*/
public class Video extends ElementBase {
/** The name of this element */
public static final String ELEMENT_NAME = "video";
private boolean mSupported;
public Video() {
}
public Video(boolean supported) {
mSupported = supported;
}
@Override
protected String initNamespace() {
return CapsConstant.NAMESPACE;
}
@Override
protected String initElementName() {
return ELEMENT_NAME;
}
public boolean isVideoSupported() {
return mSupported;
}
@Override
public void serialize(XmlSerializer serializer) throws IOException {
String namespace = getNamespace();
String elementName = getElementName();
serializer.startTag(namespace, elementName);
serializer.text(String.valueOf(isVideoSupported()));
serializer.endTag(namespace, elementName);
}
@Override
public void parse(XmlPullParser parser) throws IOException, XmlPullParserException {
String namespace = parser.getNamespace();
String name = parser.getName();
if (!verifyParsingElement(namespace, name)) {
throw new XmlPullParserException("Incorrect element: " + namespace + ", " + name);
}
// Move to the next event to get the value.
int eventType = parser.next();
// Get the value if the event type is text.
if (eventType == XmlPullParser.TEXT) {
String isSupported = parser.getText();
if (!TextUtils.isEmpty(isSupported)) {
mSupported = Boolean.parseBoolean(isSupported);
}
}
// Move to the end tag.
moveToElementEndTag(parser, eventType);
}
}