- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
此程序模拟 Dijkstra 生产者/消费者问题的变体。首先创建管道,然后使用 fork() 创建子进程。然后, child 将向管道写入一段粗略地随机生成的“股票行情信息”。等待子/生产者进程写入此信息后,父/消费者进程将其读出。
第一个输出是正确的:
Produced: FPOO 57.83 +0.43
Consumed: FPOO 57.83 +0.43
然而,此后的任何输出将始终显示“已消耗:来自第一次阅读的信息”:
Produced: RJII 71.30 -2.71
Consumed: FPOO 57.83 +0.43
我不确定为什么会发生这种情况,因为我的 tickerInfo 正在改变。这就是为什么我怀疑我没有正确读取管道,或者我的 fork 进程可能结构不正确。
我已经用 g++ 编译了代码。它需要一个参数作为您希望程序运行的秒数。
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
// generate info for each stock entry
void generateTickerInfo(char * info) {
int i;
int randNum = 0;
srand(time(NULL)); // generate seed for random
// generate 4 characters for STOCK sym
for(i = 0; i < 4; i++) {
randNum = rand() % 26 + 65;
info[i] = (char)(randNum);
}
info[4] = ' ';
// generate price traded
for(i = 5; i < 7; i++) {
randNum = rand() % 8 + 1;
info[i] = '0' + randNum;
}
info[7] = '.';
for(i = 8; i < 10; i++) {
randNum = rand() % 9;
info[i] = '0' + randNum;
}
info[10] = ' ';
// determine if + or - for change amount
randNum = rand();
if(randNum % 2 == 1) {
info[11] = '+';
}
else {
info[11] = '-';
}
// generate change amount
randNum = rand() % 9;
info[12] = '0' + randNum;
info[13] = '.';
for(i = 14; i < 16; i++) {
randNum = rand() % 9;
info[i] = '0' + randNum;
}
}
// ** constant and global variables **
const int BUFFER_SIZE = 25;
// ** main code **
int main(int argc, char *argv[]) {
pid_t cpid; // child process id
int myPipe[2]; // [0] read, [1] write
char * tickerInfo; // hold current tickerInfo
tickerInfo = new char[BUFFER_SIZE]; // info passed through pipe
char buf[BUFFER_SIZE];
time_t currentTime, stopTime;
// initialize time variables
if(argc < 2) {
printf("Invalid arg. Type as 'foo.out (# seconds)'");
exit(0);
}
else {
currentTime = time(NULL);
stopTime = time(NULL) + (time_t)atoi(argv[1]);
}
int pipeReturn = pipe(myPipe);
if(pipeReturn == -1) { // handle pipe creation error
perror("pipe error...");
exit(0);
}
// main loop; continue until desired time has elapsed
while(currentTime < stopTime) {
cpid = fork();
if(cpid < 0) { // handle process creation error
perror("forking error...\n");
exit(0);
}
else if(cpid == 0) { // child process
close(myPipe[0]); // child does not need to read
generateTickerInfo(tickerInfo);
write(myPipe[1], tickerInfo, BUFFER_SIZE);
printf("Produced: %s\n", tickerInfo);
exit(0);
}
else if(cpid > 0) { // parent process
wait(0);
close(myPipe[1]); // parent does not need to write
read(myPipe[0], buf, BUFFER_SIZE);
printf("Consumed: %s\n", buf);
}
sleep(1);
currentTime = time(NULL);
}
return 0;
}
最佳答案
在第一个子进程完成并关闭父进程中管道的写入端后,您返回到循环顶部并创建另一个子进程。这个 child 没有继承写 fd。写入的 fd 不见了。第二个 child 中的 write
失败,但您没有检查它的返回值是否有错误,所以您没有注意到。
然后父进程从管道中读取一个 EOF,因为没有剩余的写入器。由于您也没有检查 read
返回值(您养成的坏习惯!)您没有注意到这一点,只是打印仍然包含其先前内容的缓冲区。
关于c - Linux-C : reading from pipe returns first buffer written to it,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29528444/
我期望 new Buffer(buffer.toString()) 始终是逐字节相等的。但是,我遇到的情况并非如此。 首先,这是一个真实的案例: var buf1 = new Buffer(32);
我有用于记录数据的 Protocol Buffer 。 message Message { required double val1 = 1; optional int val2 =
请注意以下简单程序(基于 protobuf-net 项目 v1 wiki 中的示例): using System.Collections.Generic; using System.Diagnosti
在 Protocol Buffer 中,有没有办法让消息包含嵌套消息的集合?例如,消息主管可能有一个员工集合以及主管的姓名和部门。 最佳答案 是的。您使用 repeated领域; message Em
我想知道 Protocol Buffer 在解析流时如何处理损坏的数据。有没有办法知道数据是否已损坏。 Protocol Buffer 是否提供任何内置的数据完整性检查机制? 谢谢, 最佳答案 没有任
Protocol Buffer 如何处理类型版本控制? 例如,当我需要随时间更改类型定义时?就像添加和删除字段一样。 最佳答案 Google 设计的 protobuf 对版本控制非常宽容: 意外数据要
我尝试阅读 Protobuf 文档,但无法想象它可以用于许多用例。我想知道一些实际的 Protocol Buffer 性能改进用例。 谢谢 最佳答案 Protocol buffers 是一个序列化库,
给定 Protocol Buffer 模式和一些数据, Protocol Buffer 序列化是否跨库和语言具有确定性? 基本上,无论使用什么库,我是否可以保证相同的数据总是以相同的方式(直到字节)序
我正在使用一个示例 UWP C++/CX 程序,该程序创建两个 UDP 网络通信线程,它们使用 Windows::Storage::Streams::DataWriter 相互发送数据。和 Windo
我正在使用以下代码 int lenSend = odl->ByteSize(); char* buf = (char *)malloc(lenSend); odl->SerializeToArray(
Protocol Buffer 文档警告说...... You should never add behaviour to the generated classes by inheriting fr
我有一个定义如下的原型(prototype)模式, message User { int64 id = 1; bool email_subscribed = 2; bool sms_
我试图了解 Protocol Buffer 编码方法,将消息转换为二进制(或十六进制)格式时,我无法理解嵌入消息的编码方式。 我猜可能和内存地址有关,但我找不到准确的关系。 这是我所做的。 第 1 步
我需要序列化和反序列化一系列与字节流之间的 Protocol Buffer 消息。有一些预先确定的消息类型。编码类型信息的推荐方法是什么,以便我的应用程序可以知道它应该读取哪种类型? 最佳答案 最常见
与GSON相比, Protocol Buffer (protobuf)的优缺点是什么? 在什么情况下,protobuf比GSON更合适? 对于一个非常笼统的问题,我感到抱歉。 最佳答案 json(通过
message Person { required Empid = 1 [default = 100]; required string name = 2 [default = "Raju"]
我正在研究一个小型设备,该设备具有相当大的一组配置参数(~100 KB),这些参数是从 PC 软件生成的。过去,我们将参数存储在二进制文件中并将它们加载到数据结构中。维护有点烦人(不同的语言,确保结构
来自Encoding - Protocol Buffers - Google Code上的“签名类型”: ZigZag encoding maps signed integers to unsigne
我正在使用 Protocol Buffer ,一切正常。除了我不明白的事实 - 为什么我需要 proto 中的编号标签文件 : message SearchRequest { required s
Protocol Buffer 的吸引人的功能之一是它允许您扩展消息定义,而不会破坏使用较旧定义的代码。对于枚举according to the documentation: a field with
我是一名优秀的程序员,十分优秀!