Welcome,
Guest
|
General Purpose Components and Libraries, discussions, problems and suggestions
TOPIC:
TUniqueInstance not work on Win32 8 years 6 months ago #9571
|
Hi!
I use CT 5.7 on LinuxMint 17_x64 xfce TUniqueInstance work fine I crosscompile my app to win32 is not work i see unit UniqueInstance and comment {$ifdef unix} all directive and is work fine in win32 unit UniqueInstance;
{
UniqueInstance is a component to allow only a instance by program
Copyright (C) 2006 Luiz Americo Pereira Camara
pascalive@bol.com.br
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version with the following modification:
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,and
to copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the terms
and conditions of the license of that module. An independent module is a
module which is not derived from or based on this library. If you modify
this library, you may extend this exception to your version of the library,
but you are not obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
for more details.
You should have received a copy of the GNU Library General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
}
{$mode objfpc}{$H+}
interface
uses
Forms, Classes, SysUtils, simpleipc, ExtCtrls;
type
TOnOtherInstance = procedure (Sender : TObject; ParamCount: Integer; Parameters: array of String) of object;
{ TUniqueInstance }
TUniqueInstance = class(TComponent)
private
FIdentifier: String;
FOnOtherInstance: TOnOtherInstance;
FUpdateInterval: Cardinal;
FEnabled: Boolean;
FPriorInstanceRunning: Boolean;
procedure ReceiveMessage(Sender: TObject);
// {$ifdef unix}
procedure CheckMessage(Sender: TObject);
// {$endif}
protected
procedure Loaded; override;
public
constructor Create(AOwner: TComponent); override;
property PriorInstanceRunning: Boolean read FPriorInstanceRunning;
published
property Enabled: Boolean read FEnabled write FEnabled default False;
property Identifier: String read FIdentifier write FIdentifier;
property UpdateInterval: Cardinal read FUpdateInterval write FUpdateInterval default 1000;
property OnOtherInstance: TOnOtherInstance read FOnOtherInstance write FOnOtherInstance;
end;
implementation
uses
StrUtils, UniqueInstanceBase;
{ TUniqueInstance }
procedure TUniqueInstance.ReceiveMessage(Sender: TObject);
var
ParamsArray: array of String;
Count: Integer;
procedure FillParamsArray(const ParamsStr: String);
var
pos1, pos2, i: Integer;
begin
SetLength(ParamsArray, Count);
//fill params
i := 0;
pos1 := 1;
pos2 := pos(ParamsSeparator, ParamsStr);
while pos1 < pos2 do
begin
ParamsArray[i] := Copy(ParamsStr, pos1, pos2 - pos1);
pos1 := pos2+1;
pos2 := posex(ParamsSeparator, ParamsStr, pos1);
inc(i);
end;
end;
begin
if Assigned(FOnOtherInstance) then
begin
//MsgType stores ParamCount
Count := FIPCServer.MsgType;
FillParamsArray(FIPCServer.StringMessage);
FOnOtherInstance(Self, Count, ParamsArray);
end;
end;
//{$ifdef unix}
procedure TUniqueInstance.CheckMessage(Sender: TObject);
begin
FIPCServer.PeekMessage(1, True);
end;
//{$endif}
procedure TUniqueInstance.Loaded;
var
IPCClient: TSimpleIPCClient;
// {$ifdef unix}
Timer: TTimer;
// {$endif}
begin
if not (csDesigning in ComponentState) and FEnabled then
begin
IPCClient := TSimpleIPCClient.Create(Self);
IPCClient.ServerId := GetServerId(FIdentifier);
if IPCClient.ServerRunning then
begin
//A older instance is running.
FPriorInstanceRunning := True;
//A instance is already running
//Send a message and then exit
if Assigned(FOnOtherInstance) then
begin
IPCClient.Active := True;
IPCClient.SendStringMessage(ParamCount, GetFormattedParams);
end;
Application.ShowMainForm := False;
Application.Terminate;
end
else
begin
InitializeUniqueServer(IPCClient.ServerID);
FIPCServer.OnMessage := @ReceiveMessage;
//there's no more need for IPCClient
IPCClient.Destroy;
// {$ifdef unix}
if Assigned(FOnOtherInstance) then
begin
Timer := TTimer.Create(Self);
Timer.Interval := FUpdateInterval;
Timer.OnTimer := @CheckMessage;
end;
// {$endif}
end;
end;//if
inherited;
end;
constructor TUniqueInstance.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FUpdateInterval := 1000;
end;
end. please check sorry my English... |
Please Log in or Create an account to join the conversation.
Last edit: by xcod.
|