在编程开发的时候,我们时常会调用windows本身的功能,如:检测网络通断,连接无线wifi等。

虽然,用 windows api 操作可以完美地完成这些操作,但是,函数参数太难了。令人望而生畏,不是普通开发者能办到的。

但是,我们可以用一种变通的方法,来解决这个问题,就是使用控制台命令行,如 ping , netsh 等。

我在网络上,搜索到了delphi调用命令行,并返回接收返回的结果(字符串信息)代码,但这些代码仅仅只是功能实现了,离实用性还差一步。

所以做了如下改进:

1.将 cmd 运行进程放入线程中,不放入线程,界面就卡死了,阻塞的,实用性大大降低,可能只能采用运行一次命令,就创建一次cmd进程的方式来实现。

本例的CMD只创建一次,可以复用。

2.提供了明确的执行结果事件,就是命令真正执行完毕的事件,因为返回的结果字符串不是一次性全部返回的,太长的结果是分批次返回的。这一点,但其它的控制台的设备中也是一样的。如路由器的 console 下。

3.实现了 ctrl + c 这类特殊事件的触发,如果没有这个功能,运行 ping 127.0.0.1 -t 就无法正常结束。

经过工作实践中运行,觉得还不错,不敢独享,故分享给大家。也算是 delphi 线程的一个教学实例。

unit uSimpleConsole;

interface

