blob: 28d2e69141038742258feda9f3d9b8d7a90454f1 [file] [log] [blame]
Alan Viverette3da604b2020-06-10 18:34:39 +00001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.integrity.parser;
18
19import android.annotation.Nullable;
20import android.util.Xml;
21
22import com.android.server.integrity.model.RuleMetadata;
23
24import org.xmlpull.v1.XmlPullParser;
25import org.xmlpull.v1.XmlPullParserException;
26
27import java.io.IOException;
28import java.io.InputStream;
29import java.nio.charset.StandardCharsets;
30
31/** Helper class for parsing rule metadata. */
32public class RuleMetadataParser {
33
34 public static final String RULE_PROVIDER_TAG = "P";
35 public static final String VERSION_TAG = "V";
36
37 /** Parse the rule metadata from an input stream. */
38 @Nullable
39 public static RuleMetadata parse(InputStream inputStream)
40 throws XmlPullParserException, IOException {
41
42 String ruleProvider = "";
43 String version = "";
44
45 XmlPullParser xmlPullParser = Xml.newPullParser();
46 xmlPullParser.setInput(inputStream, StandardCharsets.UTF_8.name());
47
48 int eventType;
49 while ((eventType = xmlPullParser.next()) != XmlPullParser.END_DOCUMENT) {
50 if (eventType == XmlPullParser.START_TAG) {
51 String tag = xmlPullParser.getName();
52 switch (tag) {
53 case RULE_PROVIDER_TAG:
54 ruleProvider = xmlPullParser.nextText();
55 break;
56 case VERSION_TAG:
57 version = xmlPullParser.nextText();
58 break;
59 default:
60 throw new IllegalStateException("Unknown tag in metadata: " + tag);
61 }
62 }
63 }
64
65 return new RuleMetadata(ruleProvider, version);
66 }
67}