Home | History | Annotate | Download | only in aapt
      1 /*
      2  * Copyright (C) 2014 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 
     17 #include "AaptUtil.h"
     18 
     19 using android::Vector;
     20 using android::String8;
     21 
     22 namespace AaptUtil {
     23 
     24 Vector<String8> split(const String8& str, const char sep) {
     25     Vector<String8> parts;
     26     const char* p = str.string();
     27     const char* q;
     28 
     29     while (true) {
     30         q = strchr(p, sep);
     31         if (q == NULL) {
     32             parts.add(String8(p, strlen(p)));
     33             return parts;
     34         }
     35 
     36         parts.add(String8(p, q-p));
     37         p = q + 1;
     38     }
     39     return parts;
     40 }
     41 
     42 Vector<String8> splitAndLowerCase(const String8& str, const char sep) {
     43     Vector<String8> parts;
     44     const char* p = str.string();
     45     const char* q;
     46 
     47     while (true) {
     48         q = strchr(p, sep);
     49         if (q == NULL) {
     50             String8 val(p, strlen(p));
     51             val.toLower();
     52             parts.add(val);
     53             return parts;
     54         }
     55 
     56         String8 val(p, q-p);
     57         val.toLower();
     58         parts.add(val);
     59         p = q + 1;
     60     }
     61     return parts;
     62 }
     63 
     64 } // namespace AaptUtil
     65