CreatePipe()等函数创建管道来操纵控制台

CreatePipe()等函数创建管道来操纵控制台#include  #include    #define BUFSIZE 4096   HANDLE hChildStdinRd, hChildStdinWr, hChildStdinWrDup,    hChildStdoutRd, hChildStdoutWr, hChildStdoutRdDup,    hInputFile, hStdout;   BO

大家好,又见面了,我是你们的朋友全栈君。

#include <stdio.h> 
#include <windows.h> 
  
#define BUFSIZE 4096 
  
HANDLE 
hChildStdinRd, hChildStdinWr, hChildStdinWrDup, 
   
hChildStdoutRd, hChildStdoutWr, hChildStdoutRdDup, 
   
hInputFile, hStdout; 
  
BOOL 
CreateChildProcess(
VOID
); 
VOID 
WriteToPipe(
VOID
); 
VOID 
ReadFromPipe(
VOID
); 
VOID 
ErrorExit(
LPTSTR
); 
VOID 
ErrMsg(
LPTSTR

BOOL
); 
  
DWORD 
main(
int 
argc, 
char 
*argv[]) 
   
SECURITY_ATTRIBUTES saAttr; 
   
BOOL 
fSuccess; 
  
// Set the bInheritHandle flag so pipe handles are inherited. 
  
   
saAttr.nLength = 
sizeof
(SECURITY_ATTRIBUTES); 
   
saAttr.bInheritHandle = TRUE; 
   
saAttr.lpSecurityDescriptor = NULL; 
  
// Get the handle to the current STDOUT. 
  
   
hStdout = GetStdHandle(STD_OUTPUT_HANDLE); 
  
// Create a pipe for the child process's STDOUT. 
  
   
if 
(! CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) 
      
ErrorExit(
"Stdout pipe creation failed\n"
); 
  
// Create noninheritable read handle and close the inheritable read 
// handle. 
 
    
fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
        
GetCurrentProcess(), &hChildStdoutRdDup , 0,
        
FALSE,
        
DUPLICATE_SAME_ACCESS);
    
if
( !fSuccess )
        
ErrorExit(
"DuplicateHandle failed"
);
    
CloseHandle(hChildStdoutRd);
 
// Create a pipe for the child process's STDIN. 
  
   
if 
(! CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) 
      
ErrorExit(
"Stdin pipe creation failed\n"
); 
  
// Duplicate the write handle to the pipe so it is not inherited. 
  
   
fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr, 
      
GetCurrentProcess(), &hChildStdinWrDup, 0, 
      
FALSE,                  
// not inherited 
      
DUPLICATE_SAME_ACCESS); 
   
if 
(! fSuccess) 
      
ErrorExit(
"DuplicateHandle failed"
); 
  
   
CloseHandle(hChildStdinWr); 
  
// Now create the child process. 
    
   
fSuccess = CreateChildProcess();
   
if 
(! fSuccess) 
      
ErrorExit(
"Create process failed"
); 
 
// Get a handle to the parent's input file. 
  
   
if 
(argc == 1) 
      
ErrorExit(
"Please specify an input file"
);
 
   
hInputFile = CreateFile(argv[1], GENERIC_READ, 0, NULL, 
      
OPEN_EXISTING, FILE_ATTRIBUTE_READONLY, NULL); 
  
   
if 
(hInputFile == INVALID_HANDLE_VALUE) 
      
ErrorExit(
"CreateFile failed\n"
); 
  
// Write to pipe that is the standard input for a child process. 
  
   
WriteToPipe(); 
  
// Read from pipe that is the standard output for child process. 
  
   
ReadFromPipe(); 
  
   
return 
0; 
  
BOOL 
CreateChildProcess() 
   
PROCESS_INFORMATION piProcInfo; 
   
STARTUPINFO siStartInfo;
   
BOOL 
bFuncRetn = FALSE; 
  
// Set up members of the PROCESS_INFORMATION structure. 
  
   
ZeroMemory( &piProcInfo, 
sizeof
(PROCESS_INFORMATION) );
  
// Set up members of the STARTUPINFO structure. 
  
   
ZeroMemory( &siStartInfo, 
sizeof
(STARTUPINFO) );
   
siStartInfo.cb = 
sizeof
(STARTUPINFO); 
   
siStartInfo.hStdError = hChildStdoutWr;
   
siStartInfo.hStdOutput = hChildStdoutWr;
   
siStartInfo.hStdInput = hChildStdinRd;
   
siStartInfo.dwFlags |= STARTF_USESTDHANDLES;
  
