process.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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 message = "Корней нет";
  146. }
  147. write(file, message, strlen(message));
  148. close(file);
  149. switch (countRoot)
  150. {
  151. case 0: exit(0);
  152. case 1: exit(1);
  153. case 2: exit(2);
  154. default: exit(-1);
  155. }
  156. }
  157. char *readFileResult(char *name)
  158. {
  159. int file = open(name, O_RDONLY);
  160. if (file == -1) printf("Ошибка чтения файла результата");
  161. else
  162. {
  163. struct stat buf;
  164. fstat(file, &buf);
  165. int size = buf.st_size;
  166. char *arr = malloc(size * sizeof(char));
  167. read(file, arr, size);
  168. close(file);
  169. return arr;
  170. }
  171. }
  172. int main()
  173. {
  174. printf("Родитель %d считывает информацию\n", getpid());
  175. char *fileResult = "result.txt";
  176. double *arr = readFile("coefficients.txt");
  177. int status;
  178. char* show;
  179. switch (fork())
  180. {
  181. case -1: exit(-1); break; //ошибка
  182. case 0: //выполняется у дочернего процесса
  183. printf("Ребенок %d записывает ответ в файл\n", getpid());
  184. if (arr)
  185. writeRootsToFile(fileResult, arr[0], arr[1], arr[2]);
  186. else
  187. error(fileResult);
  188. break;
  189. }
  190. wait(&status); //Ожидание завершения дочернего процесса
  191. switch (status)
  192. {
  193. case 0: printf("Корней нет\n"); break;
  194. case 1:
  195. show = readFileResult(fileResult);
  196. printf("%s", show);
  197. break;
  198. case 2:
  199. show = readFileResult(fileResult);
  200. printf("%s", show);
  201. break;
  202. default: printf("Что-то пошло не так\n"); break;
  203. }
  204. return 0;
  205. }