uses
System.Classes, WinApi.Windows, uElegantThread, uSimpleThread, uSimpleList; type TSimpleConsole = class; TConsoleStatus = (ccUnknown, ccInit, ccCmdResult);
TOnConsoleStatus = procedure(Sender: TSimpleConsole; AStatus: TConsoleStatus) of object; TInnerConsoleStatus = (iccInit, iccExecCmd, iccSpecEvent, iccWait); PCmdStr = ^TCmdStr; TCmdStr = record
Status: TInnerConsoleStatus;
CmdStr: string;
Event: integer;
end; TCmdStrList = class(TSimpleList<PCmdStr>)
private
function AddCmdStr(ACmdStr: string): PCmdStr;
function AddSpecialEvent(AEvent: integer): PCmdStr;
protected
procedure FreeItem(Item: PCmdStr); override;
end; TSimpleConsole = class(TSimpleThread)
private FInRead: THandle; // in 用于控制台输入
FInWrite: THandle;
FOutRead: THandle; // out 用于控制台输出
FOutWrite: THandle;
FFileName: String;
FProcessInfo: TProcessInformation;
FProcessCreated: Boolean;
FCmdStrList: TCmdStrList;
FCmdResultStrs: TStringList; FConsoleStatus: TInnerConsoleStatus; procedure Peek;
procedure DoPeek;
procedure DoCreateProcess;
procedure DoExecCmd(ACmdStr: string);
function WriteCmd(ACmdStr: string): Boolean;
procedure DoOnConsoleStatus(AStatus: TConsoleStatus); procedure ClearCmdResultStrs;
procedure AddCmdResultText(AText: string);
function CheckCmdResultSign(AText: string): Boolean; public
constructor Create(AFileName: string); reintroduce;
destructor Destroy; override;
procedure StartThread; override;
procedure ExecCmd(ACmdStr: String);
procedure ExecSpecialEvent(AEvent: integer); // 执行特殊事件,如 ctrl + c
property CmdResultStrs: TStringList read FCmdResultStrs;
public
WorkDir: string;
ShowConsoleWindow: Boolean;
OnConsoleStatus: TOnConsoleStatus;
end; function AttachConsole(dwprocessid: DWORD): BOOL;
stdcall external kernel32; implementation uses
Vcl.Forms, System.SysUtils, System.StrUtils; { TSimpleConsole }
const
cnSecAttrLen = sizeof(TSecurityAttributes); procedure TSimpleConsole.AddCmdResultText(AText: string);
var
L: TStringList;
begin
L := TStringList.Create;
try
L.Text := Trim(AText);
FCmdResultStrs.AddStrings(L);
finally
L.Free;
end;
end; function TSimpleConsole.CheckCmdResultSign(AText: string): Boolean;
var
L: TStringList;
i, n: integer;
sTemp: string;
begin
Result := false;
L := TStringList.Create;
try
L.Text := Trim(AText);
for i := L.Count - downto do
begin
sTemp := Trim(L[i]);
n := length(sTemp);
if (PosEx(':\', sTemp) = 2) and (PosEx('>', sTemp, 3) >= n) then
begin
Result := true;
exit;
end;
end;
finally
L.Free;
end;
end; procedure TSimpleConsole.ClearCmdResultStrs;
begin
FCmdResultStrs.Clear;
end; constructor TSimpleConsole.Create(AFileName: string);
begin
inherited Create(true);
FFileName := AFileName;
FProcessCreated := false;
ShowConsoleWindow := false; FCmdResultStrs := TStringList.Create;
FCmdStrList := TCmdStrList.Create; end; destructor TSimpleConsole.Destroy;
var
Ret: integer;
begin
Ret := ;
if FProcessCreated then
begin TerminateProcess(FProcessInfo.hProcess, Ret); closehandle(FInRead);
closehandle(FInWrite);
closehandle(FOutRead);
closehandle(FOutWrite); end; FCmdResultStrs.Free;
FCmdStrList.Free; inherited;
end; procedure TSimpleConsole.DoCreateProcess;
const
cnBuffLen = ;
cnReadByteLen = cnBuffLen;
cnSecAttrLen = sizeof(TSecurityAttributes);
cnStartUpInfoLen = sizeof(TStartupInfo);
var
sWorkDir: string;
LStartupInfo: TStartupInfo;
LSecAttr: TSecurityAttributes;
sCmd: string;
v: integer;
begin if length(WorkDir) > then
begin
sWorkDir := WorkDir;
end
else
begin
sWorkDir := ExtractFileDir(Application.ExeName);
WorkDir := sWorkDir;
end; if ShowConsoleWindow then
v :=
else
v := ; ZeroMemory(@LSecAttr, cnSecAttrLen); LSecAttr.nLength := cnSecAttrLen;
LSecAttr.bInheritHandle := true;
LSecAttr.lpSecurityDescriptor := nil; CreatePipe(FInRead, FInWrite, @LSecAttr, );
CreatePipe(FOutRead, FOutWrite, @LSecAttr, ); ZeroMemory(@LStartupInfo, cnStartUpInfoLen); LStartupInfo.cb := cnStartUpInfoLen;
LStartupInfo.dwFlags := STARTF_USESHOWWINDOW or STARTF_USESTDHANDLES;
LStartupInfo.wShowWindow := v; LStartupInfo.hStdInput := FInRead; // 如果为空,则可以由键盘输入
LStartupInfo.hStdOutput := FOutWrite; // 如果为空,则显示到屏幕上
LStartupInfo.hStdError := FOutWrite; setlength(sCmd, length(FFileName)); CopyMemory(@sCmd[], @FFileName[], length(FFileName) * sizeof(char)); if CreateProcess(nil, PChar(sCmd), { pointer to command line string }
@LSecAttr, { pointer to process security attributes }
@LSecAttr, { pointer to thread security attributes }
true, { handle inheritance flag }
NORMAL_PRIORITY_CLASS, nil, { pointer to new environment block }
PChar(sWorkDir), { pointer to current directory name, PChar }
LStartupInfo, { pointer to STARTUPINFO }
FProcessInfo) { pointer to PROCESS_INF }
then
begin
// ClearCmdResultStrs;
// FInnerConsoleList.AddInerStatus(iccInit);
end
else
begin
DoOnStatusMsg('进程[' + FFileName + ']创建失败');
end; end; procedure TSimpleConsole.DoExecCmd(ACmdStr: string);
var
sCmdStr: string;
begin
sCmdStr := ACmdStr + ##;
if WriteCmd(sCmdStr) then
begin
// FInnerConsoleList.AddCmdStr(iccExecCmd);
// Peek
end
else
begin
DoOnStatusMsg('执行:[' + ACmdStr + ']失败');
end;
end; procedure TSimpleConsole.DoOnConsoleStatus(AStatus: TConsoleStatus);
begin
if Assigned(OnConsoleStatus) then
OnConsoleStatus(self, AStatus);
end; procedure TSimpleConsole.DoPeek;
var
strBuff: array [ .. ] of AnsiChar;
nBytesRead: cardinal;
sOutStr: string;
sOut: AnsiString;
nOut: cardinal;
BPeek: Boolean;
p: PCmdStr; begin if not FProcessCreated then
begin
FConsoleStatus := iccInit;
DoCreateProcess;
FProcessCreated := true;
end; sOutStr := '';
nBytesRead := ; nOut := ;
sOut := ''; BPeek := PeekNamedPipe(FOutRead, @strBuff, , @nBytesRead, nil, nil); while BPeek and (nBytesRead > ) do
begin inc(nOut, nBytesRead);
setlength(sOut, nOut);
CopyMemory(@sOut[nOut - nBytesRead + ], @strBuff[], nBytesRead);
ReadFile(FOutRead, strBuff[], nBytesRead, nBytesRead, nil); BPeek := PeekNamedPipe(FOutRead, @strBuff, , @nBytesRead, nil, nil); end; if length(sOut) > then
begin
sOutStr := String(sOut); DoOnStatusMsg(sOutStr); if CheckCmdResultSign(sOutStr) then
begin if FConsoleStatus = iccInit then
begin
DoOnConsoleStatus(ccInit)
end
else if FConsoleStatus = iccExecCmd then
begin
AddCmdResultText(sOutStr);
DoOnConsoleStatus(ccCmdResult)
end
else
DoOnConsoleStatus(ccUnknown); ClearCmdResultStrs; end; end; FCmdStrList.Lock;
try p := FCmdStrList.PopFirst;
if Assigned(p) then
begin FConsoleStatus := iccExecCmd; if p.Status = iccExecCmd then
DoExecCmd(p.CmdStr)
else if p.Status = iccSpecEvent then
begin
AttachConsole(self.FProcessInfo.dwprocessid);
SetConsoleCtrlHandler(nil, true);
GenerateConsoleCtrlEvent(p.Event, );
end; dispose(p); end; finally FCmdStrList.Unlock;
end; Peek;
SleepExceptStopped(); end; procedure TSimpleConsole.ExecCmd(ACmdStr: String);
begin FCmdStrList.Lock;
try
FCmdStrList.AddCmdStr(ACmdStr);
finally
FCmdStrList.Unlock;
end; Peek; end; procedure TSimpleConsole.Peek;
begin
ExeProcInThread(DoPeek);
end; procedure TSimpleConsole.ExecSpecialEvent(AEvent: integer);
begin
FCmdStrList.Lock;
try
FCmdStrList.AddSpecialEvent(AEvent);
finally
FCmdStrList.Unlock;
end; Peek; end; procedure TSimpleConsole.StartThread;
begin
inherited;
Peek;
end; function TSimpleConsole.WriteCmd(ACmdStr: string): Boolean;
var
nCmdLen: cardinal;
nRetBytes: cardinal;
sCmdStr: AnsiString;
begin
nCmdLen := length(ACmdStr);
sCmdStr := AnsiString(ACmdStr);
Result := WriteFile(FInWrite, sCmdStr[], (nCmdLen), nRetBytes, nil);
end; { TInnerStatusList } function TCmdStrList.AddCmdStr(ACmdStr: string): PCmdStr;
begin
New(Result);
Add(Result);
Result.Status := iccExecCmd;
Result.CmdStr := ACmdStr;
end; function TCmdStrList.AddSpecialEvent(AEvent: integer): PCmdStr;
begin
New(Result);
Add(Result);
Result.Status := iccSpecEvent;
Result.Event := AEvent;
end; procedure TCmdStrList.FreeItem(Item: PCmdStr);
begin
inherited;
dispose(Item);
end; end.

uSimpleConsole

本例程XE8源码下载

delphi 在线程中运行控制台命令(console)的更多相关文章

  1. 让NSURLConnection在子线程中运行

    可以有两个办法让NSURLConnection在子线程中运行,即将NSURLConnection加入到run loop或者NSOperationQueue中去运行. 前面提到可以将NSTimer手动加 ...

  2. iOS多线程的初步研究(五)-- 如何让NSURLConnection在子线程中运行

    可以有两个办法让NSURLConnection在子线程中运行,即将NSURLConnection加入到run loop或者NSOperationQueue中去运行. 前面提到可以将NSTimer手动加 ...

  3. 让你提前认识软件开发(23):怎样在C语言中运行shell命令?

    第1部分 又一次认识C语言 怎样在C语言中运行shell命令? [文章摘要] Linux操作系统具备开源等诸多优秀特性,因此在很多通信类软件(主流开发语言为C语言)中,开发平台都迁移到了Linux上, ...

  4. 怎样在Java中运行Hive命令或HiveQL

    这里所说的在Java中运行Hive命令或HiveQL并非指Hive Client通过JDBC的方式连接HiveServer(or HiveServer2)运行查询,而是简单的在部署了HiveServe ...

  5. 如何让NSURLConnection在子线程中运行

    可以有两个办法让NSURLConnection在子线程中运行,即将NSURLConnection加入到run loop或者NSOperationQueue中去运行. 前面提到可以将NSTimer手动加 ...

  6. 在eclipse中运行maven命令没有反应,console也不打印信息

    eclipse的maven项目中,在run as  执行maven命令的时候发现毫无反应,console也不打印信息,原因是因为没有传参数,解决办法如下:①打开eclipse的window菜单: ②接 ...

  7. IDEA清空控制台以及Java中运行cmd命令实现清屏操作

    IDEA中清空控制台方法 在网上有看到各种的实现方法,比如: Runtime.getRuntime().exec("cls"); 或者: public static void cl ...

  8. 关于Qt中使用线程的时候函数具体在哪个线程中运行的问题

    在子线程中,run函数中以及其中调用的都在单独的子线程里面运行,但是其他的类似构造函数之流都是在主线程里面运行的,不要搞混了

  9. 在cmd窗口中运行php命令

    1.首先安装php.我使用的是wamp,里面包含php5.5.12 2.将C:\wamp\bin\php\php5.5.12添加到环境变量Path中 3.在cmd中运行php -v可以查看php版本相 ...

随机推荐

  1. UOJ180 【UR #12】实验室外的攻防战

    本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作. 本文作者:ljh2000 作者博客:http://www.cnblogs.com/ljh2000-jump/ ...

  2. git 里面遇到的问题

    第一步:建立git仓库(本地) cd到你的本地项目根目录下,执行git命令 git init 第二步:将项目的所有文件添加到仓库中 git add . 如果想添加某个特定的文件,只需把.换成特定的文件 ...

  3. 使用BeanUtils方法拷贝不上问题

    最近在项目中,发现BeanUtils.copyProperties方法拷贝bean属性时候,有的时候会失效.最后发现是由于项目中引用了spring和common两个包,都有BeanUtils方法,错误 ...

  4. 浅谈如何优化SQL Server服务器

      在中国,使用SQLServer数据库的用户和企业是最多的,那么如何去设计和优化SQLSerer服务器呢,DBA应该遵循那些准则和方法呢,下面就将我的经验与大家分享,希望对大家有所帮助. AD:   ...

  5. 如何创建效率高sql-建立索引

      我们做开发的人员,虽说自己不是专业从事数据库方面研究的(如DBA),但很多时候,公司没有专门的DBA,所以拿到具体的项目中,整体的数据库设计都是开发人员自己写的,随着时间的推移,加上开发经验的增长 ...

  6. java:IO:file 类

    刷某一目录下的所有文件夹/文件 public class FileDemo2 { public static void main(String args[]) { File file = new Fi ...

  7. 代码题(45)— 下一个排列、第k个排列

    1.31. 下一个排列 实现获取下一个排列的函数,算法需要将给定数字序列重新排列成字典序中下一个更大的排列. 如果不存在下一个更大的排列,则将数字重新排列成最小的排列(即升序排列). 必须原地修改,只 ...

  8. 将【恢复和重新安装Windows】的介质指定到硬盘

    步骤: 1. 双击Win8.1/Win10安装镜像,将它载入到虚拟光驱(例子被载入到i:盘) 2. 将Win8.1/Win10安装镜像中sources\install.wim文件复制到一个非系统盘里. ...

  9. Kestrel Web 服务器学习笔记

    前言: ASP.NET Core 已经不是啥新鲜的东西,很多新启的项目都会首选 Core 做开发: 而 Kestrel 可以说是微软推出的唯一真正实现跨平台的 Web 服务器了: Kestrel 利用 ...

  10. 12-THREE.JS 自然光

    <!DOCTYPE html> <html> <head> <title></title> <script src="htt ...