- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一位用户提示我的 cmd 应用程序在特定 GUI 设置中调用时闪现命令行窗口。
为了他的缘故,我将该应用程序制作成一个图形用户界面应用程序并连接到控制台。从 powershell 调用它时,除了光标问题外,效果很好。
最大的问题是输出现在不再被调用 Qt 应用程序(QProcess::MergedChannels
和 readAll
)捕获,因为 cmd 应用程序直接将其输出到包含控制台窗口而不是调用 Qt 应用程序。
有没有比调用 AttachConsole
更好的方法,或者我应该向应用程序添加一个特殊的命令行选项以防止攻击?
编辑:附件代码 https://github.com/Snorenotify/Snoretoast/blob/master/src/main.cpp#L209
最佳答案
我在使用 Inkscape 时遇到了一个非常相似的问题。当 GUI 应用程序在控制台(类似于 Unix)中运行时,从它获得命令行输出的最佳方式是拥有两个可执行文件。
program.exe
是一个窗口应用程序。program.com
是一个辅助控制台应用程序,它生成 program.exe
并将控制台输入和输出传送给它。请注意,它与 DOS 中的 COM 可执行文件无关 - 它只是重命名为 .com
的标准 PE 可执行文件。由于 cmd
shell 中可执行扩展的默认优先顺序是 .com
在 .exe
之前,键入 program
在 shell 中将执行 program.com
,而不是 program.exe
。
有关工作示例,请参阅此文件: http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/view/head:/src/winconsole.cpp - 为方便起见粘贴在下方。
/**
* \file
* Command-line wrapper for Windows.
*
* Windows has two types of executables: GUI and console.
* The GUI executables detach immediately when run from the command
* prompt (cmd.exe), and whatever you write to standard output
* disappears into a black hole. Console executables
* do display standard output and take standard input from the console,
* but when you run them from the GUI, an extra console window appears.
* It's possible to hide it, but it still flashes for a fraction
* of a second.
*
* To provide an Unix-like experience, where the application will behave
* correctly in command line mode and at the same time won't create
* the ugly console window when run from the GUI, we have to have two
* executables. The first one, inkscape.exe, is the GUI application.
* Its entry points are in main.cpp and winmain.cpp. The second one,
* called inkscape.com, is a small helper application contained in
* this file. It spawns the GUI application and redirects its output
* to the console.
*
* Note that inkscape.com has nothing to do with "compact executables"
* from DOS. It's a normal PE executable renamed to .com. The trick
* is that cmd.exe picks .com over .exe when both are present in PATH,
* so when you type "inkscape" into the command prompt, inkscape.com
* gets run. The Windows program loader does not inspect the extension,
* just like an Unix program loader; it determines the binary format
* based on the contents of the file.
*
*//*
* Authors:
* Jos Hirth <jh@kaioa.com>
* Krzysztof Kosinski <tweenk.pl@gmail.com>
*
* Copyright (C) 2008-2010 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef WIN32
#undef DATADIR
#include <windows.h>
struct echo_thread_info {
HANDLE echo_read;
HANDLE echo_write;
unsigned buffer_size;
};
// thread function for echoing from one file handle to another
DWORD WINAPI echo_thread(void *info_void)
{
echo_thread_info *info = static_cast<echo_thread_info*>(info_void);
char *buffer = reinterpret_cast<char *>(LocalAlloc(LMEM_FIXED, info->buffer_size));
DWORD bytes_read, bytes_written;
while(true){
if (!ReadFile(info->echo_read, buffer, info->buffer_size, &bytes_read, NULL) || bytes_read == 0)
if (GetLastError() == ERROR_BROKEN_PIPE)
break;
if (!WriteFile(info->echo_write, buffer, bytes_read, &bytes_written, NULL)) {
if (GetLastError() == ERROR_NO_DATA)
break;
}
}
LocalFree(reinterpret_cast<HLOCAL>(buffer));
CloseHandle(info->echo_read);
CloseHandle(info->echo_write);
return 1;
}
int main()
{
// structs that will store information for our I/O threads
echo_thread_info stdin = {NULL, NULL, 4096};
echo_thread_info stdout = {NULL, NULL, 4096};
echo_thread_info stderr = {NULL, NULL, 4096};
// handles we'll pass to inkscape.exe
HANDLE inkscape_stdin, inkscape_stdout, inkscape_stderr;
HANDLE stdin_thread, stdout_thread, stderr_thread;
SECURITY_ATTRIBUTES sa;
sa.nLength=sizeof(SECURITY_ATTRIBUTES);
sa.lpSecurityDescriptor=NULL;
sa.bInheritHandle=TRUE;
// Determine the path to the Inkscape executable.
// Do this by looking up the name of this one and redacting the extension to ".exe"
const int pathbuf = 2048;
WCHAR *inkscape = reinterpret_cast<WCHAR*>(LocalAlloc(LMEM_FIXED, pathbuf * sizeof(WCHAR)));
GetModuleFileNameW(NULL, inkscape, pathbuf);
WCHAR *dot_index = wcsrchr(inkscape, L'.');
wcsncpy(dot_index, L".exe", 4);
// we simply reuse our own command line for inkscape.exe
// it guarantees perfect behavior w.r.t. quoting
WCHAR *cmd = GetCommandLineW();
// set up the pipes and handles
stdin.echo_read = GetStdHandle(STD_INPUT_HANDLE);
stdout.echo_write = GetStdHandle(STD_OUTPUT_HANDLE);
stderr.echo_write = GetStdHandle(STD_ERROR_HANDLE);
CreatePipe(&inkscape_stdin, &stdin.echo_write, &sa, 0);
CreatePipe(&stdout.echo_read, &inkscape_stdout, &sa, 0);
CreatePipe(&stderr.echo_read, &inkscape_stderr, &sa, 0);
// fill in standard IO handles to be used by the process
PROCESS_INFORMATION pi;
STARTUPINFOW si;
ZeroMemory(&si,sizeof(STARTUPINFO));
si.cb = sizeof(STARTUPINFO);
si.dwFlags = STARTF_USESTDHANDLES;
si.hStdInput = inkscape_stdin;
si.hStdOutput = inkscape_stdout;
si.hStdError = inkscape_stderr;
// spawn inkscape.exe
CreateProcessW(inkscape, // path to inkscape.exe
cmd, // command line as a single string
NULL, // process security attributes - unused
NULL, // thread security attributes - unused
TRUE, // inherit handles
0, // flags
NULL, // environment - NULL = inherit from us
NULL, // working directory - NULL = inherit ours
&si, // startup info - see above
&pi); // information about the created process - unused
// clean up a bit
LocalFree(reinterpret_cast<HLOCAL>(inkscape));
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
CloseHandle(inkscape_stdin);
CloseHandle(inkscape_stdout);
CloseHandle(inkscape_stderr);
// create IO echo threads
DWORD unused;
stdin_thread = CreateThread(NULL, 0, echo_thread, (void*) &stdin, 0, &unused);
stdout_thread = CreateThread(NULL, 0, echo_thread, (void*) &stdout, 0, &unused);
stderr_thread = CreateThread(NULL, 0, echo_thread, (void*) &stderr, 0, &unused);
// wait until the standard output thread terminates
WaitForSingleObject(stdout_thread, INFINITE);
return 0;
}
#endif
总而言之:助手应用程序创建了三个管道。它使用 CreateProcess
生成窗口应用程序,将适当的管道末端作为标准输入、输出和错误句柄。最后,它创建三个线程,将数据从管道复制到辅助应用程序的标准输入、输出和错误。
关于c++ - AttachConsole 和 QProcess::readAll(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32137019/
如果文件太大,ioutil.ReadAll()可能会导致内存高峰。 最佳答案 您可以使用io.Copy,它接受io.Writer和io.Reader。io.Copy使用32KB缓冲区从读取器复制到写入
造成这种情况的一些常见原因是什么?我的第一个想法是我正在读取的文件是只读的,但我已经检查过了。 调用它的代码是: QFile histogramFile(fileName); quint64 file
我是 Qt 的新手并且有点挣扎。我正在尝试使用 QTcpSocket 将字符串从客户端发送到服务器。 客户端: QByteArray block; QDataStream out(&block, QI
这个问题在这里已经有了答案: Member access into incomplete type error (3 个答案) 关闭 4 年前。 我正在通过 QNetwork 访问管理器发出一个简单
我正在尝试创建一个临时 gzip 文件并写入该文件。问题是我不了解 ReadAll 发生了什么。我希望 ReadAll 返回写入文件的字节......但是没有。然而 File.Stat 命令显示确实有
我正在尝试使用 net/http 包在 Go 中编写一个服务器。我只有一条路线,而且很简单。它从 S3 下载文件并将其返回给客户端: response, err := http.Get("some S
我正试图从这种天气中获取一个 io.Reader,它是我给出的链接或路径。对于某些上下文,我正在使用标志 func getString(link, path string) (io.Reader, e
对于我正在制作的程序,此函数在 for 循环中作为 goroutine 运行,具体取决于传入的 url 数量(无设定数量)。 func makeRequest(url string, ch chan<
ReadAll 方法 读入全部 TextStream 文件并返回结果字符串。 object.ReadAll object 应为 TextStream 对象的名称。 说明 对于大文件,使用
我必须从 30 GCS 读取 json 文件将文件夹作为字符串放入数据流管道中。而不是添加 Text.IO.Read我希望使用的每个步骤 Text.IO.ReadAll 。有什么想法可以将其设置为从多
我在从目录中读取json文件时遇到信息获取问题。我不明白,为什么当我编写代码时它根本不起作用。 func FilePathWalkDir(root string) ([]string, error)
我正在编写代码来从文件中读取字符串。使用时String s = StdIn.readAll();效果很好。但我不明白为什么,通过使用 while (!StdIn.readString().isEmpt
一位用户提示我的 cmd 应用程序在特定 GUI 设置中调用时闪现命令行窗口。 为了他的缘故,我将该应用程序制作成一个图形用户界面应用程序并连接到控制台。从 powershell 调用它时,除了光标问
我有一个 QProcess,我想在其中输出标签中的响应。首先,这是我尝试过的: QProcess *proc = new QProcess(); proc->setProcessChannelMode
这是我第一次创建restAPI。 API 应该只能处理一个请求,该请求返回表中的所有数据。我完成了本教程http://www.androidhive.info/2014/01/how-to-creat
如标题中所定义,这两个函数都返回一个空字符串。让我描述一下我的场景,我正在执行一个 python 文件,该文件最后正在打印文本,执行后文本会发布在应用程序输出上,但不会复制给定的输出。我的 pytho
我试图遍历特定 XML 节点的所有子节点并加入它们的 name 属性。结构: 期望的结果: PARAM1='$PARAM1',PARAM2='$PARAM2',PARAM3='$PARA
我正在使用 Qt 来控制串行设备。如果我向串行设备发送命令,我会执行类似 serial->write("command\r\n") 的操作。我制作了一个按钮,将纯文本小部件中的文本更改为串行端口的响应
目前正在研究 SBC (Olimex A20) 的 GPIO,我遇到了 QSocketNotifier 的问题。在我的 GPIO 上,我使用了一个具有中断功能的引脚(对于那些想了解更多信息的人:htt
我正在尝试通过启动一个QProcess QProcess process= new QProcess(); process.start("javac file.java"); 它启动成功,我可以在 Q
我是一名优秀的程序员,十分优秀!