- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我正在尝试用 c 语言创建几个管道,用于“服务器”和“接口(interface)”之间的通信。尽管我在调试时遇到问题,但遇到了一个奇怪的错误。我已经关注这个问题有一段时间了,但恐怕现在我已经忽略了它。任何帮助将不胜感激。
//server file
// include needed libraries
#include <errno.h> // system error numbers
#include <stdio.h> // Standard Input and Output Library
#include <stdlib.h> // Standard General Utilities Library
#include <string.h> // strings and arrays
#include <sys/types.h> // needed for pipes to work
#include <sys/wait.h> // for waitpid
#include <unistd.h> // sleep
#define BUFLENMES 65
#define BUFLEN2 1024
typedef struct {
char id[8];
int odometer;
float gallons;
} gasData;
// function prototype for comparing ID values
// using void in order to use built-in sort function
int compareID(const void *, const void *);
/**************** Main function *******************/
int main (int argc, char *argv[]) {
// initialize values for file reading
int iter = 0,
value = 0,
command,
outputFD;
// set up based on spaces used for delimtation
char id[8],
odometer[6],
gallons[8],
err,
buffer[BUFLEN2+1];
// get input and output file descriptors for pipes
err = sscanf (argv[1], "%d", &command);
if (err == 0) {
printf("Parameter must be an integer.\n");
exit(2);
}
err = sscanf (argv[2], "%d", &outputFD);
if (err == 0) {
printf("Parameter must be an integer.\n");
exit(2);
}
// initialize struct
gasData gasRecords[20];
// open file that contains the gas data
FILE *iFile;
iFile = fopen ("./gasData.txt", "r");
//read file for records
do {
value = fscanf (iFile, "%8s", id);
value = fscanf (iFile, "%6s", odometer);
value = fscanf (iFile, "%8s", gallons);
//store values in gasRecords struct
strcpy(gasRecords[iter].id, id);
sscanf (odometer, "%d", &gasRecords[iter].odometer);
sscanf (gallons, "%f", &gasRecords[iter].gallons);
// move to next record
iter++;
} while (value != EOF);
fclose(iFile);
// use iter to print records stored into struct
printf("\nRecords Stored\n");
for(int i = 0; i < (iter -1) ; i++) {
printf("element = %d: ", i);
printf("id = %s, ", gasRecords[i].id);
printf("odometer = %d, ", gasRecords[i].odometer);
printf("gallons = %f\n", gasRecords[i].gallons);
}
printf("\n");
/***************** act as server ****************/
int odom[iter-1],
count;
float averageMPG;
// checking commands
do {
char subString[8],
finalMessage[BUFLEN2+1],
message[BUFLENMES+1],
temp[20];
err = read (command, buffer, BUFLEN2);
if (err == -1 ) {
printf ("Error on read from pipe [server]: %d\n", errno);
exit (3);
}
buffer[BUFLEN2] = '\0';
if(strstr(buffer, "list,")) {
count = 0;
// get second part of command after the firs 5 chars
for(int i =0; i < 10; i++) {
subString[i] = buffer[i + 5];
}
// loop through structure for other IDs
for(int i =0; i < (iter-1); i++) {
if(!strcmp(gasRecords[i].id, subString)) {
odom[i] = gasRecords[i].odometer;
}
}
// sort using compareID below and qsort
qsort(odom, (iter-1), sizeof(int), compareID);
while(count < (iter-1)) {
// for each element in odom, check gasRecords
for(int i=0; i < (iter-1); i++) {
// if both the ID and the odometer match, send back to interface
if(!strcmp(gasRecords[i].id, subString) &&
odom[count] == gasRecords[i].odometer) {
char message2[65],
temp2[20];
sprintf(temp2, "element %d: ", i);
strcpy(message2, temp2);
sprintf(temp2, "id = %s, ", gasRecords[i].id);
strcat(message2, temp2);
sprintf(temp2, "odometer = %d, ", gasRecords[i].odometer);
strcat(message2, temp2);
sprintf(temp2, "gallons %f\n", gasRecords[i].gallons);
strcat(message2, temp2);
strcat(finalMessage, message2);
}
}
count++;
}
strcat(finalMessage, '\0');
err = write (outputFD, finalMessage, strlen(finalMessage)+1);
if (err == -1 ) {
printf ("Error on write to interface: %d\n", errno);
exit (3);
}
}
else if(strstr(buffer, "mpg,")) {
averageMPG = 0.0;
count = 0;
// get ID into subString
for(int i = 0; i < 10; i++) {
subString[i] = buffer[i + 4];
}
// search for mpg data for id and add it up
for(int i = 0; i < (iter-1); i++) {
if(!strcmp(gasRecords[i].id, subString)) {
averageMPG += gasRecords[i].gallons;
count++;
}
}
sprintf(temp, "Average MPG = %f\n", (averageMPG/count));
strcpy(message, temp);
message[BUFLENMES] = '\0';
err = write (outputFD, message, strlen(message)+1);
if (err == -1 ) {
printf ("Error on write to interface: %d\n", errno);
exit (3);
}
}
// if exit is entered print "response: Server complete."
else if(!strcmp(buffer, "exit")) {
strcpy(message, "Server complete");
message[BUFLENMES] = '\0';
err = write (outputFD, message, strlen(message)+1);
if (err == -1 ) {
printf ("Error on write to interface: %d\n", errno);
exit (3);
}
}
// check for invalid command
else {
strcpy(message, "Invalid command");
message[BUFLENMES] = '\0';
err = write (outputFD, message, strlen(message)+1);
if (err == -1 ) {
printf ("Error on write to interface: %d\n", errno);
exit (3);
}
}
} while(strcmp(buffer, "exit"));
return 0;
}
/****************** Function *********************/
int compareID(const void *first, const void *second) {
int f = *((int*)first);
int s = *((int*)second);
if (f > s)
return 1;
else if (s > f)
return -1;
else
return 0;
}
这是我的界面文件
// interface file
#include <errno.h> // system error numbers
#include <stdio.h> // Standard Input and Output Library
#include <stdlib.h> // Standard General Utilities Library
#include <string.h> // strings and arrays
#include <sys/types.h> // needed for pipes to work
#include <sys/wait.h> // for waitpid
#include <unistd.h> // sleep
// define buffer length
#define BUFLEN 1024
int main (int argc, char *argv[])
{
int err,
i,
id,
status,
pError;
char buffer[BUFLEN+1],
command[20],
tochild[2],
toparent[2];
int toChild[2]; // if toChild[1], then writting to child
int toParent[2]; // if toParent[1], then writting to parent
// turning tochild into a pipe and checking for an error
err = pipe(toChild);
if ( err == -1) {
printf ("Error on pipe creation: %d\n", errno);
exit (1);
}
err = pipe(toParent);
if ( err == -1) {
printf ("Error on pipe creation: %d\n", errno);
exit (1);
}
// create child process
id = fork ();
// if id = 0, in child process
if ( id == 0 ) {
// set up pipes for passing into server
close (toChild[1]);
close (toParent[0]);
sprintf(tochild, "%d", toChild[0]);
sprintf(toparent, "%d", toParent[1]);
tochild[1] = '\0';
toparent[1] = '\0';
// exec into server, print records, and wait for instructions
err = execl("server", "server", tochild, toparent, 0);
if ( err == -1) {
printf ("Error on execl: %d\n", errno);
exit (1);
}
}
// if id > 0, in parent process
else if ( id > 0 ) {
close (toChild[0]);
close (toParent[1]);
sleep(1);
do {
printf("Input command: ");
scanf("%s", command);
command[19] = '\0';
err = write (toChild[1], command, strlen(command)+1);
if (err == -1 ) {
printf ("Error on write to pipe: %d\n", errno);
exit (3);
}
// parent reads back reponse from server read toParent[0]
err = read (toParent[0], buffer, BUFLEN);
if (err == -1 ) {
printf ("Error on read from pipe: %d\n", errno);
exit (3);
}
buffer[BUFLEN] = '\0';
printf ("Response: %s", buffer);
printf("\n");
} while(strcmp(command, "exit") != 0);
pError = waitpid(-1, &status, 0);
printf("Interface: child process (%d) completed.\n", id);
printf("Interface: child process exit status = %d.\n", status);
printf("Interface: Complete.\n");
exit (0);
}
else{
printf("Error creating forked process");
exit (4);
}
}
//编译和错误
csci2>g++ -o server Server.c
csci2>g++ Interface3.c
csci2>a.out
Records Stored
element = 0: id = red, odometer = 90229, gallons = 13.500000
element = 1: id = red, odometer = 90345, gallons = 14.500000
element = 2: id = red, odometer = 90453, gallons = 14.200000
element = 3: id = green, odometer = 23000, gallons = 32.000000
element = 4: id = green, odometer = 23300, gallons = 31.500000
element = 5: id = green, odometer = 23546, gallons = 37.799999
element = 6: id = , odometer = 120000, gallons = 23.700001
element = 7: id = , odometer = 120200, gallons = 24.670000
element = 8: id = , odometer = 120423, gallons = 26.799999
element = 9: id = 9045, odometer = 67321, gallons = 30.100000
element = 10: id = 9045, odometer = 67412, gallons = 15.900000
element = 11: id = 9045, odometer = 67689, gallons = 18.900000
Input command: mpg,red
Response: Average MPG = 14.066667
Input command: mgp,green
Response: Invalid command
Input command: mpg,green
Response: Average MPG = 33.766668
Input command: mpg,9045
Response: Average MPG = 21.633334
Input command: list,red
Response: Average MPG = 21.633334
Input command: list,red
Broken pipe
/* end */
值得注意的是,中间 ID 也没有正确传输。我有一个 .txt 文件,其中包含以下信息:
red 90229 13.5
red 90345 14.5
red 90453 14.2
green 23000 32.0
green 23300 31.5
green 23546 37.8
1489 120000 23.7
1489 120200 24.67
1489 120423 26.8
9045 67321 30.1
9045 67412 15.9
9045 67689 18.9
最佳答案
我想我知道出了什么问题,就是这个
buffer[BUFLEN] = '\0';
如果收到的消息小于该值,那么您没有 nul
正确终止字符串,您应该
buffer[err] = '\0';
因为read()
返回成功读取的字节数。
当然,这同样适用于这个buffer[BUFLEN2] = '\0';
。
关于c - 使用 c 进行系统调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28666318/
我喜欢 smartcase,也喜欢 * 和 # 搜索命令。但我更希望 * 和 # 搜索命令区分大小写,而/和 ?搜索命令遵循 smartcase 启发式。 是否有隐藏在某个地方我还没有找到的设置?我宁
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 10年前关闭。 Improve this qu
从以下网站,我找到了执行java AD身份验证的代码。 http://java2db.com/jndi-ldap-programming/solution-to-sslhandshakeexcepti
似乎 melt 会使用 id 列和堆叠的测量变量 reshape 您的数据框,然后通过转换让您执行聚合。 ddply,从 plyr 包看起来非常相似..你给它一个数据框,几个用于分组的列变量和一个聚合
我的问题是关于 memcached。 Facebook 使用 memcached 作为其结构化数据的缓存,以减少用户的延迟。他们在 Linux 上使用 UDP 优化了 memcached 的性能。 h
在 Camel route ,我正在使用 exec 组件通过 grep 进行 curl ,但使用 ${HOSTNAME} 的 grep 无法正常工作,下面是我的 Camel 路线。请在这方面寻求帮助。
我正在尝试执行相当复杂的查询,在其中我可以排除与特定条件集匹配的项目。这是一个 super 简化的模型来解释我的困境: class Thing(models.Model) user = mod
我正在尝试执行相当复杂的查询,我可以在其中排除符合特定条件集的项目。这里有一个 super 简化的模型来解释我的困境: class Thing(models.Model) user = mod
我发现了很多嵌入/内容项目的旧方法,并且我遵循了在这里找到的最新方法(我假设):https://blog.angular-university.io/angular-ng-content/ 我正在尝试
我正在寻找如何使用 fastify-nextjs 启动 fastify-cli 的建议 我曾尝试将代码简单地添加到建议的位置,但它不起作用。 'use strict' const path = req
我正在尝试将振幅 js 与 React 和 Gatsby 集成。做 gatsby developer 时一切看起来都不错,因为它发生在浏览器中,但是当我尝试 gatsby build 时,我收到以下错
我试图避免过度执行空值检查,但同时我想在需要使代码健壮的时候进行空值检查。但有时我觉得它开始变得如此防御,因为我没有实现 API。然后我避免了一些空检查,但是当我开始单元测试时,它开始总是等待运行时异
尝试进行包含一些 NOT 的 Kibana 搜索,但获得包含 NOT 的结果,因此猜测我的语法不正确: "chocolate" AND "milk" AND NOT "cow" AND NOT "tr
我正在使用开源代码共享包在 iOS 中进行 facebook 集成,但收到错误“FT_Load_Glyph failed: glyph 65535: error 6”。我在另一台 mac 机器上尝试了
我正在尝试估计一个标准的 tobit 模型,该模型被审查为零。 变量是 因变量 : 幸福 自变量 : 城市(芝加哥,纽约), 性别(男,女), 就业(0=失业,1=就业), 工作类型(失业,蓝色,白色
我有一个像这样的项目布局 样本/ 一种/ 源/ 主要的/ java / java 资源/ .jpg 乙/ 源/ 主要的/ java / B.java 资源/ B.jpg 构建.gradle 设置.gr
如何循环遍历数组中的多个属性以及如何使用map函数将数组中的多个属性显示到网页 import React, { Component } from 'react'; import './App.css'
我有一个 JavaScript 函数,它进行 AJAX 调用以返回一些数据,该调用是在选择列表更改事件上触发的。 我尝试了多种方法来在等待时显示加载程序,因为它当前暂停了选择列表,从客户的 Angul
可能以前问过,但找不到。 我正在用以下形式写很多语句: if (bar.getFoo() != null) { this.foo = bar.getFoo(); } 我想到了三元运算符,但我认
我有一个表单,在将其发送到 PHP 之前我正在执行一些验证 JavaScript,验证后的 JavaScript 函数会发布用户在 中输入的文本。页面底部的标签;然而,此消息显示短暂,然后消失...
我是一名优秀的程序员,十分优秀!