summaryrefslogtreecommitdiff
path: root/engine/javaplugin/api/com/android/omadm/plugin/DmtPathUtils.java
blob: fc581fc1c0ae602bb4ec5a165fd03b170ae76625 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
 * Copyright (C) 2014 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.omadm.plugin;

import android.text.TextUtils;

import java.util.Arrays;

public final class DmtPathUtils {

    public static final String ROOTNODE = "__ROOT__";

    private DmtPathUtils() {}

    /**
     * Checks whether the given path is valid or not.
     *
     * @param path full path.
     * @return true if this is valid path, otherwise false.
     */
    public static boolean isValidPath(String path) {
        return (!TextUtils.isEmpty(path)) && (".".equals(path) || path.startsWith("./"));
    }

    /**
     * Parses path and returns name of the end node.
     *
     * @param nodePath path to the node.
     * @return node name or null in bad case.
     */
    public static String getNodeName(String nodePath) {
        String[] data = splitPath(nodePath);
        return data[1];
    }

    /**
     * Parses passed path and returns name of the first node
     * after root path.
     *
     * @param rootPath root path.
     * @param nodePath full path to the node.
     * @return name of the node or null in bad case.
     */
    public static String getSubNodeName(String rootPath, String nodePath) {
        if (!isValidPath(rootPath) || !isValidPath(nodePath)) {
            return null;
        }

        String prefix = rootPath + '/';

        if (!nodePath.startsWith(prefix)) {
            return null;
        }

        int nameEnd = nodePath.indexOf('/', prefix.length());
        if (nameEnd == -1) {
            return nodePath.substring(prefix.length());
        }
        return nodePath.substring(prefix.length(), nameEnd);
    }

    /**
     * Parses path and returns name of the end node and its root path.
     *
     * @param nodePath path to the node.
     * @return root path (String[0]) and name node (String[1]).
     */
    public static String[] splitPath(String nodePath) {
        String[] data = new String[2];
        Arrays.fill(data, null);

        if (!isValidPath(nodePath)) {
            return data;
        }

        int index = nodePath.lastIndexOf('/');
        if (index == -1) {
            data[1] = nodePath;
            return data;
        }

        if (nodePath.length() == 1) {
            return data;
        }

        if (index == 0) {
            data[1] = nodePath.substring(1);
            return data;
        }

        if (index == nodePath.length() - 1) {
            data[0] = nodePath.substring(0, index);
            return data;
        }

        data[0] = nodePath.substring(0, index);
        data[1] = nodePath.substring(index + 1);

        return data;
    }

    /**
     * Checks whether the root path is a part of the node path.
     *
     * @param rootPath root path.
     * @param nodePath path to some node.
     * @return true if these paths are equal or nodePath starts with rootPath.
     */
    public static boolean isSubPath(String rootPath, String nodePath) {
        if (!isValidPath(rootPath) || !isValidPath(nodePath)) {
            return false;
        }

        if (nodePath.equals(rootPath)) {
            return true;
        }

        return nodePath.startsWith(rootPath + '/');
    }

    public static String toRelativePath(String rootPath, String path) {
        String r = path;

        // deal with the root path of plugin tree
        if (rootPath.equals(path) || path.isEmpty()) {
            r = ROOTNODE;
        }
        else if (path.startsWith(rootPath)) {
            r = path.substring(rootPath.length() + 1);
        }
//        Log.i(TAG, "'" + path + "' -> '" + r + "'");
        return r;
    }

    /**
     * convert to the absolute path
     */
    public static String toAbsolutePath(String rootPath, String path) {
        String a = path;
        if (path.isEmpty() || path.equals(ROOTNODE)) {
            a = rootPath;
        }
        else if (!path.startsWith(rootPath)) {
            a = rootPath + '/' + path;
        }
//        Log.i(TAG, "'" + path + "' -> '" + a + "'");
        return a;
    }
}