-
Content Count
3481 -
Joined
-
Last visited
-
Days Won
114
Everything posted by Lars Fosdal
-
As a Delphi expert, do you ever need to refactor or improve your code?
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Another challenge is knowing when NOT to refactor. "This code works, but it looks awful... should I refactor?" -
Any Good tutorial on Parallel Programming Library?
Lars Fosdal replied to Tommi Prami's topic in RTL and Delphi Object Pascal
Since threading is non-trivial, it is hard to make examples that are not either non-trivial or oversimplified. You may find yourself writing quite a bit of scaffolding code, which would have come for free with OTL. -
Any Good tutorial on Parallel Programming Library?
Lars Fosdal replied to Tommi Prami's topic in RTL and Delphi Object Pascal
What are your needs / goals? -
Running commandline app and capturing output
Lars Fosdal replied to Tommi Prami's topic in Windows API
Is the behavior erratic across multiple executions of the same application - or is it specific applications that do not let you capture? -
True, but the point is a more natural limit of variable scope. var ref := Some.Array[Index1].Reference; var thing := Function(Index1).Thing; if ref.Value <> thing.Value then begin ... end; // ref and thing ARE present here I guess you could wrap it in another pair of begin/end - but that would look a bit strange, while the with signals clearly that these are local.
-
I'd like this to be possible, and a compiler switch that bans the old with statements. with var ref := Some.Array[Index1].Reference, var thing := Function(Index1).Thing do begin if ref.Value <> thing.Value then begin ... end; end; // ref and thing are not present
-
Did you mean https://quality.embarcadero.com/browse/RSP-18953 - Tommi? 21814 is the Windows 10 Ansi/UTF-8 QP - which, by the way, returns different values on my Windows 10 Enterprise 1809 10.0.17763.831, depending on which PowerShell version you use. PowerShell 5.1 IsSingleByte : True BodyName : iso-8859-1 EncodingName : Western European (Windows) HeaderName : Windows-1252 WebName : Windows-1252 WindowsCodePage : 1252 IsBrowserDisplay : True IsBrowserSave : True IsMailNewsDisplay : True IsMailNewsSave : True EncoderFallback : System.Text.InternalEncoderBestFitFallback DecoderFallback : System.Text.InternalDecoderBestFitFallback IsReadOnly : True CodePage : 1252 PowerShell 6.2.4 Preamble : BodyName : utf-8 EncodingName : Unicode (UTF-8) HeaderName : utf-8 WebName : utf-8 WindowsCodePage : 1200 IsBrowserDisplay : True IsBrowserSave : True IsMailNewsDisplay : True IsMailNewsSave : True IsSingleByte : False EncoderFallback : System.Text.EncoderReplacementFallback DecoderFallback : System.Text.DecoderReplacementFallback IsReadOnly : True CodePage : 65001
-
Anyone compiled Android apps (api 16) for Industrial devices with Android 4.1.x
Lars Fosdal replied to microtronx's topic in Cross-platform
What are the odds that FMX in Rio uses something that is not present in SdkVersion 14? -
How to make app with tabbed set of VNC windows
Lars Fosdal replied to David Schwartz's topic in General Help
In that case, Remote Desktop Manager is the way to go. -
Would it be possible to wrap the assembly versions of these in Delphi? https://www.nayuki.io/page/fast-sha2-hashes-in-x86-assembly
-
How to make app with tabbed set of VNC windows
Lars Fosdal replied to David Schwartz's topic in General Help
If the need is simply parallel remote control like starting/stopping scripts/apps or services - you would do much better by using PowerShell. -
How to make app with tabbed set of VNC windows
Lars Fosdal replied to David Schwartz's topic in General Help
@David Schwartz Have you guys tried https://remotedesktopmanager.com/ ? It is freaking awesome for managing a large server park! We have literally hundreds of servers and would be lost without it. It supports pretty much every remoting protocol you can think of: https://remotedesktopmanager.com/features/remote-connection-management You can have the windows tabbed, cascaded, tiled vertically or horizontally. You can lock the Windows hotkeys so that you have to use the mouse to get out of the context of the remote view. I.e. Alt-Tab happens within the focused remote connection. There is a free version for personal use, but if you have a team, you want the enterprise version. -
Custom TrueType font in FMX Android app?
Lars Fosdal replied to Lars Fosdal's topic in Cross-platform
Do all of them involve creating a modified FMX.FontGlyphs.Android.pas !? Is there a QP I can vote for to improve this somehow? -
Overloaded generic methods
Lars Fosdal replied to chkaufmann's topic in RTL and Delphi Object Pascal
Must it be an overload? Why not FindComponentsByClass vs FindComponentsWithInterface ? -
Detect user location from ip address
Lars Fosdal replied to Mark Williams's topic in Network, Cloud and Web
It is a joke - implying that if you surf from the space station, you get dating ads that are "near you" as spammers often use geolocation to generate fake ads for offers in your area. -
Detect user location from ip address
Lars Fosdal replied to Mark Williams's topic in Network, Cloud and Web
Geolocation from IP address: https://www.iplocation.net/ip-address -
What are your compiler settings for debug builds?
Lars Fosdal replied to dummzeuch's topic in Delphi IDE and APIs
Same as @dummzeuch We also leave range checks on for release versions. For us, API and database access times dwarf the array access times, and there is nothing quite like live data to throw curveballs at your algorithms. -
@PeterPanettone I tried to fix that quote but only succeeded in making it worse. @Daniel - Something is broken when editing posts with quotes.
-
Delphi Rio 10.3.3 crashes on big multiline constants.
Lars Fosdal replied to vhanla's topic in Delphi IDE and APIs
Integrity control. -
If you want to use Hyper-V for virtualization, you need Pro. You can use VirtualBox instead. If you ever would need to join a company network, Pro is needed.
-
Delphi Rio 10.3.3 crashes on big multiline constants.
Lars Fosdal replied to vhanla's topic in Delphi IDE and APIs
The process of making a change to the example file in the QP case would be painstaking and error-prone. I'd compress the original file, add it as a resource, and decompress in memory. No worries about encoding, quoting, and such. -
Reading large UTF8 encoded file in chunks
Lars Fosdal replied to Clément's topic in RTL and Delphi Object Pascal
Would it be feasible to memory map the utf8 file? -
Cannot perform this operation on a closed dataset
Lars Fosdal replied to bazzer747's topic in Databases
@bazzer747 Added a rough outline of how to use the FireDAC monitor -
How to do FireDAC monitoring or logging to file. Here is a rough outline of what you need to do. The code is not ready to use as is and serves only to give you the general gist. Add FireDAC.Moni.Base, FireDAC.Moni.RemoteClient, FireDAC.Moni.FlatFile to your uses clause Somewhere appropriate, create the following - I keep them in my DatabasePool class. FTracing: Boolean // init to False FMonitorBy: TFDMonitorBy; // init to mbRemote FMonitorLink: TFDMoniClientLinkBase; // init to nil // Here is where the actual establishing of the tracing happens depending on the trace model. procedure TDBPool.SetMonitorBy(const Value: TFDMonitorBy); begin Lock; try if (FMonitorBy <> Value) and Assigned(MonitorLink) then FreeAndNil(FMonitorLink); FMonitorBy := Value; // mbNone or mbCustom disables the monitoring if MonitorBy = mbRemote then begin MonitorLink := TFDMoniRemoteClientLink.Create(nil); end else if MonitorBy = mbFlatFile then begin MonitorLink := TFDMoniFlatFileClientLink.Create(nil); TFDMoniFlatFileClientLink(MonitorLink).FileName := ParamStr(0)+'.'+FormatDateTime('yyyymmdd-hhnnss', Now)+'.FireDAC.log'; TFDMoniFlatFileClientLink(MonitorLink).FileAppend := False; end; if Assigned(MonitorLink) then MonitorLink.Tracing := Self.Tracing; finally Unlock; end; end; // Use Tracing to enable / disable the tracing function TDBPool.GetTracing: Boolean; begin Result := FTracing; end; procedure TDBPool.SetTracing(const Value: Boolean); begin FTracing := Value; if not Assigned(MonitorLink) then SetMonitorBy(FMonitorBy) else MonitorLink.Tracing := Self.Tracing; end; procedure TDBPool.SetMonitorLink( const Value: TFDMoniClientLinkBase); begin FMonitorLink := Value; end; // When the DB connection is created - it should assign the MonitorBy value procedure TDB_FD.CreateFireDACConnections; const OSAuthent = 'No'; begin if not Assigned(FConnection) then begin OnConnectionCreate; FConnection := TFDConnection.Create(nil); FConnection.DriverName := DBPool.DataBaseDriverName; // that you have selected - This example assumes an MSSQL driver - see other code block below FConnection.Params.Values[MSSQLParam.Server] := Trim(FHost); FConnection.Params.Values[MSSQLParam.Database] := Trim(FDatabaseName); FConnection.Params.Values[MSSQLParam.OSAuthent] := OSAuthent; FConnection.Params.Values[MSSQLParam.User_Name] := Trim(FUserName); FConnection.Params.Values[MSSQLParam.Password] := Trim(FPassword); FConnection.Params.MonitorBy := DBPool.MonitorBy; ... end; BTW - Selecting the right DatabaseDriverName can have a significant impact on performance. Here is how I currently pick my preferred MSSQL driver. Why are those constants are not in the interface section of FireDAC.Phys.MSSQL, @Dmitry Arefiev? class function TDBPoolMSSQL.FindBestDriver(const Link: TFDPhysMSSQLDriverLink): String; const // Constants copied from implementation section of FireDAC.Phys.MSSQL C_2018_ODBC = 'ODBC DRIVER 18 FOR SQL SERVER'; C_2017_ODBC = 'ODBC DRIVER 17 FOR SQL SERVER'; C_2016_ODBC = 'ODBC DRIVER 13 FOR SQL SERVER'; C_2012_ODBC = 'ODBC DRIVER 11 FOR SQL SERVER'; {$IFDEF POSIX} C_FreeTDS = 'FreeTDS'; {$ENDIF} {$IFDEF MSWINDOWS} C_2012_NC = 'SQL SERVER NATIVE CLIENT 11.0'; {$ENDIF} var DriverList : TStringList; WantedList : TArray<String>; begin Result := ''; // Blank = Default WantedList := {$IFDEF MSWINDOWS} {$IFDEF SQLNative} // defined if supposed to prioritize the old SQLNCLI11 [C_2012_NC, C_2017_ODBC, C_2016_ODBC, C_2012_ODBC] {$ELSE} [C_2018_ODBC, C_2017_ODBC, C_2016_ODBC, C_2012_NC, C_2012_ODBC] {$ENDIF} {$ENDIF} {$IFDEF POSIX} [C_2018_ODBC, C_2017_ODBC, C_2016_ODBC, C_2012_ODBC, C_FreeTDS] {$ENDIF}; DriverList := TStringList.Create; try Link.GetDrivers(DriverList); for var Wanted in WantedList do for var Driver in DriverList do begin // DebugOut('ODBC: "' + Driver + '"'); if CompareText(Wanted , Driver) = 0 then Exit(Wanted); end; finally DriverList.Free; end; end;
-
That was my first reaction as well - do you have a memory leak - i.e. allocate objects which are never disposed of? Private bytes is the one to watch. Our services go belly up when it reaches about 1.6Gb - due to something leaking. I use Process Hacker 2 over Process Explorer as I can get at more statistics for each process with that one. As suggested above, use FastMM to check for leaking objects. Check the number of handles allocated to the application. Do you do allocations through Windows APIs? Are those deallocated?