process.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <math.h>
  4. #include <malloc.h>
  5. #include <string.h>
  6. #include <stdlib.h>
  7. #include <fcntl.h> //работа с файлами
  8. #include <unistd.h> // закрытие файла
  9. #include <sys/stat.h> //S_IRWXU
  10. #include <sys/wait.h> //wait
  11. double *getCoeff(int start, int end, char *arr)
  12. {
  13. double *coeff = malloc(sizeof(double));
  14. *coeff = 0;
  15. int znak = 1, drob = 0, step = 0;
  16. if (arr[start] == '-')
  17. {
  18. znak = -1;
  19. start++;
  20. }
  21. for (int k = start; k < end; k++)
  22. {
  23. if ((arr[k] >= '0' && arr[k] <= '9') || arr[k] == '.')
  24. {
  25. if (drob == 0 && arr[k] == '.')
  26. drob = 1;
  27. else if (arr[k] >= '0' && arr[k] <= '9')
  28. {
  29. if (drob == 0)
  30. {
  31. *coeff = (*coeff * pow(10, step)) + (arr[k] - '0');
  32. step++;
  33. }
  34. else
  35. {
  36. *coeff += (arr[k] - '0') / pow(10, drob);
  37. drob++;
  38. }
  39. }
  40. else
  41. return NULL;
  42. }
  43. else
  44. return NULL;
  45. }
  46. *coeff = *coeff * znak;
  47. return coeff;
  48. }
  49. double *readFile(char *name)
  50. {
  51. int file = open(name, O_RDONLY); // Открытие файла только для чтения NULL
  52. if (file == -1)
  53. {
  54. printf("Ошибка чтения файла");
  55. }
  56. else
  57. {
  58. struct stat buf; // структура из файла stat.h
  59. fstat(file, &buf);
  60. int size = buf.st_size;
  61. char *arr = malloc(size * sizeof(char));
  62. read(file, arr, size);
  63. close(file);
  64. double *coeff = malloc(3 * sizeof(double));
  65. int countSpace = 0;
  66. int *index = malloc(size * sizeof(int));
  67. for (int i = 0; i < size; i++)
  68. {
  69. if (arr[i] == ' ')
  70. {
  71. countSpace++;
  72. index = realloc(index, countSpace * sizeof(int));
  73. index[countSpace - 1] = i;
  74. }
  75. }
  76. if (countSpace > 2)
  77. return NULL;
  78. int startIndex = 0; // начинается с 0, далее - все ячейки после пробела
  79. double *pointer;
  80. for (int i = 0; i < countSpace; i++)
  81. {
  82. pointer = getCoeff(startIndex, index[i], arr);
  83. startIndex = index[i] + 1;
  84. if (pointer)
  85. coeff[i] = *pointer;
  86. else
  87. return NULL;
  88. }
  89. pointer = getCoeff(startIndex, size, arr);
  90. if (pointer)
  91. coeff[countSpace] = *pointer;
  92. else
  93. return NULL;
  94. return coeff;
  95. }
  96. }
  97. int error(char *name)
  98. {
  99. int file = open(name, O_RDWR | O_CREAT | O_TRUNC, S_IRWXU); // Создать файл на чтение и запись и стереть данные если существует
  100. char *message = "Файл содержит символы или другие некорректные данные";
  101. write(file, message, strlen(message));
  102. close(file);
  103. return 0;
  104. }
  105. int writeRootsToFile(char *name, double a, double b, double c)
  106. {
  107. int file = open(name, O_RDWR | O_CREAT | O_TRUNC, S_IRWXU);
  108. char *message = malloc(50);
  109. int countRoot = 0;
  110. if (a == 0) // проверка корректности
  111. {
  112. if (b == 0)
  113. {
  114. if (c == 0)
  115. message = "Уравнение имеет бесконечно много решений.";
  116. else
  117. message = "Уравнение не имеет решений.";
  118. }
  119. else
  120. {
  121. double x = -c / b; // Линейное уравнение
  122. sprintf(message, "Уравнение имеет одно решение: x = %.2lf", x);
  123. countRoot = 1;
  124. }
  125. }
  126. else
  127. {
  128. double D = pow(b, 2) - (double)4 * a * c;
  129. if (D >= 0)
  130. {
  131. if (D == 0)
  132. {
  133. double x = (-b) / (2 * a);
  134. sprintf(message, "Корень один: %0.2lf", x);
  135. countRoot = 1;
  136. }
  137. else
  138. {
  139. double x1 = (-b + sqrt(D)) / (2 * a);
  140. double x2 = (-b - sqrt(D)) / (2 * a);
  141. sprintf(message, "Корни уравнения: %0.2lf, %0.2lf", x1, x2);
  142. countRoot = 2;
  143. }
  144. }
  145. else
  146. message = "Корней нет";
  147. }
  148. write(file, message, strlen(message));
  149. close(file);
  150. switch (countRoot)
  151. {
  152. case 0:
  153. exit(0);
  154. case 1:
  155. exit(1);
  156. case 2:
  157. exit(2);
  158. default:
  159. exit(-1);
  160. }
  161. }
  162. char *readFileResult(char *name)
  163. {
  164. int file = open(name, O_RDONLY);
  165. if (file == -1)
  166. printf("Ошибка чтения файла результата");
  167. else
  168. {
  169. struct stat buf;
  170. fstat(file, &buf);
  171. int size = buf.st_size;
  172. char *arr = malloc(size * sizeof(char));
  173. read(file, arr, size);
  174. close(file);
  175. return arr;
  176. }
  177. }
  178. int main()
  179. {
  180. printf("Родитель %d считывает информацию\n", getpid());
  181. char *fileResult = "result.txt";
  182. double *arr = readFile("coefficients.txt");
  183. int status;
  184. char *show;
  185. int flag = 0;
  186. switch (fork())
  187. {
  188. case -1:
  189. exit(-1);
  190. break; // ошибка
  191. case 0:
  192. printf("Ребенок %d записывает ответ в файл\n", getpid());
  193. if (arr)
  194. {
  195. writeRootsToFile(fileResult, arr[0], arr[1], arr[2]);
  196. flag = 0;
  197. }
  198. else
  199. {
  200. error(fileResult);
  201. flag = -1;
  202. }
  203. break;
  204. }
  205. wait(&status); // Ожидание завершения дочернего процесса
  206. int exitStatus = WIFEXITED(status); //WIFEXITED возвращает ненулевое значение, если дочерний процесс завершился нормально с помощью exit
  207. printf("Статус: %d\n", exitStatus);
  208. if (flag == 0)
  209. {
  210. switch (exitStatus)
  211. {
  212. case 0:
  213. printf("Корней нет\n");
  214. break;
  215. case 1:
  216. show = readFileResult(fileResult);
  217. printf("%s\n", show);
  218. break;
  219. case 2:
  220. show = readFileResult(fileResult);
  221. printf("%s\n", show);
  222. break;
  223. default:
  224. printf("Что-то пошло не так\n");
  225. break;
  226. }
  227. }
  228. return 0;
  229. }