aboutsummaryrefslogtreecommitdiffstats
path: root/sdkmanager/libs/sdklib/src/com/android/sdklib/repository/SdkAddonsListConstants.java
blob: 4f6b897a1f7b70415a668fe9d8df759a371c07f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * Copyright (C) 2010 The Android Open Source Project
 *
 * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php
 *
 * 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.sdklib.repository;


import java.io.InputStream;

/**
 * Public constants for the sdk-addons-list XML Schema.
 */
public class SdkAddonsListConstants {

    /** The base of our sdk-addons-list XML namespace. */
    private static final String NS_BASE =
        "http://schemas.android.com/sdk/android/addons-list/";              //$NON-NLS-1$

    /**
     * The pattern of our sdk-addons-list XML namespace.
     * Matcher's group(1) is the schema version (integer).
     */
    public static final String NS_PATTERN = NS_BASE + "([1-9][0-9]*)";      //$NON-NLS-1$

    /** The latest version of the sdk-addons-list XML Schema.
     *  Valid version numbers are between 1 and this number, included. */
    public static final int NS_LATEST_VERSION = 2;

    /** The XML namespace of the latest sdk-addons-list XML. */
    public static final String NS_URI = getSchemaUri(NS_LATEST_VERSION);


    /** The canonical URL filename for addons-list XML files. */
    public static final String URL_DEFAULT_FILENAME = getDefaultName(NS_LATEST_VERSION);

    /** The URL where to find the official addons list fle. */
    public static final String URL_ADDON_LIST =
        SdkRepoConstants.URL_GOOGLE_SDK_SITE + URL_DEFAULT_FILENAME;



    /** The root sdk-addons-list element */
    public static final String NODE_SDK_ADDONS_LIST = "sdk-addons-list";    //$NON-NLS-1$

    /** An add-on site. */
    public static final String NODE_ADDON_SITE = "addon-site";              //$NON-NLS-1$

    /** A system image site. */
    public static final String NODE_SYS_IMG_SITE = "sys-img-site";          //$NON-NLS-1$

    /** The UI-visible name of the add-on site. */
    public static final String NODE_NAME = "name";                          //$NON-NLS-1$

    /**
     * The URL of the site.
     * <p/>
     * This can be either the exact URL of the an XML resource conforming
     * to the latest sdk-addon-N.xsd schema, or it can be the URL of a
     * 'directory', in which case the manager will look for a resource
     * named 'addon.xml' at this location.
     * <p/>
     * Examples:
     * <pre>
     *    http://www.example.com/android/my_addons.xml
     *  or
     *    http://www.example.com/android/
     * </pre>
     * In the second example, the manager will actually look for
     *   http://www.example.com/android/addon.xml
     */
    public static final String NODE_URL = "url";                            //$NON-NLS-1$

    /**
     * Returns a stream to the requested sdk-addon XML Schema.
     *
     * @param version Between 1 and {@link #NS_LATEST_VERSION}, included.
     * @return An {@link InputStream} object for the local XSD file or
     *         null if there is no schema for the requested version.
     */
    public static InputStream getXsdStream(int version) {
        String filename = String.format("sdk-addons-list-%d.xsd", version); //$NON-NLS-1$
        return SdkAddonsListConstants.class.getResourceAsStream(filename);
    }

    /**
     * Returns the URI of the sdk-addon schema for the given version number.
     * @param version Between 1 and {@link #NS_LATEST_VERSION} included.
     */
    public static String getSchemaUri(int version) {
        return String.format(NS_BASE + "%d", version);                      //$NON-NLS-1$
    }

    public static String getDefaultName(int version) {
        return String.format("addons_list-%1$d.xml", version);              //$NON-NLS-1$
    }
}