📄 finger1.pas
字号:
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Author: Fran鏾is PIETTE
Description: Finger is a FINGER client
Install the components in FingCli.pas and WSocket.pas first.
Creation: December 18, 1997
Version: 1.02
EMail: http://www.overbyte.be francois.piette@overbyte.be
http://www.rtfm.be/fpiette francois.piette@rtfm.be
francois.piette@pophost.eunet.be
Support: Use the mailing list twsocket@elists.org
Follow "support" link at http://www.overbyte.be for subscription.
Legal issues: Copyright (C) 1997-2001 by Fran鏾is PIETTE
Rue de Grady 24, 4053 Embourg, Belgium. Fax: +32-4-365.74.56
<francois.piette@overbyte.be> <francois.piette@pophost.eunet.be>
This software is provided 'as-is', without any express or
implied warranty. In no event will the author be held liable
for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it
and redistribute it freely, subject to the following
restrictions:
1. The origin of this software must not be misrepresented,
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
4. You must register this software by sending a picture postcard
to the author. Use a nice stamp and mention your name, street
address, EMail address and any comment you like to say.
Updates:
Apr 11, 1999 V1.01 Added command line option
Aug 18, 2001 V1.02 Changed website url
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
unit Finger1;
interface
uses
WinTypes, WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, FingCli, WinSock, WSocket;
const
FingerVersion = 102;
CopyRight : String = ' Finger (c) 1997-2001 F. Piette V1.02 ';
WM_APPSTARTUP = WM_USER + 1;
type
TFingerDemoForm = class(TForm)
FingerCli1: TFingerCli;
DisplayMemo: TMemo;
Panel1: TPanel;
QueryEdit: TEdit;
QueryButton: TButton;
CancelButton: TButton;
procedure QueryButtonClick(Sender: TObject);
procedure FingerCli1DataAvailable(Sender: TObject; Error: Word);
procedure FingerCli1QueryDone(Sender: TObject; Error: Word);
procedure FingerCli1SessionConnected(Sender: TObject; Error: Word);
procedure CancelButtonClick(Sender: TObject);
procedure FormShow(Sender: TObject);
private
procedure WMAppStartup(var msg: TMessage); message WM_APPSTARTUP;
end;
var
FingerDemoForm: TFingerDemoForm;
const
{$IFDEF VER80}
BufferSize = 255; { Delphi 1 is limited to 255 bytes }
{$ELSE}
BufferSize = 2048;
{$ENDIF}
implementation
{$R *.DFM}
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TFingerDemoForm.FormShow(Sender: TObject);
begin
{ We use a custom message to initialize things once the form }
{ is visible }
PostMessage(Handle, WM_APPSTARTUP, 0, 0);
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TFingerDemoForm.WMAppStartup(var msg: TMessage);
begin
Update; { Let the window be visible completely }
if ParamCount > 0 then begin
QueryEdit.Text := ParamStr(1);
QueryButtonClick(Self);
end;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
{* Display a message in the memo field, breaking with CR *}
procedure MemoAddLines(Memo : TMemo; Msg : String);
const
CR = #13;
LF = #10;
var
Start, Stop : Integer;
begin
if Memo.Lines.Count = 0 then
Memo.Lines.Add('');
Start := 1;
Stop := Pos(CR, Msg);
if Stop = 0 then
Stop := Length(Msg) + 1;
while Start <= Length(Msg) do begin
Memo.Lines.Strings[Memo.Lines.Count - 1] :=
Memo.Lines.Strings[Memo.Lines.Count - 1] +
Copy(Msg, Start, Stop - Start);
if Msg[Stop] = CR then begin
Memo.Lines.Add('');
SendMessage(Memo.Handle, WM_KEYDOWN, VK_UP, 1);
end;
Start := Stop + 1;
if Start > Length(Msg) then
Break;
while Msg[Start] in [CR, LF] do
Start := Start + 1;
Stop := Start;
while (Msg[Stop] <> CR) and (Stop <= Length(Msg)) do
Stop := Stop + 1;
end;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TFingerDemoForm.QueryButtonClick(Sender: TObject);
begin
DisplayMemo.Clear;
QueryButton.Enabled := FALSE;
CancelButton.Enabled := TRUE;
FingerCli1.Query := QueryEdit.Text;
FingerCli1.StartQuery;
MemoAddLines(DisplayMemo, 'Query started.' + #13);
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TFingerDemoForm.FingerCli1SessionConnected(Sender: TObject; Error: Word);
begin
if Error = 0 then
MemoAddLines(DisplayMemo, 'Connected to host.' + #13);
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TFingerDemoForm.FingerCli1DataAvailable(Sender: TObject; Error: Word);
var
Buffer : array [0..BufferSize - 1] of char;
Len : Integer;
begin
while TRUE do begin
Len := FingerCli1.Receive(@Buffer, SizeOf(Buffer) - 1);
if Len <= 0 then
break;
Buffer[Len] := #0;
MemoAddLines(DisplayMemo, StrPas(Buffer));
end;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TFingerDemoForm.FingerCli1QueryDone(Sender: TObject; Error: Word);
begin
if Error <> 0 then begin
if Error = WSAECONNREFUSED then
MemoAddLines(DisplayMemo, 'No finger service available.' + #13)
else if Error = WSAETIMEDOUT then
MemoAddLines(DisplayMemo, 'Host unreachable.' + #13)
else
MemoAddLines(DisplayMemo, 'Error #' + IntToStr(Error) + #13);
end;
MemoAddLines(DisplayMemo, 'Done.' + #13);
QueryButton.Enabled := TRUE;
CancelButton.Enabled := FALSE;
{ If we started from command line, then close application }
if ParamCount > 0 then
Close;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure TFingerDemoForm.CancelButtonClick(Sender: TObject);
begin
FingerCli1.Abort;
end;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -