process.c
上传用户:mei_mei897
上传日期:2007-01-05
资源大小:82k
文件大小:7k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. /* -------------------------------------------------------------------- */
  2. /* SMS Client, send messages to mobile phones and pagers */
  3. /* */
  4. /* process.c */
  5. /* */
  6. /*  Copyright (C) 1997,1998 Angelo Masci */
  7. /* */
  8. /*  This library is free software; you can redistribute it and/or */
  9. /*  modify it under the terms of the GNU Library General Public */
  10. /*  License as published by the Free Software Foundation; either */
  11. /*  version 2 of the License, or (at your option) any later version. */
  12. /* */
  13. /*  This library is distributed in the hope that it will be useful, */
  14. /*  but WITHOUT ANY WARRANTY; without even the implied warranty of */
  15. /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU */
  16. /*  Library General Public License for more details. */
  17. /* */
  18. /*  You should have received a copy of the GNU Library General Public */
  19. /*  License along with this library; if not, write to the Free */
  20. /*  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  21. /* */
  22. /*  You can contact the author at this e-mail address: */
  23. /* */
  24. /*  angelo@styx.demon.co.uk */
  25. /* */
  26. /* -------------------------------------------------------------------- */
  27. /* $Id$
  28.    -------------------------------------------------------------------- */
  29. #include <stdio.h>
  30. #include <sys/types.h>
  31. #include <dirent.h>
  32. #include <sys/stat.h>
  33. #include <limits.h>
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include <unistd.h>
  37. #include "process.h"
  38. /* -------------------------------------------------------------------- */
  39. #define MAX_PATH 256
  40. /* -------------------------------------------------------------------- */
  41. #define TF_UNKNOWN 0
  42. #define TF_CONTROL 1
  43. #define TF_DATA 2
  44. /* -------------------------------------------------------------------- */
  45. struct file_list_struct
  46. {
  47. char *name;
  48. int type;
  49. time_t mtime;
  50. struct  file_list_struct
  51. *next;
  52. };
  53. typedef struct file_list_struct FILE_LIST;
  54. /* -------------------------------------------------------------------- */
  55. static FILE_LIST *add_file_item(FILE_LIST *list, char *name, time_t mtime, int type);
  56. static FILE_LIST *qsort_list(FILE_LIST *list);
  57. static int num_items_in_list(FILE_LIST *list);
  58. static int file_item_compare(const void *item1, const void *item2);
  59. static void dump_list(FILE_LIST *list);
  60. static void free_list(FILE_LIST *list);
  61. /* -------------------------------------------------------------------- */
  62. /* -------------------------------------------------------------------- */
  63. static FILE_LIST *add_file_item(FILE_LIST *list, char *name, time_t mtime, int type)
  64. {
  65. FILE_LIST *item;
  66. item = (FILE_LIST *)malloc(sizeof(FILE_LIST));
  67. if (item == NULL)
  68. {
  69. fprintf(stderr, "Error: malloc() failedn");
  70. exit(1);
  71. }
  72. item->name = (char *)malloc(sizeof(char) * (strlen(name) +1));
  73. if (item->name == NULL)
  74. {
  75. fprintf(stderr, "Error: malloc() failedn");
  76. exit(1);
  77. }
  78. strcpy(item->name, name);
  79. item->mtime = mtime;
  80. item->type = type;
  81. item->next = list;
  82. return item;
  83. }
  84. /* -------------------------------------------------------------------- */
  85. /* -------------------------------------------------------------------- */
  86. static int num_items_in_list(FILE_LIST *list)
  87. {
  88. int count;
  89. FILE_LIST 
  90. *item;
  91. count = 0;
  92. item = list;
  93. while(item != NULL)
  94. {
  95. count++;
  96. item = item->next;
  97. }
  98. return count;
  99. }
  100. /* -------------------------------------------------------------------- */
  101. /* -------------------------------------------------------------------- */
  102. static int file_item_compare(const void *item1, const void *item2)
  103. {
  104. time_t  mtime_1,
  105. mtime_2;
  106. mtime_1 = (*(FILE_LIST **)item1)->mtime; 
  107. mtime_2 = (*(FILE_LIST **)item2)->mtime;
  108. if (mtime_1 > mtime_2)
  109. { return 1;
  110. }
  111. if (mtime_1 < mtime_2)
  112. { return -1;
  113. }
  114. return strcmp((*(FILE_LIST **)item1)->name, (*(FILE_LIST **)item2)->name);
  115. }
  116. /* -------------------------------------------------------------------- */
  117. /* -------------------------------------------------------------------- */
  118. static FILE_LIST *qsort_list(FILE_LIST *list)
  119. {
  120. int  count,
  121. i;
  122. FILE_LIST 
  123. **file_list_array,
  124. *item;
  125. count = num_items_in_list(list);
  126. file_list_array = (FILE_LIST **)malloc(sizeof(FILE_LIST *) * count);
  127. if (file_list_array == NULL)
  128. {
  129. fprintf(stderr, "Error: malloc() failedn");
  130. exit(1);
  131. }
  132. item = list;
  133. for (i=0; item != NULL; i++)
  134. { file_list_array[i] = item;
  135. item = item->next;
  136. }
  137. qsort(file_list_array, count, sizeof(FILE_LIST *), file_item_compare);
  138. list = file_list_array[0];
  139. for (i=0; i<count-1; i++)
  140. { file_list_array[i]->next = file_list_array[i+1];
  141. }
  142. file_list_array[i]->next = NULL;
  143. free(file_list_array);
  144. return list;
  145. }
  146. /* -------------------------------------------------------------------- */
  147. /* -------------------------------------------------------------------- */
  148. static void dump_list(FILE_LIST *list)
  149. {
  150. FILE_LIST 
  151. *item;
  152. char *stype;
  153. item = list;
  154. while(item != NULL)
  155. {
  156. if (item->type == TF_CONTROL)
  157. { stype = "CONTROL";
  158. }
  159. else
  160. if (item->type == TF_DATA)
  161. { stype = "DATA";
  162. }
  163. else
  164. { stype = "UNKNOWN";
  165. }
  166. printf("%s %d %sn", item->name, (int)item->mtime, stype);
  167. item = item->next;
  168. }
  169. }
  170. /* -------------------------------------------------------------------- */
  171. /* -------------------------------------------------------------------- */
  172. static void free_list(FILE_LIST *list)
  173. {
  174. FILE_LIST 
  175. *prev_item,
  176. *item;
  177. item = list;
  178. while(item != NULL)
  179. {
  180. prev_item = item;
  181. item = item->next;
  182. free(prev_item->name);
  183. free(prev_item);
  184. }
  185. }
  186. /* -------------------------------------------------------------------- */
  187. /* -------------------------------------------------------------------- */
  188. int process_queue(char *queue)
  189. {
  190. DIR  *dir;
  191. struct  dirent 
  192. *entry;
  193. struct  stat 
  194. status;
  195. char  cwd[MAX_PATH+1];
  196. FILE_LIST 
  197. *file_list = NULL;
  198. int type;
  199. dir = opendir(queue);
  200. if (dir == NULL)
  201. { return -1;
  202. }
  203. if (getcwd(cwd, MAX_PATH+1) == NULL)
  204. { return -1;
  205. }
  206. if (chdir(queue) != 0)
  207. { return -1;
  208. }
  209. while((entry = readdir(dir)) != NULL)
  210. {
  211. if ((strcmp(entry->d_name, ".") != 0) &&
  212.     (strcmp(entry->d_name, "..") != 0))
  213. {
  214. if (stat(entry->d_name, &status) != 0)
  215. { return -1;
  216. }
  217. if (!S_ISDIR(status.st_mode))
  218. {
  219. if (strncmp(entry->d_name, "cf", 2) == 0)
  220. { type = TF_CONTROL;
  221. }
  222. else
  223. if (strncmp(entry->d_name, "df", 2) == 0)
  224. { type = TF_DATA;
  225. }
  226. else
  227. { type = TF_UNKNOWN;
  228. }
  229. file_list = add_file_item(file_list, entry->d_name, status.st_mtime, type);
  230. }
  231. }
  232. }
  233. if (closedir(dir) != 0)
  234. { return -1;
  235. }
  236. if (chdir(cwd) != 0)
  237. { return -1;
  238. }
  239. file_list = qsort_list(file_list);
  240. dump_list(file_list);
  241. free_list(file_list);
  242. return 0;
  243. }