1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
{
/***************************************************************************
publishmodule.pas
-----------------
***************************************************************************/
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code 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 *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
Author: Mattias Gaertner, Juha Manninen
}
unit PublishModule;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, RegExpr,
// LazUtils
LazFileUtils, LazLoggerBase, LazTracer, LazStringUtils, Laz2_XMLCfg,
// IdeIntf
MacroIntf,
// IDE
IDEProcs;
type
{ TPublishModuleOptions }
TPublishModuleOptions = class
private
FCompressFinally: boolean;
FOpenInFileMan: boolean;
FDestinationDirectory: string;
FFileFilter: string;
FFilterRegExpr: TRegExpr;
FFilterSimpleSyntax: boolean;
FFilterValid: boolean;
FModified: boolean;
FModifiedLock: integer;
FOwner: TObject;
FUseFileFilters: boolean;
procedure SetCompressFinally(const AValue: boolean);
procedure SetOpenInFileMan(const AValue: boolean);
procedure SetDestinationDirectory(const AValue: string);
procedure SetFileFilter(const AValue: string);
procedure SetFilterSimpleSyntax(const AValue: boolean);
procedure SetModified(const AValue: boolean);
procedure SetUseFileFilters(const AValue: boolean);
procedure UpdateFilter;
protected
procedure DoOnModifyChange; virtual;
public
constructor Create(TheOwner: TObject);
destructor Destroy; override;
procedure Clear; virtual;
procedure LoadDefaults; virtual;
procedure LoadFromXMLConfig(XMLConfig: TXMLConfig; const APath: string;
AdjustPathDelims: boolean); virtual;
procedure SaveToXMLConfig(XMLConfig: TXMLConfig; const APath: string;
UsePathDelim: TPathDelimSwitch); virtual;
function FileCanBePublished(const AFilename: string): boolean; virtual;
procedure LockModified;
procedure UnlockModified;
function GetDefaultDestinationDir: string; virtual; abstract;
public
property Owner: TObject read FOwner;
property Modified: boolean read FModified write SetModified;
// destination
property DestinationDirectory: string
read FDestinationDirectory write SetDestinationDirectory;
property CompressFinally: boolean read FCompressFinally write SetCompressFinally;
property OpenInFileMan: boolean read FOpenInFileMan write SetOpenInFileMan;
property UseFileFilters: boolean read FUseFileFilters write SetUseFileFilters;
// Filter
property FilterSimpleSyntax: boolean read FFilterSimpleSyntax write SetFilterSimpleSyntax;
property FileFilter: string read FFileFilter write SetFileFilter;
property FilterValid: boolean read FFilterValid;
end;
const
PublishModulOptsVersion = 2;
DefPublModIncFilter = '*.(pas|pp|inc|lpr|lfm|lrs|lpi|lpk|xml|sh)';
//DefPublModExcFilter = '*.(bak|ppu|ppl|a|o|so);*~;backup';
function RealPublishDir(AOptions: TPublishModuleOptions): string;
implementation
function RealPublishDir(AOptions: TPublishModuleOptions): string;
begin
Result:=AOptions.DestinationDirectory;
if IDEMacros.SubstituteMacros(Result) then begin
if FilenameIsAbsolute(Result) then begin
Result:=AppendPathDelim(TrimFilename(Result));
end else begin
Result:='';
end;
end else begin
Result:='';
end;
end;
{ TPublishModuleOptions }
procedure TPublishModuleOptions.SetCompressFinally(const AValue: boolean);
begin
if FCompressFinally=AValue then exit;
FCompressFinally:=AValue;
Modified:=true;
end;
procedure TPublishModuleOptions.SetOpenInFileMan(const AValue: boolean);
begin
if FOpenInFileMan=AValue then exit;
FOpenInFileMan:=AValue;
Modified:=true;
end;
procedure TPublishModuleOptions.SetDestinationDirectory(const AValue: string);
begin
if FDestinationDirectory=AValue then exit;
FDestinationDirectory:=AValue;
Modified:=true;
end;
procedure TPublishModuleOptions.SetFileFilter(const AValue: string);
begin
if FFileFilter=AValue then exit;
FFileFilter:=AValue;
UpdateFilter;
Modified:=true;
end;
procedure TPublishModuleOptions.SetFilterSimpleSyntax(const AValue: boolean);
begin
if FFilterSimpleSyntax=AValue then exit;
FFilterSimpleSyntax:=AValue;
UpdateFilter;
Modified:=true;
end;
procedure TPublishModuleOptions.SetModified(const AValue: boolean);
begin
if AValue and (FModifiedLock>0) then exit;
if FModified=AValue then exit;
FModified:=AValue;
DoOnModifyChange;
end;
procedure TPublishModuleOptions.SetUseFileFilters(const AValue: boolean);
begin
if FUseFileFilters=AValue then exit;
FUseFileFilters:=AValue;
Modified:=true;
end;
procedure TPublishModuleOptions.UpdateFilter;
var
Expr: string;
begin
if FFilterRegExpr=nil then
FFilterRegExpr:=TRegExpr.Create;
if FilterSimpleSyntax then
Expr:=SimpleSyntaxToRegExpr(FFileFilter)
else
Expr:=FFileFilter;
try
FFilterRegExpr.Expression:=Expr;
FFilterValid:=true;
except
on E: Exception do begin
DebugLn('Invalid File Expression ',Expr,' ',E.Message);
FFilterValid:=false;
end;
end;
end;
procedure TPublishModuleOptions.DoOnModifyChange;
begin
end;
constructor TPublishModuleOptions.Create(TheOwner: TObject);
begin
FOwner:=TheOwner;
LoadDefaults;
end;
destructor TPublishModuleOptions.Destroy;
begin
Clear;
FFilterRegExpr.Free;
inherited Destroy;
end;
procedure TPublishModuleOptions.Clear;
begin
LoadDefaults;
end;
procedure TPublishModuleOptions.LoadDefaults;
begin
DestinationDirectory:=GetDefaultDestinationDir;
CompressFinally:=true;
OpenInFileMan:=false;
UseFileFilters:=true;
FilterSimpleSyntax:=true;
FileFilter:=DefPublModIncFilter;
end;
procedure TPublishModuleOptions.LoadFromXMLConfig(XMLConfig: TXMLConfig;
const APath: string; AdjustPathDelims: boolean);
function f(const Filename: string): string;
begin
Result:=SwitchPathDelims(Filename,AdjustPathDelims);
end;
var
XMLVersion: integer;
begin
XMLVersion:=XMLConfig.GetValue(APath+'Version/Value',0);
FDestinationDirectory:=f(XMLConfig.GetValue(APath+'DestinationDirectory/Value',
GetDefaultDestinationDir));
CompressFinally:=XMLConfig.GetValue(APath+'CompressFinally/Value',true);
OpenInFileMan:=XMLConfig.GetValue(APath+'OpenInFileMan/Value',false);
UseFileFilters:=XMLConfig.GetValue(APath+'UseFileFilters/Value',false);
FilterSimpleSyntax:=XMLConfig.GetValue(APath+'FilterSimpleSyntax/Value',true);
if XMLVersion>=2 then
FileFilter:=XMLConfig.GetValue(APath+'FileFilter/Value',DefPublModIncFilter);
end;
procedure TPublishModuleOptions.SaveToXMLConfig(XMLConfig: TXMLConfig;
const APath: string; UsePathDelim: TPathDelimSwitch);
function f(const AFilename: string): string;
begin
Result:=SwitchPathDelims(AFilename,UsePathDelim);
end;
begin
XMLConfig.SetValue(APath+'Version/Value',PublishModulOptsVersion);
XMLConfig.SetDeleteValue(APath+'DestinationDirectory/Value',
f(DestinationDirectory),
f(GetDefaultDestinationDir));
XMLConfig.SetDeleteValue(APath+'CompressFinally/Value',CompressFinally,true);
XMLConfig.SetDeleteValue(APath+'OpenInFileMan/Value',OpenInFileMan,false);
XMLConfig.SetDeleteValue(APath+'UseFileFilters/Value',UseFileFilters,false);
XMLConfig.SetDeleteValue(APath+'FilterSimpleSyntax/Value',FilterSimpleSyntax,true);
XMLConfig.SetDeleteValue(APath+'FileFilter/Value',FileFilter,DefPublModIncFilter);
end;
function TPublishModuleOptions.FileCanBePublished(const AFilename: string): boolean;
begin
// check file filter
Result := (FFilterRegExpr=nil) or FFilterRegExpr.Exec(ExtractFilename(AFilename));
end;
procedure TPublishModuleOptions.LockModified;
begin
inc(FModifiedLock);
end;
procedure TPublishModuleOptions.UnlockModified;
begin
if FModifiedLock<=0 then
RaiseGDBException('TPublishModuleOptions.UnlockModified');
dec(FModifiedLock);
end;
{
procedure TPublishModuleOptions.OnCopyFile(const Filename: string; var Copy: boolean; Data: TObject);
begin
//if Data=nil then exit;
Assert(Data is TPublishModuleOptions, 'TPublishModuleOptions.OnCopyFile: Data type is wrong.');
Copy:=TPublishModuleOptions(Data).FileCanBePublished(Filename);
//debugln('TLazSourceFileManager.OnCopyFile "',Filename,'" ',Copy);
end;
procedure TPublishModuleOptions.OnCopyError(const ErrorData: TCopyErrorData;
var Handled: boolean; Data: TObject);
begin
case ErrorData.Error of
ceSrcDirDoesNotExists:
IDEMessageDialog(lisCopyError2,
Format(lisSourceDirectoryDoesNotExist, [ErrorData.Param1]),
mtError,[mbCancel]);
ceCreatingDirectory:
IDEMessageDialog(lisCopyError2,
Format(lisUnableToCreateDirectory, [ErrorData.Param1]),
mtError,[mbCancel]);
ceCopyFileError:
IDEMessageDialog(lisCopyError2,
Format(lisUnableToCopyFileTo, [ErrorData.Param1, LineEnding, ErrorData.Param1]),
mtError,[mbCancel]);
end;
end;
}
end.
|