summaryrefslogtreecommitdiffstats
path: root/ril/telephony/java/com/android/internal/telephony/Operators.java
blob: 51359eda6517c47e3a88ab866c7bafcd72d94121 (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
/*
 * Copyright (C) 2013-2014 The CyanogenMod 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.internal.telephony;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.Collections;
import java.util.Map;
import java.util.HashMap;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;

import android.os.Environment;
import android.telephony.Rlog;
import android.util.Xml;

import com.android.internal.util.XmlUtils;

public class Operators{


    // Initialize list of Operator codes
    // this will be taken care of when garbage collection starts.
    private HashMap<String, String>  initList() {
        HashMap<String, String> init = new HashMap<String, String>();
        //taken from spnOveride.java

        FileReader spnReader;

        final File spnFile = new File(Environment.getRootDirectory(),
                                     "etc/selective-spn-conf.xml");

        try {
            spnReader = new FileReader(spnFile);
        } catch (FileNotFoundException e) {
            Rlog.w("Operatorcheck", "Can not open " +
                   Environment.getRootDirectory() + "/etc/selective-spn-conf.xml");
            return init;
        }

        try {
            XmlPullParser parser = Xml.newPullParser();
            parser.setInput(spnReader);

            XmlUtils.beginDocument(parser, "spnOverrides");

            while (true) {
                XmlUtils.nextElement(parser);

                String name = parser.getName();
                if (!"spnOverride".equals(name)) {
                    break;
                }

                String numeric = parser.getAttributeValue(null, "numeric");
                String data    = parser.getAttributeValue(null, "spn");

                init.put(numeric, data);
            }
        } catch (XmlPullParserException e) {
            Rlog.w("Operatorcheck", "Exception in spn-conf parser " + e);
        } catch (IOException e) {
            Rlog.w("Operatorcheck", "Exception in spn-conf parser " + e);
        }
        return init;
    }
    //this will stay persistant in memory when called
    private static String stored = null;
    private static String storedOperators = null;

    public static String operatorReplace(String response){
        // sanity checking if the value is actually not equal to the range apn
        // numerics
        // if it is null, check your ril class.
        if(response == null ||
           (5 != response.length() && response.length() != 6)){
            return response;
        }
        // this will check if the stored value is equal to other.
        // this uses a technique called last known of good value.
        // along with sanity checking
        if(storedOperators != null && stored != null && stored.equals(response)){
            return storedOperators;
        }
        stored = response;
        try {
            // this will find out if it a number then it will catch it based
            // on invalid chars.
            Integer.parseInt(response);
        }  catch(NumberFormatException E){
            // not a number, pass it along to stored operator until the next
            // round.
            storedOperators = response;
            return storedOperators;
        }
        // this code will be taking care of when garbage collection start
        Operators init = new Operators();
        Map<String, String> operators = init.initList();
        storedOperators = operators.containsKey(response) ? operators.get(response) : response;
        return storedOperators;
    }

    // this will not stay persistant in memory, this will be taken care of
    // iin garbage collection routiene.
    private Map<String, String> unOptOperators = null;
    // unoptimized version of operatorreplace for responseOperatorInfos
    // this will provide a little more flexiblilty  in a loop like sisuation
    // same numbers of checks like before
    // this is for the search network functionality
    public String unOptimizedOperatorReplace(String response){
        // sanity checking if the value is actually not equal to the range apn
        // numerics
        // if it is null, check your ril class.
        if(response == null ||
           (5 != response.length() && response.length() != 6)){
            return response;
        }

        try {
            // this will find out if it a number then it will catch it based
            // on invalid chars.
            Integer.parseInt(response);
        }  catch(NumberFormatException E){
            // an illegal char is found i.e a word
            return response;
        }

        if (unOptOperators == null){
            unOptOperators = initList();
        }

        return unOptOperators.containsKey(response) ? unOptOperators.get(response) : response;
    }
}