- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够从C++读写程序。看起来pstream可以完成这项工作,但是我发现文档难以理解并且还没有找到示例。
我已经设置了以下最小工作示例。这将打开python,依次(1)打印hello
(2)询问输入,(3)打印hello2
:
#include <iostream>
#include <cstdio>
#include "pstream.h"
using namespace std;
int main(){
std::cout << "start";
redi::pstream proc(R"(python -c "if 1:
print 'hello'
raw_input()
print 'hello2'
")");
std::string line;
//std::cout.flush();
while (std::getline(proc.out(), line)){
std::cout << " " << "stdout: " << line << '\n';
}
std::cout << "end";
return 0;
}
#raw_input()
),我将得到输出:
start stdout: hello
stdout: hello2
end
raw_input()
)中,那么我得到的只是空白,甚至不是
start
,而是看起来像一个等待输入的程序。
start
或第一个
hello
?
int main(){
cout << "start" <<endl;
redi::pstream proc(R"(python -c "if 1:
import sys
print 'hello'
sys.stdout.flush()
a = raw_input()
sys.stdin.flush()
sys.stderr.write('hello2 '+ a)
sys.stderr.flush()
")");
string line;
getline(proc.out(), line);
cout << line << endl;
proc.write("foo",3).flush();
cout << "end" << endl;
return 0;
}
start
hello
end
hello2 foo
int main(){
...
a = raw_input()
sys.stdin.flush()
print 'hello2', a
sys.stdout.flush()
")");
...
proc.write("foo",3).flush();
std::getline(proc.out(), line);
cout << line << endl;
...
}
start
hello
int main(){
cout << "start" <<endl;
redi::pstream proc(R"(python -c "if 1:
import sys
print 'hello'
sys.stdout.flush()
a = raw_input()
sys.stdin.flush()
")");
std::streamsize n;
char buf[1024];
while ((n = proc.out().readsome(buf, sizeof(buf))) > 0)
std::cout.write(buf, n).flush();
proc.write("foo",3).flush();
cout << "end" << endl;
return 0;
}
start
end
Traceback (most recent call last):
File "<string>", line 5, in <module>
IOError: [Errno 32] Broken pipe
最佳答案
But if I leave the "ask input" part in (i.e. uncommented raw_input()), all I get is blank, not even start, but rather what seems like a program waiting for input.
import sys
,然后尝试
sys.stdout.flush()
。如果您需要它是交互式的,则需要定期刷新,或将stdout设置为非缓冲模式(我不知道如何在Python中做到这一点)。
getline
会阻止等待更多的输入,并且如果Python进程也阻止了等待输入,则您将陷入死锁。请参阅
pstreams home page上的用法示例,其中显示了如何将
readsome()
用于非阻塞读取。这样一来,您便可以阅读尽可能多的内容,进行处理,然后将响应发送回子进程,从而产生更多的输出。
I don't think I really grasp what is going on.
1) It seems like I can successfully feed raw_input
raw_input()
读一行,不是写一行,而是写三个字符
"foo"
。那不是一行。
pstream
析构函数以关闭管道。关闭管道会导致Python进程获得EOF,因此它将停止读取(仅获得三个字符而不是整行之后)。然后,Python进程将打印到连接到终端的stderr,因为您没有告诉
pstream
将管道连接到 child 的stderr,因此您看到了输出。
But it locks if I try to read from the stdout again
raw_input()
读取,请写一个换行符!
raw_input()
行:
cout << "start" <<endl;
redi::pstream proc(R"(python -c "if 1:
import sys
print 'hello'
sys.stdout.flush()
a = raw_input()
print 'hello2', a
sys.stdout.flush()
")");
string line;
getline(proc, line);
cout << line << endl;
proc << "foo" << endl; // write to child FOLLOWED BY NEWLINE!
std::getline(proc, line); // read child's response
cout << line << endl;
cout << "end" << endl;
proc.out()
,因为您尚未将管道附加到流程的stderr,因此它始终从
proc.out()
读取。在从stdout和stderr读取时,只需使用
proc.out()
和
proc.err()
进行区分即可。
2) I can't get the readsome approach to work at all
while
的
readsome
循环。它将在管道中找不到任何内容,因此第一个
readsome
调用返回0,然后退出循环。然后,C++程序进入第二个
while
循环,并且子python进程仍尚未开始打印任何内容,因此该循环也不会读取任何内容并退出。然后,整个C++程序退出,最后Python子级准备就绪,可以运行并尝试打印“hello”,但到那时它的父级就消失了,无法将其写入管道。
readsome
来继续尝试是否在第一次调用it_时没有什么要读取的内容,因此它需要等待足够长的时间才能读取第一个数据。
readsome
,因为Python进程一次只写一行,因此您可以使用
getline
读取它。但是,如果它可能写多行,则您需要能够继续读取,直到没有更多数据可以使用
readsome
为止(仅当有可用数据时才读取)。但是,您还需要某种方法来判断是否还会有更多数据(可能是 child 在发送更多数据之前正忙于进行一些计算)还是真的完成了。没有一般的方法可以知道,这取决于子进程在做什么。也许您需要 child 发送一些哨兵值,例如
"---END OF RESPONSE---"
, parent 可以寻找该值以了解何时停止尝试阅读更多内容。
readsome
获得的字节数超过4个,它将收到整个响应:
cout << "start" <<endl;
redi::pstream proc(R"(python -c "if 1:
import sys
print 'hello'
sys.stdout.flush()
a = raw_input()
sys.stdin.flush()
print 'hello2', a
sys.stdout.flush()
")");
string reply;
streamsize n;
char buf[1024];
while ((n = proc.readsome(buf, sizeof(buf))) != -1)
{
if (n > 0)
reply.append(buf, n);
else
{
// Didn't read anything. Is that a problem?
// Need to try to process the content of 'reply' and see if
// it's what we're expecting, or if it seems to be incomplete.
//
// Let's assume that if we've already read more than 4 characters
// it's a complete response and there's no more to come:
if (reply.length() > 3)
break;
}
}
cout << reply << std::flush;
proc << "foo" << std::endl;
while (getline(proc, reply)) // maybe use readsome again here
cout << reply << std::endl;
cout << "end" << endl;
readsome() != -1
时循环,因此如果不读取任何内容,它将继续重试,并且仅在出现错误时才停止循环。在循环主体中,它决定什么都不读取而应该做什么。您需要在此处插入自己的逻辑,这对您要尝试执行的操作都有意义,但是基本上,如果
readsome()
尚未读取任何内容,则应循环并重试。这使得C++程序等待足够长的时间,以便Python程序打印某些内容。
while
循环拆分为一个单独的函数,该函数将整个答复读入
std::string
并将其返回,以便您每次想要读取响应时都可以重用该函数。如果 child 发送一些哨兵值,该函数将易于编写,因为它每次接收到哨兵字符串时都会停止。
关于c++ - 用上游包装命令行程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35204550/
我正在使用 rebase 主题分支工作流 http://www.golden-gryphon.com/software/misc/packaging.html 但由于本地测试人员和管理员不喜欢一次性发
在我的工作中,我们为我们的一些产品使用了开源软件,并在主线项目提供的功能之上开发了一些额外的特性和功能。开源项目正在积极开发中,我打算将其中一些更改贡献回主线开源项目。 不过,我还添加了一些我们产品所
我正在尝试将 proxy_pass 与 nginx 一起使用,其中与上游服务器的连接是加密的。上游服务器的证书已由 letsencrypt certbot 创建。 # upstream server:
我一直沿着实际河流的路线思考上游和下游,其中信息的流动就像水一样。因此,上游是水/数据的来源(例如 HTTP 请求),下游是水/数据的去向(例如为请求提供服务的底层系统)。 我最近一直在研究 API
我正在努力使用 nginx 代理到 SSL 上游。我意识到代理到 HTTPS 是浪费,但这是我的设置,有时直接访问 API,其他时候我使用 nginx 来服务 JS 应用程序,它也是 API、CORS
我有两个 channel ,上游和下游。我的目标是从上游读取数据并将其传递给下游。但是,当取消上下文时,我希望在没有死锁的情况下正常退出。 我试图变得“聪明”,并做了类似以下的事情。 func mai
我已经在新安装的 cpanel vps 上安装了 nginxadmin。当我尝试登录域时出现 504 超时。这是我的日志和配置。 日志-------------------- 2015/03/06 1
无法理解为什么我的上游/CORS 配置失败。这阻碍了一些本地开发和测试。 从 local.mysite.com:8081 发出 API 请求时,我收到请求的资源上不存在“Access-Control-
我收到这个错误: Error frontend: 502 Bad gateway 99.110.244:443 2017/09/28 13:03:51 [error] 34080#34080: *10
只是一个免责声明:在使用 git 几个月后,我仍然完全不知道我在使用它时在做什么。只有当我严格按照我在网络上的各个页面上找到的说明进行操作时,事情才会奏效。 我想做的是更新我的存储库,它是从另一个项目
我在上游有 1.11.57 标签,我用 master 分支代码推送了它。我正在使用 bitbucket 和 git bash 我 fork 了上面的存储库,并在本地使用 fork 存储库作为我的本地主
我想使用 nginx 作为 websocket 连接的反向代理。 考虑 echo.websocket.org 成为我的后端 websocket 服务。作为测试客户端,我使用 wscat 来自 http
假设您有一个返回 postgresQL 数据库中定义的 json 的函数。 CREATE OR REPLACE FUNCTION test() RETURNS JSON AS $$ SELECT
在 ubuntu 18.04 上,我正在运行 nginx upstream vault { server 127.0.0.1:8001; } server { listen 80;
我有一些关于 nginx 绕过 http 和 https 的问题,在上游 block 中 上游 block : upstream bypass{ server 192.168.99.1:8
我们有一个由大约 10 名开发人员组成的团队,我们经常遇到某人的更改被意外还原的情况。我们的工作流程非常简单。开发人员进行本地提交,从上游 pull ,然后推送到上游(简而言之,这是我们的工作流程,但
我正在开发一个由 3 个微服务组成的应用程序。每个微服务都是一个 Symfony 4 应用程序。 为了将我发出的所有请求路由到此应用程序,我正在使用 Nginx。 目前有三种 url 模式,每个微服务
真正知道这个问题答案的人是那些为 Linux 发行版中包含的程序或库开发的人,这些程序或库依赖于 Linux 发行版中包含的其他库。他们只是告诉我他们在我描述的开发环境方面做了什么会很有帮助。 问题基
我是一名优秀的程序员,十分优秀!