// Create the child process. 
     
   
bFuncRetn = CreateProcess(NULL, 
      
"child"
,       
// command line 
      
NULL,          
// process security attributes 
      
NULL,          
// primary thread security attributes 
      
TRUE,          
// handles are inherited 
      
0,             
// creation flags 
      
NULL,          
// use parent's environment 
      
NULL,          
// use parent's current directory 
      
&siStartInfo,  
// STARTUPINFO pointer 
      
&piProcInfo);  
// receives PROCESS_INFORMATION 
    
   
if 
(bFuncRetn == 0) 
      
ErrorExit(
"CreateProcess failed"
);
   
else 
   
{
      
CloseHandle(piProcInfo.hProcess);
      
CloseHandle(piProcInfo.hThread);
      
return 
bFuncRetn;
   
}
}
  
VOID 
WriteToPipe(
VOID
   
DWORD 
dwRead, dwWritten; 
   
CHAR 
chBuf[BUFSIZE]; 
  
// Read from a file and write its contents to a pipe. 
  
   
for 
(;;) 
   
      
if 
(! ReadFile(hInputFile, chBuf, BUFSIZE, &dwRead, NULL) || 
         
dwRead == 0) 
break
      
if 
(! WriteFile(hChildStdinWrDup, chBuf, dwRead, 
         
&dwWritten, NULL)) 
break
   
  
// Close the pipe handle so the child process stops reading. 
  
   
if 
(! CloseHandle(hChildStdinWrDup)) 
      
ErrorExit(
"Close pipe failed"
); 
  
VOID 
ReadFromPipe(
VOID
   
DWORD 
dwRead, dwWritten; 
   
CHAR 
chBuf[BUFSIZE]; 
 
// Close the write end of the pipe before reading from the 
// read end of the pipe. 
  
   
if 
(!CloseHandle(hChildStdoutWr)) 
      
ErrorExit(
"CloseHandle failed"
); 
  
// Read output from the child process, and write to parent's STDOUT. 
  
   
for 
(;;) 
   
      
if
( !ReadFile( hChildStdoutRdDup, chBuf, BUFSIZE, &dwRead, 
         
NULL) || dwRead == 0) 
break
      
if 
(! WriteFile(hStdout, chBuf, dwRead, &dwWritten, NULL)) 
         
break
   
  
VOID 
ErrorExit (
LPTSTR 
lpszMessage) 
   
fprintf
(stderr, 
"%s\n"
, lpszMessage); 
   
ExitProcess(0); 
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/159417.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 数据库去重有几种方法_数据库去重有几种方法

    数据库去重有几种方法_数据库去重有几种方法MySQL数据库去重的方法​数据库最近有很多重复的数据,数据量还有点大,本想着用代码解决,后来发现用SQL就能解决,这里记录一下看这条SQLDELETEconsum_recordFROMconsum_record,(SELECTmin(id)id,user_id,monetary,consume_timeFROMconsum_recordGROUPBYuser_id,monetary,co…

  • 免费空间推荐「建议收藏」

    免费空间推荐「建议收藏」免费空间使用googiehost免备案地址:

  • golang嵌入式开发_持续集成平台对比

    golang嵌入式开发_持续集成平台对比Drone官方示例-ExampleGoproject用Docker部署Go服务器Golang官方示例-outyet一个生产环境的例子实际的DevOps项目中,在pipeline流水线中包含下载代码、测试、构建、发布、部署、通知等步骤。基本流程如下,当然不同的语言或不同的需求下流程会有所差异:clone-&amp;amp;gt;test-&amp;amp;gt;build…

  • 算法之记忆化搜索_艾宾浩斯记忆曲线的算法实现

    算法之记忆化搜索_艾宾浩斯记忆曲线的算法实现记忆化搜索其实就是暴力搜索的过程中保存一些已经计算过的状态(思想类似于动态规划,保存计算过的状态),在暴力搜索的过程中利用这些计算过的状态从而减少很大程度上的计算,从而达到时间复杂度上的优化。1【问题描述】 小明想知道,满足以下条件的正整数序列的数量: 1.第一项为n; 2.第二项不超过n; 3.从第三项开始,每一项小于前两项的差的绝对值。 请计算,对于给定的n,有多少种满足条件的序列。【输入格式】 输入一行包含一个整数n。【输出格式】 输出一个整数,表示答案。答案可能很大

  • pychram最新激活码 3月最新注册码

    pychram最新激活码 3月最新注册码,https://javaforall.cn/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

  • javascript 中contentWindow和 frames

    javascript 中contentWindow和 framescontentWindow属性是指指定的frame或者iframe所在的window对象IE 中为frames["id"]其他为document.getElementById("id").contentWindowcontentWindow属性是指指定的frame或者iframe所在的window对象在IE中iframe或者frame的contentWindow属性可以省略,但在Firef…

    2022年10月21日

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号