- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
开始研究windows下的匿名管道,遇到了一个问题。
程序应该创建一个子进程来处理给定的输入命令。但是在子进程工作之前我无法从管道中读取。
这是程序
#define _CRT_SECURE_NO_DEPRECATE
#include "windows.h"
#include "cstdio"
#include "tchar.h"
#include "io.h"
#include "conio.h"
#include "cstring"
static const int bufSize = 20;
int main() {
STARTUPINFO si;
PROCESS_INFORMATION pi;
LPTSTR szCmdline = _tcsdup(TEXT("Project2\\Release\\command_handler.exe"));
HANDLE writePipe, readPipe, writePipeInput, readPipeInput;
SECURITY_ATTRIBUTES sa;
ZeroMemory(&si, sizeof(STARTUPINFO));
si.cb = sizeof(STARTUPINFO);
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
sa.lpSecurityDescriptor = NULL;
sa.bInheritHandle = TRUE;
if(!CreatePipe(&readPipe, &writePipe, &sa, 0) || !CreatePipe(&readPipeInput, &writePipeInput, &sa, 0))
{
printf("ERROR: cannot create pipe\n");
system("pause");
exit(1);
}
si.dwFlags = STARTF_USESTDHANDLES;
si.hStdOutput = writePipe;
si.hStdInput = readPipeInput;
DWORD dwByteRead, dwByteWrite;
if(!CreateProcess(0, szCmdline, 0, 0, TRUE, CREATE_NO_WINDOW, 0, 0, &si, &pi)) {
printf("ERROR: cannot create process\n");
system("pause");
exit(2);
}
CloseHandle(writePipe);
CloseHandle(readPipeInput);
printf("Procces ready!\n");
TQueue <int> q;
TQueue <int> tmp;
char c;
char s[bufSize];
int value;
for ( ; ; ) {
int i;
for(i = 0;i < bufSize && (s[i] = getchar()) != '\n';++i);
WriteFile(writePipeInput,s,i + 1,&dwByteWrite,NULL);
ReadFile(readPipe, &c, (int)1, &dwByteRead, NULL);
printf("Get : '%c'\n",c);
switch (c) {
case '+':
ReadFile(readPipe, &value, sizeof(int), &dwByteRead, NULL);
printf("%d\n",value);
q.push(value);
printf("OK\n");
break;
case '-':
if (!q.empty()) {
q.pop();
}
printf("OK\n");
break;
case 'f':
if (!q.empty()) {
printf("%d\nOK\n",q.firstEl());
} else {
printf("Queue is empty\nOK\n");
}
break;
case 'p':
if (q.empty()) {
printf("empty");
}
while (!q.empty()) {
tmp.push(q.firstEl());
printf("%d ",q.firstEl());
q.pop();
}
printf("\nOK\n");
while (!tmp.empty()) {
q.push(tmp.firstEl());
tmp.pop();
}
break;
case 'e':
printf("%s\nOK\n",q.empty()?"yes!":"no");
break;
case 'q':
break;
case '?':
printf("ERROR: undefined command\n");
break;
default:
printf("Fatal error: wrong symbol from hadeler '%c'\n",c);
//system("pause");
//exit(3);
}
if (c == 'q') break;
}
CloseHandle(readPipe);
CloseHandle(writePipeInput);
printf("Exited normaly\n");
system("pause");
}
这是处理程序
#define _CRT_SECURE_NO_DEPRECATE
#include <stdio.h>
#include <string.h>
static const int sz = 10;
char read_cmd(char *s) {
char c = getchar();
int i;
for (i = 0;(i < sz) && (c != ' ') && (c != '\n');i++) {
s[i] = c;
c = getchar();
// printf("%c",s[i]);
}
s[i] = '\0';
return c;
}
char correct(char res) {
if (res != '\n') {
while (getchar() != '\n');
return 0;
}
return 1;
}
int main() {
char s[sz + 1];
char c, res;
int val = 0;
for ( ; ; ) {
res = read_cmd(s);
if (strcmp(s,"add") == 0) {
val = 0;
while ((c = getchar()) >= '0' && c <= '9') {
val = val * 10 + c - '0';
}
res = c;
c = '+';
}else if (strcmp(s,"pop") == 0) {
c = '-';
}else if (strcmp(s,"first") == 0) {
c = 'f';
}else if (strcmp(s,"print") == 0) {
c = 'p';
}else if (strcmp(s,"empty") == 0) {
c = 'e';
}else if (strcmp(s,"help") == 0) {
c = 'h';
}else if (strcmp(s,"quit") == 0) {
c = 'q';
}else {
c = '?';
}
if (!correct(res)) c = '?';
printf("%c",c);
if (c == 'q') break;
if (c == '+') printf("%d",val);
}
return 0;
}
因此,如果我运行它并立即键入“退出”,它就会工作,否则它会在尝试从输出管道获取结果时停止。
为什么会这样?
预先感谢您的回复。
最佳答案
我再次重写了程序,它成功了。老实说,我不知道有没有不正确的。这是一个工作版本:
#define _CRT_SECURE_NO_DEPRECATE
#include <windows.h>
#include <stdio.h>
#define BUFSIZE 256
template <class T> class TQueue {
private:
class TQueEl {
public:
T value;
TQueEl *next, *prev;
};
TQueEl *first, *last;
int size;
public:
int& operator = (TQueue <T>& b){
while (!empty ()) {
pop ();
}
while (!b.empty ()) {
push(b.firstEl ());
b.pop ();
}
}
TQueue () {
size = 0;
first = last = nullptr;
}
void push (T val) {
if (size == 0) {
first = last = new TQueEl;
first -> next = first -> prev = nullptr;
first -> value = val;
} else {
last -> next = new TQueEl;
last -> next -> prev = last;
last = last -> next;
last -> next = nullptr;
last -> value = val;
}
size++;
}
T firstEl () {
return first -> value;
}
void pop () {
TQueEl *tmp=first;
if (size == 1) {
first = last = nullptr;
}
else if ( empty() ) {
// error("pop of empty queue");
}
else {
first = first -> next;
first -> prev = nullptr;
}
size--;
delete tmp;
}
bool empty () {
return !size;
}
~TQueue () {
TQueEl *tmp;
while (first != nullptr) {
tmp = first;
first = first -> next;
delete tmp;
}
}
};
DWORD WINAPI rerout(LPVOID params) {
DWORD dwByteWrite, dwByteRead;
char buffer[BUFSIZE];
HANDLE hParentStdIn = GetStdHandle(STD_INPUT_HANDLE);
HANDLE childInput = (HANDLE) params;
for ( ; ; ) {
ReadFile(hParentStdIn, buffer, BUFSIZE, &dwByteRead, NULL);
WriteFile(childInput, buffer, dwByteRead, &dwByteWrite, NULL);
}
return 0;
}
int main() {
HANDLE childInputRd = NULL;
HANDLE childInputWr = NULL;
HANDLE childOutputRd = NULL;
HANDLE childOutputWr = NULL;
SECURITY_ATTRIBUTES sa;
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
sa.bInheritHandle = TRUE;
sa.lpSecurityDescriptor = NULL;
if ( ! CreatePipe(&childOutputRd, &childOutputWr, &sa, 0) ) {
printf("Fatal error: cannot create child output pipe\n");
system("pause");
exit(1);
}
if (! CreatePipe(&childInputRd, &childInputWr, &sa, 0)) {
printf("Fatal error: cannot create child input pipe\n");
system("pause");
exit(2);
}
TCHAR szCmdline[]=TEXT("Project2\\Release\\command_handler.exe");
PROCESS_INFORMATION pi;
STARTUPINFO si;
ZeroMemory( &pi, sizeof(PROCESS_INFORMATION) );
ZeroMemory( &si, sizeof(STARTUPINFO) );
si.cb = sizeof(STARTUPINFO);
si.hStdError = childOutputWr;
si.hStdOutput = childOutputWr;
si.hStdInput = childInputRd;
si.dwFlags = STARTF_USESTDHANDLES;
if ( !CreateProcess(NULL, szCmdline, NULL, NULL, TRUE, 0, NULL, NULL, &si, &pi) ) {
printf("Fatal error: cannot create child process\n");
system("pause");
exit(3);
}
else {
CloseHandle(childInputRd);
CloseHandle(childOutputWr);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
}
DWORD reroutThreadID;
HANDLE inputRerouting = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)rerout,(LPVOID) childInputWr,0 , &reroutThreadID);
if (inputRerouting == NULL) {
printf("Fatal error: cannot create thread\n");
system("pause");
exit (4);
}
TQueue <int> q;
TQueue <int> tmp;
DWORD dwRead;
CHAR c;
HANDLE hParentStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
for (;;) {
ReadFile( childOutputRd, &c, sizeof(char), &dwRead, NULL);
switch (c) {
case '+':
int value;
ReadFile( childOutputRd, &value, sizeof(int), &dwRead, NULL);
q.push(value);
printf("OK\n");
break;
case '-':
if (!q.empty()) {
q.pop();
printf("OK\n");
}
else {
printf("Queue is empty!\n");
}
break;
case 'f':
if (!q.empty()) {
printf("%d\n",q.firstEl());
} else {
printf("Queue is empty!\n");
}
break;
case 'p':
printf("\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\n");
if (q.empty()) {
printf("empty");
}
while (!q.empty()) {
tmp.push(q.firstEl());
printf("%d ",q.firstEl());
q.pop();
}
while (!tmp.empty()) {
q.push(tmp.firstEl());
tmp.pop();
}
printf("\n\n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n\nOK\n");
break;
case 'e':
printf("%s\n",q.empty()?"YES":"NO");
break;
case 'q':
break;
case '?':
printf("ERROR: undefined command\n");
break;
default:
printf("Fatal error: wrong symbol from hadeler '%c'\n",c);
system("pause");
exit(5);
}
if (c == 'q') break;
}
CloseHandle(inputRerouting);
CloseHandle(childInputWr);
CloseHandle(childOutputRd);
system("pause");
return 0;
}
处理程序:
#define _CRT_SECURE_NO_DEPRECATE
#include <windows.h>
#include <stdio.h>
#define BUFSIZE 5
HANDLE hStdin, hStdout;
DWORD dwRead, dwWritten;
void readCmd(char* s) {
ReadFile(hStdin, s, 1, &dwRead, NULL);
int i;
for (i = 0;(i < BUFSIZE) && (s[i] != ' ') && (s[i] != '\n') && (s[i] != '\r');i++) {
ReadFile(hStdin, s + i + 1, 1, &dwRead, NULL);
}
s[i] = '\0';
}
bool correct() {
char c;
ReadFile(hStdin, &c, sizeof(char), &dwRead, NULL);
if (c != '\n') {
while (c != '\n') ReadFile(hStdin, &c, sizeof(char), &dwRead, NULL);
return 0;
}
return 1;
}
int main() {
hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
hStdin = GetStdHandle(STD_INPUT_HANDLE);
if ( (hStdout == INVALID_HANDLE_VALUE) || (hStdin == INVALID_HANDLE_VALUE) ) {
ExitProcess(1);
}
int val;
char s[BUFSIZE + 1];
char c,digit;
for (;;) {
readCmd(s);
if (strcmp(s,"add") == 0) {
val = 0;
ReadFile(hStdin, &digit, 1, &dwRead, NULL);
if (digit == '\n') {
c = '?';
WriteFile(hStdout,&c,sizeof(char),&dwRead,NULL);
continue;
}
else if (digit < '0' || digit > '9') {
c = '?';
}
else {
c = '+';
}
while (digit >= '0' && digit <= '9') {
val = val * 10 + digit - '0';
ReadFile(hStdin, &digit, 1, &dwRead, NULL);
}
}else if (strcmp(s,"pop") == 0) {
c = '-';
}else if (strcmp(s,"first") == 0) {
c = 'f';
}else if (strcmp(s,"print") == 0) {
c = 'p';
}else if (strcmp(s,"empty") == 0) {
c = 'e';
}else if (strcmp(s,"help") == 0) {
c = 'h';
}else if (strcmp(s,"quit") == 0) {
c = 'q';
}else {
c = '?';
}
if (!correct()) c = '?';
WriteFile(hStdout, &c, 1, &dwRead, NULL);
if (c == 'q') break;
if (c == '+') WriteFile(hStdout, &val, sizeof(int), &dwRead, NULL);
}
return 0;
}
谢谢大家的帮助!
关于c++ - 无法从匿名管道读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28346220/
所以 promises 对我来说是相当新的,但我喜欢这个想法。 之前... 我以前用过这个,它只在文件被完全读取并按预期工作后才简单地返回数据: function something{ fo
当我尝试编译时出现以下错误: In member function 'double search::IDAstar::dfs(const State&, double)': 153:18: erro
最接近下面的是什么?不幸的是,下面的方法名称编译错误。 int val = delegate(string s) { return 1; }("test"); 我也尝试了 (...)=>{..
1、评论提交超时: 大家可能会发现,在提交评论非常缓慢时最容易出现“匿名”现象,这种情况主要是由于评论提交时执行时间过长引起的,可能是装了比较耗时的插件(比如Akismet等);很多博
我想在同一个表中使用一个键插入一个匿名表,如下所示: loadstring( [[return { a = "One", b = a.." two" }]] ) 在我看来,这应该返回下表: {
有人知道免费的匿名 smtp 服务吗?我想让我的应用程序的用户能够偶尔向我发送一封匿名电子邮件,而无需配置输入他们电子邮件帐户的服务器。我想我可以为此目的设置一个 gmail 帐户并将凭据嵌入到应用程
我有这个数据补丁: ALTER TABLE MY_TABLE ADD new_id number; DECLARE MAX_ID NUMBER; BEGIN SELECT max(id)
假设我有以下数据框。 Person_info (Bob, 2) (John, 1) (Bek, 10) (Bob, 6) 我想通过保持它们的值(value)来匿名。 Person_info (Pers
根据多个国家/地区的法律要求,我们在日志文件中匿名化用户的 IP 地址。使用 IPv4,我们通常只是匿名化最后两个字节,例如。而不是 255.255.255.255我们记录255.255.\*.\*
我正在学习有关 Scala 的更多信息,但在理解 http://www.scala-lang.org/node/135 中的匿名函数示例时遇到了一些麻烦。 .我复制了下面的整个代码块: object
我正在开设一个 Commerce 网上商店。 我想添加 Commerce 愿望 list ,但现在该模块仅适用于注册用户,因为未注册它不起作用。 我将显示 block 中的角色设置为匿名,但即使在更改
我正在使用发现的 Google Apps 脚本 here让匿名用户将文件上传到我的 Google 云端硬盘。 我想要的是脚本使用表单上输入的名称创建一个文件夹,然后将文件存放在该文件夹中。 到目前为止
我遇到的情况是,我正在等待一些事件的发生。我看到很多关于如何使用命名函数使用 setTimeout 的好例子,但是有没有办法使用某种匿名方法来设置超时? 代码目前看起来像这样: testForObje
我一直在阅读一些关于 Android 内存泄漏的文章,并观看了来自 Google I/O 的这个有趣的视频 on the subject . 尽管如此,我仍然不完全理解这个概念,尤其是当它对用户安全或
我正在尝试适应 Spring JDBC,但让我烦恼的是使用这些匿名类,我们不能传递任何局部变量,除非它们是最终的,这可能很容易安排,但是如果我需要循环一个怎么办?数组还是集合?我无法将“FedMode
我正在尝试将数据输入到 Oracle 数据库中。这将是一个带有多个参数的存储过程……我的意思是像 27 个参数(别问,我没有设计它)…… 现在我必须以某种方式填充此存储过程的参数...存储过程采用的大
我之前问过这个问题:Combine a PartialFunction with a regular function 然后意识到,我实际上并没有问对。 所以,这是另一个尝试。 如果我这样做: va
我想从 C++ 执行一个匿名的 Qt 脚本函数,但不知道要使用的 QScriptContext。 这是脚本: { otherObject.Text = "Hello World"; setTi
我有一个返回 promise 的函数。 (本例中为 foo) 我尝试在声明为匿名的解析函数中调用此函数。 我已经尝试过使用this 但这不起作用。 我的代码是这样的 var foo = functio
这个问题的灵感来自这个 excellent example .我有 ASP.NET Core MVC 应用程序,我正在编写 unit tests为 Controller 。其中一种方法返回带有匿名类型
我是一名优秀的程序员,十分优秀!