blob: df5c800d5767f30f1e74f0683fee653bffd58353 [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.pidf;
import android.text.TextUtils;
import com.android.ims.rcs.uce.presence.pidfparser.ElementBase;
import com.android.internal.annotations.VisibleForTesting;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlSerializer;
import java.io.IOException;
/**
* The "contact" element of the pidf.
*/
public class Contact extends ElementBase {
/** The name of this element */
public static final String ELEMENT_NAME = "contact";
private Double mPriority;
private String mContact;
public Contact() {
}
@Override
protected String initNamespace() {
return PidfConstant.NAMESPACE;
}
@Override
protected String initElementName() {
return ELEMENT_NAME;
}
public void setPriority(Double priority) {
mPriority = priority;
}
@VisibleForTesting
public Double getPriority() {
return mPriority;
}
public void setContact(String contact) {
mContact = contact;
}
public String getContact() {
return mContact;
}
@Override
public void serialize(XmlSerializer serializer) throws IOException {
if (mContact == null) {
return;
}
String noNamespace = XmlPullParser.NO_NAMESPACE;
String namespace = getNamespace();
String elementName = getElementName();
serializer.startTag(namespace, elementName);
if (mPriority != null) {
serializer.attribute(noNamespace, "priority", String.valueOf(mPriority));
}
serializer.text(mContact);
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);
}
String priority = parser.getAttributeValue(XmlPullParser.NO_NAMESPACE, "priority");
if (!TextUtils.isEmpty(priority)) {
mPriority = Double.parseDouble(priority);
}
// 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 contact = parser.getText();
if (!TextUtils.isEmpty(contact)) {
mContact = contact;
}
}
// Move to the end tag.
moveToElementEndTag(parser, eventType);
}
}