at_tok.c
上传用户:rftzhifu
上传日期:2017-02-21
资源大小:229k
文件大小:4k
源码类别:

android开发

开发平台:

Unix_Linux

  1. /* //device/system/reference-ril/at_tok.c
  2. **
  3. ** Copyright 2006, The Android Open Source Project
  4. **
  5. ** Licensed under the Apache License, Version 2.0 (the "License"); 
  6. ** you may not use this file except in compliance with the License. 
  7. ** You may obtain a copy of the License at 
  8. **
  9. **     http://www.apache.org/licenses/LICENSE-2.0 
  10. **
  11. ** Unless required by applicable law or agreed to in writing, software 
  12. ** distributed under the License is distributed on an "AS IS" BASIS, 
  13. ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
  14. ** See the License for the specific language governing permissions and 
  15. ** limitations under the License.
  16. */
  17. #include "at_tok.h"
  18. #include <string.h>
  19. #include <ctype.h>
  20. #include <stdlib.h>
  21. /**
  22.  * Starts tokenizing an AT response string
  23.  * returns -1 if this is not a valid response string, 0 on success.
  24.  * updates *p_cur with current position
  25.  */
  26. int at_tok_start(char **p_cur)
  27. {
  28.     if (*p_cur == NULL) {
  29.         return -1;
  30.     }
  31.     // skip prefix
  32.     // consume "^[^:]:"
  33.     *p_cur = strchr(*p_cur, ':');
  34.     if (*p_cur == NULL) {
  35.         return -1;
  36.     }
  37.     (*p_cur)++;
  38.     return 0;
  39. }
  40. static void skipWhiteSpace(char **p_cur)
  41. {
  42.     if (*p_cur == NULL) return;
  43.     while (**p_cur != '' && isspace(**p_cur)) {
  44.         (*p_cur)++;
  45.     }
  46. }
  47. static void skipNextComma(char **p_cur)
  48. {
  49.     if (*p_cur == NULL) return;
  50.     while (**p_cur != '' && **p_cur != ',') {
  51.         (*p_cur)++;
  52.     }
  53.     if (**p_cur == ',') {
  54.         (*p_cur)++;
  55.     }    
  56. }
  57. static char * nextTok(char **p_cur)
  58. {
  59.     char *ret = NULL;
  60.     skipWhiteSpace(p_cur);
  61.     if (*p_cur == NULL) {
  62.         ret = NULL;
  63.     } else if (**p_cur == '"') {
  64.         (*p_cur)++;
  65.         ret = strsep(p_cur, """);
  66.         skipNextComma(p_cur);
  67.     } else {
  68.         ret = strsep(p_cur, ",");
  69.     }
  70.     return ret;
  71. }
  72. /**
  73.  * Parses the next integer in the AT response line and places it in *p_out
  74.  * returns 0 on success and -1 on fail
  75.  * updates *p_cur
  76.  * "base" is the same as the base param in strtol
  77.  */
  78. static int at_tok_nextint_base(char **p_cur, int *p_out, int base, int  uns)
  79. {
  80.     char *ret;
  81.     
  82.     if (*p_cur == NULL) {
  83.         return -1;
  84.     }
  85.     ret = nextTok(p_cur);
  86.     if (ret == NULL) {
  87.         return -1;
  88.     } else {
  89.         long l;
  90.         char *end;
  91.         if (uns)
  92.             l = strtoul(ret, &end, base);
  93.         else
  94.             l = strtol(ret, &end, base);
  95.         *p_out = (int)l;
  96.         if (end == ret) {
  97.             return -1;
  98.         }
  99.     }
  100.     return 0;
  101. }
  102. /**
  103.  * Parses the next base 10 integer in the AT response line 
  104.  * and places it in *p_out
  105.  * returns 0 on success and -1 on fail
  106.  * updates *p_cur
  107.  */
  108. int at_tok_nextint(char **p_cur, int *p_out)
  109. {
  110.     return at_tok_nextint_base(p_cur, p_out, 10, 0);
  111. }
  112. /**
  113.  * Parses the next base 16 integer in the AT response line 
  114.  * and places it in *p_out
  115.  * returns 0 on success and -1 on fail
  116.  * updates *p_cur
  117.  */
  118. int at_tok_nexthexint(char **p_cur, int *p_out)
  119. {
  120.     return at_tok_nextint_base(p_cur, p_out, 16, 1);
  121. }
  122. int at_tok_nextbool(char **p_cur, char *p_out)
  123. {
  124.     int ret;
  125.     int result;
  126.     ret = at_tok_nextint(p_cur, &result);
  127.     if (ret < 0) {
  128.         return -1;
  129.     }
  130.     // booleans should be 0 or 1
  131.     if (!(result == 0 || result == 1)) {
  132.         return -1;
  133.     }
  134.     if (p_out != NULL) {
  135.         *p_out = (char)result;
  136.     }
  137.     return ret;
  138. }
  139. int at_tok_nextstr(char **p_cur, char **p_out)
  140. {
  141.     if (*p_cur == NULL) {
  142.         return -1;
  143.     }
  144.     *p_out = nextTok(p_cur);
  145.     return 0;
  146. }
  147. /** returns 1 on "has more tokens" and 0 if no */
  148. int at_tok_hasmore(char **p_cur)
  149. {
  150.     return ! (*p_cur == NULL || **p_cur == '');
  151. }