A.M. Hoornweg
Members-
Content Count
473 -
Joined
-
Last visited
-
Days Won
9
Everything posted by A.M. Hoornweg
-
My current approach is to store all *.PNG files in high resolution inside the resources. I scale them down to the appropriate size when the application starts and the display resolution is known. I use my own scaling routines (using a Lanczos2 filter) but there are lots of libraries that can do the same thing. This approach does not solve the situation of the user having multiple screens in multiple resolutions though.
-
@emailx45 you're kinda missing the point. Decoding is not the issue here. My point is that a "month" does not have a constant value. So expressing a countdown as "2 months and 5 days left until..." is totally vague. If there is a distance of 29 days between two dates, that distance can be either exactly one month, one month plus a day, one month minus a day or one month minus two days, depending on where in the calendar you are.
-
There are several pitfalls here. The most important one: months don't have a constant length. For example, assume it is February 14. How many months and days is it until March 13? And until March 15?
-
Somehow I totally missed this, but in october 2017 Microsoft did a complete U-turn on deprecating OleDB database connectivity. They have even released new OleDB providers for MS Sql Server which will be maintained and updated with the most recent server features. https://blogs.msdn.microsoft.com/sqlnativeclient/2017/10/06/announcing-the-new-release-of-ole-db-driver-for-sql-server/ https://docs.microsoft.com/en-us/sql/connect/oledb/oledb-driver-for-sql-server?view=sql-server-2017
-
Micro optimization - effect of defined and not used local variables
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
I mean a tool to analyze large existing projects with many units. Maybe something like TMS Fixinsight Pro. -
Micro optimization - effect of defined and not used local variables
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Especially tricky to optimize are hidden managed variables. Delphi creates those when it needs to store intermediate results of managed types [as in tstringlist.add (format('Test %d',[123]))]. It would be great if there were developer tools that would point out the creation of such hidden variables. -
Micro optimization - effect of defined and not used local variables
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Fair enough. You're using the stringlist as an internally shared object, just for saving some time by not having to create/destroy one whenever you need one. You could take that concept one step further by creating a global stringlist pool (a singleton) from which you can request an available tStringlist whenever you need one. That pool could be shared among many objects and you could even make it threadsafe if you want. The problem of having local variables of managed data types such as strings is that Delphi needs to guarantee that no memory leaks occur. So there's always a hidden Try/Finally block in such methods that will "finalize" the managed variables and release any allocated heap space. That takes time to execute, even if there's no further "code" in the method. -
Micro optimization - effect of defined and not used local variables
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
All the time. I am especially fond of classes that have only class methods. They basically act as namespaces. -
Micro optimization - effect of defined and not used local variables
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
What exactly is a "local field" ? Do you mean a private field of a class (a member of an instantiated object, located on the heap) , or do you mean a local variable of a procedure or method (located on the stack) ? -
Micro optimization - effect of defined and not used local variables
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
This makes the object unusable for multi-threading because it is unnecessarily stateful. -
Micro optimization - effect of defined and not used local variables
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Would that not potentially incur a cache miss, if the pointer points to a "remote" function? -
Ole DB (Ado) for MSSQL un-deprecated by Microsoft
A.M. Hoornweg replied to A.M. Hoornweg's topic in Databases
Could you please elaborate on that? Anything serious happening? -
Printing in a threaded program
A.M. Hoornweg replied to alogrep's topic in RTL and Delphi Object Pascal
How do you detect if the printer is in use or not? You're accessing one stateful device that's effectively a singleton so the access has to be serialized. If you insist on using threads, you could write a dedicated printer thread. -
Initialization of returned managed types
A.M. Hoornweg replied to pyscripter's topic in RTL and Delphi Object Pascal
Thanks for mentioning this, downloading now... -
Runtime create new "fields" with RTTI on a tComponent
A.M. Hoornweg replied to microtronx's topic in RTL and Delphi Object Pascal
tDictionary<T> does manage the lifetime of refcounted objects (interfaces, strings, anonymous methods, ...). If it's in the dictionary, then that's proof that the object is still alive. Try achieving that with "tcomponent.tag!"... tObjectlist<T> can manage the lifetime of plain vanilla tObject and the user can specify whether he his wishes this behavior or not in the constructor. If yes, no dangling pointers, because the user is not supposed to free manually. Of course the user is not protected from doing silly stuff like still freeing the objects manually. That's life. Yes dictionaries add a few dozen KB to the executable. But hey, RTTI adds a megabyte or so of metadata and for many/most of us it's only dead weight. If there's one single place in the compiler chain where we should be given more control, it's there. Anyway, I myself have stopped using Tag for pointers to objects because dictionaries made my life much easier. I find myself often using strings as a key because I totally like it when the code tells what it's doing. Tag will only store a fixed pointer, but a dictionary will let me query if an object exists and where it is stored, without any ugly typecasting, in a compact and legible way. 🙂 procedure tform1.Button1click(sender:tobject); var callback:tReportShowEvent; begin if ReportDict.TryGet('CurrentReport',callback) then Callback(); end; -
Runtime create new "fields" with RTTI on a tComponent
A.M. Hoornweg replied to microtronx's topic in RTL and Delphi Object Pascal
"tag" can fit a simple pointer-sized reference, sure, but you still need to handle ownership of the object. Also, "tag" has no way of knowing if the object it points to is still valid, you may need to clear the tag if the object is freed. That means writing boilerplate code. TDictionary and tObjectdictionary are "better" because they can handle object ownership. TDictionary<T> can contain managed objects such as strings, interfaces and (I suspect) even anonymous methods. If tDictionary manages the lifetime of the objects, there can't possibly be an invalid association and it reduces boilerplate code. -
Creating Simple Com Server to return array of strings to Python 3.8
A.M. Hoornweg replied to Gregory Koehn's topic in Windows API
This is what I'm missing in the current version of the type library editor (see attachment): the possibility to use Pascal syntax instead of IDL Syntax. In Delphi 2007 it was still there! -
Creating Simple Com Server to return array of strings to Python 3.8
A.M. Hoornweg replied to Gregory Koehn's topic in Windows API
Does anybody know in which Delphi version the TLB editor ceased to support Delphi syntax? -
Creating Simple Com Server to return array of strings to Python 3.8
A.M. Hoornweg replied to Gregory Koehn's topic in Windows API
Safecall does the same as stdcall returning a hresult and letting no exceptions out. It saves a lot of boilerplate code. -
Creating Simple Com Server to return array of strings to Python 3.8
A.M. Hoornweg replied to Gregory Koehn's topic in Windows API
You said it is a COM server. In that case your method has to be declared "safecall". Function tmyclass.method1:Olevariant; Safecall; That basically does the same as returning the Olevariant as an OUT parameter but in the background it additionally returns an integer (hresult) which tells the caller if the call was successful or not. [Edit] I just see you use the type library editor. Since a couple of years Delphi's type library editor no longer works with Delphi syntax directly, unfortunately, but only with RIDL syntax which looks a bit like C. Here you can see that the function's result is a HResult and the Olevariant is an OUT parameter. You will also see that the automatically created Delphi interface has functions using the "safecall" calling convention. Older versions of Delphi had a type library editor that could work in Delphi syntax directly, I found that much more straightforward to use. -
Runtime create new "fields" with RTTI on a tComponent
A.M. Hoornweg replied to microtronx's topic in RTL and Delphi Object Pascal
Please don't misuse "tag" for pointers. I'd rather use a tDictionary<tcomponent, tSomethingelse> to store associations between components and objects. It's much more universal and transparent. -
Why is public class method marked as used, while it's not actually used?
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
That may very well be so. But in my particular constellation they do not work and I'm not going to try again. Edit: Let me illustrate one of the many many problems I stumbled upon. Assume you develop some COM DLLs and some applications as independent projects and you wish to compile everything with packages, just for the sake of saving footprint. Also assume that some of these DLLs have visual dialogs, using third-party components (LMD, TMS etcetera). The unintentional side effect of this constellation is that the DLLs and the application share global variables in memory, such as the "Application" object. Without packages that would not be the case. If any DLL manipulates events of tApplication in its initialization process, such as setting "Application.OnMessage:=SomeMethod", that is a protection fault waiting to happen, because as soon as the DLL is unloaded from memory by the operating system that event will point to an invalid memory location whilst tApplication is still "live". And a lot of third-party visual component libraries do this unfortunately. In my case, the DLL's are COM dll's and the operating system loads/unloads them dynamically. -
Why is public class method marked as used, while it's not actually used?
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Packages don't work in this constellation. No really, they don't. -
Why is public class method marked as used, while it's not actually used?
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Packages aren't possible in this project unfortunately. I've tried it but there were too many issues. For the time being I still deploy using Delphi XE, using a recompiled version of the RTL and VCL that has most of the RTTI stripped out. But soon I must move everything over to Delphi 10.4 Sydney and I'd really like to find a way to reduce binary size. -
Why is public class method marked as used, while it's not actually used?
A.M. Hoornweg replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Of course there's duplicated code, the whole sense of libraries is that they contain stuff meant to be re-used. I bet that every DLL of mine carries tStringlist, tButton and a thousand common objects more. It's not the duplication of code that bothers me, it's the big block of non-code I didn't ask for.