Skip to content

Commit ca84017

Browse files
committed
Switched to Singleton enabled by default for ease of use for #1
Utilize a custom radDotEnv_DisableSingleton define to disable.
1 parent 5169831 commit ca84017

File tree

3 files changed

+9
-26
lines changed

3 files changed

+9
-26
lines changed

demo/radDotEnv.DemoConsoleApp.MainU.pas

+3-11
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,17 @@ implementation
1111
radDotEnv;
1212

1313
procedure MainDemo;
14-
var
15-
env:iDotEnv;
1614
begin
17-
//alternatively, define a new define radDotEnv_SINGLETON and use the global DotEnv
18-
env := NewDotEnv.UseRetrieveOption(TRetrieveOption.PreferDotEnv)
19-
.UseSetOption(TSetOption.AlwaysSet)
20-
.UseEscapeSequenceInterpolationOption(TEscapeSequenceInterpolationOption.SupportEscapesInDoubleQuotedValues)
21-
.Load;
22-
2315
(*
2416
Demo .env file contents =
2517
USER=admin
2618
EMAIL="${USER}@example.org"
2719
DATABASE_URL="postgres://${USER}@localhost/my_database"
2820
*)
2921

30-
WriteLn('USER=' + env.Get('USER')); //should be: "USER=admin"
31-
WriteLn('EMAIL=' + env.Get('EMAIL')); //should be: "[email protected]"
32-
WriteLn('DATABASE_URL=' + env.Get('DATABASE_URL')); //should be: "DATABASEURL=postgres://admin@localhost/my_database"
22+
WriteLn('USER=' + DotEnv.Get('USER')); //should be: "USER=admin"
23+
WriteLn('EMAIL=' + DotEnv.Get('EMAIL')); //should be: "[email protected]"
24+
WriteLn('DATABASE_URL=' + DotEnv.Get('DATABASE_URL')); //should be: "DATABASEURL=postgres://admin@localhost/my_database"
3325

3426
ReadLn;
3527
end;

demo/radDotEnv.DemoConsoleApp.dproj

-10
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,9 @@
3535
<CfgParent>Base</CfgParent>
3636
<Base>true</Base>
3737
</PropertyGroup>
38-
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
39-
<Cfg_2_Win32>true</Cfg_2_Win32>
40-
<CfgParent>Cfg_2</CfgParent>
41-
<Cfg_2>true</Cfg_2>
42-
<Base>true</Base>
43-
</PropertyGroup>
4438
<PropertyGroup Condition="'$(Base)'!=''">
4539
<SanitizedProjectName>radDotEnv_DemoConsoleApp</SanitizedProjectName>
4640
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
47-
<DCC_Define>radDotEnv_SINGLETON;$(DCC_Define)</DCC_Define>
4841
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
4942
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
5043
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
@@ -81,9 +74,6 @@
8174
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
8275
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
8376
</PropertyGroup>
84-
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
85-
<VerInfo_Locale>1033</VerInfo_Locale>
86-
</PropertyGroup>
8777
<ItemGroup>
8878
<DelphiCompile Include="$(MainSource)">
8979
<MainSource>MainSource</MainSource>

source/radDotEnv.pas

+6-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
interface
99

10-
// Compiler define option to create a singleton DotEnv variable during initialization for ease of use
11-
{.$DEFINE radDotEnv_SINGLETON }
10+
// Compiler define option to disable the creation of a singleton DotEnv variable during initialization if desired
11+
{.$DEFINE radDotEnv_DisableSingleton }
1212

1313
uses
1414
System.SysUtils,
@@ -119,7 +119,7 @@ function NewDotEnv:iDotEnv; overload;
119119
function NewDotEnv(const Options:TDotEnvOptions):iDotEnv; overload;
120120

121121

122-
{$IFDEF radDotEnv_SINGLETON}
122+
{$IFNDEF radDotEnv_DisableSingleton}
123123
var
124124
DotEnv:iDotEnv;
125125
{$IFEND}
@@ -944,8 +944,9 @@ procedure TDotEnv.GuardedParseDotEnvFileContents(const Contents:string);
944944
initialization
945945

946946
LoadGuard := TObject.Create;
947-
{$IFDEF radDotEnv_SINGLETON}
948-
DotEnv := NewDotEnv;
947+
948+
{$IFNDEF radDotEnv_DisableSingleton}
949+
DotEnv := NewDotEnv.Load;
949950
{$IFEND}
950951

951952
finalization

0 commit comments

Comments
 (0)