-
Content Count
324 -
Joined
-
Last visited
-
Days Won
25
Everything posted by Arnaud Bouchez
-
Calling an "application" from windows service
Arnaud Bouchez replied to Clément's topic in RTL and Delphi Object Pascal
Fair remark. This was the point of the FAQ: https://synopse.info/files/html/Synopse mORMot Framework SAD 1.18.html#TITL_123 Also check https://tamingthemormot.wordpress.com/ blog entries. -
Calling an "application" from windows service
Arnaud Bouchez replied to Clément's topic in RTL and Delphi Object Pascal
I am confused by this description. What do you call a "user"? Is it a client app? Then why this client logic should be compiled within the main module? Please refine your system description. If you meant having your main service call some sub-functions for custom process, then you may rather call separated services. An embedded dll (or com server, whatever) is the right way to make your system instable. If the dll has some memory leaks or write somewhere in memory, you may corrupt the main process.... So I would isolate the custom logic into one or several dedicated services - so point 3. Perhaps you need to refine the design of your SOA solution. You don't need a monolithic REST server. The best practice today for several services is to create MicroServices. When a Windows Service "does a lot of stuff", from my point of view it sounds like not a very maintainable design. The first step would be to split the main service into smaller services, then put an orchestrator/application service as frontend, calling third-party services if necessary. Perhaps some design part of our framework documentation may help. Check http://mormot.net -
How to keep track/organize all overloaded, extended 3rd party source code?
Arnaud Bouchez replied to Mike Torrettinni's topic in General Help
Try to push a pull request to the original project, if it is Open Source. If it is useful to you, it may be useful to others. The pull request may not be directly merged, since the project owners may have some requirements (testing, code format, comments, documentation, cross-platform...). It is a great way to enhance your abilities, and give back to the community. For 3rd party non-free components, it is more difficult. You may use the branch feature of a SCM (git or fossil e.g.) to backport the original 3rd pary code updates to your patched branch. -
ANN: TMS Web Core for Visual Studio Code - Public Beta
Arnaud Bouchez replied to José León's topic in Delphi Third-Party
This is a huge step forward, to allow RAD development using Visual Studio code, for client applications. Even young developers, unwilling to use Delphi, could use the tool and develop the frontend. Then the server side can still use Lazarus or Delphi, and existing code for the business logic and the data access. -
Automate Restorable Operations with Custom Managed Records
Arnaud Bouchez replied to Erik@Grijjy's topic in Tips / Blogs / Tutorials / Videos
Discussion about FPC / Delphi CMR is available here: https://forum.lazarus.freepascal.org/index.php?topic=43143.0 So not compatible yet. But I guess that FPC - in {$mode Delphi} will eventually be Delphi compatible. See https://wiki.freepascal.org/management_operators as reference. -
Have you seen CompilerExplorer?
Arnaud Bouchez replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
Old versions of FPC, sadly. Gareth did some optimizations included in 3.2 and trunk... worth seeing it live in the generated asm! I have seen generated asm being improved in FPC since years. I sadly can't say the same with Delphi - especially on cross-platform, e.g. about inlining floating point operations. I use godbolt since years to check the asm generated by latest gcc with high-level of optimization and opcodes. It is useful to have some reference code when writing some SSE2 or AVX/AVX2 asm. -
question about GPL and Delphi
Arnaud Bouchez replied to RDP1974's topic in Tips / Blogs / Tutorials / Videos
@RDP1974 Yes, we may make it Delphi compatible. The only big difference with FastMM4 is the lock-less round-robin of tiny blocks, and a diverse repartition. Also the locking strategies are not the same than FastMM4. Then some micro-optimization during the refactoring. We will see how it works with Delphi Win64. -
High-level interface-based encapsulation of Direct2D Svg functionality
Arnaud Bouchez replied to pyscripter's topic in Windows API
Nice! Thanks for sharing. -
Automate Restorable Operations with Custom Managed Records
Arnaud Bouchez replied to Erik@Grijjy's topic in Tips / Blogs / Tutorials / Videos
Side note: see for instance the ProtectMethod use of https://synopse.info/files/html/Synopse mORMot Framework SAD 1.18.html#TITLE_57 which is similar. What I miss with records is inheritance. Static inheritance, I mean, not virtual inheritance. This is why I always like the `object` type, and find it weird that is deprecated and buggy since Delphi 2010... Check https://blog.synopse.info/?post/2013/10/09/Good-old-object-is-not-to-be-deprecated-it-is-the-future almost seven years ago... already... I tend to search for alternatives not in C++, where alternate memory models were added later on - as with Delphi. But in new languages like Rust which has a new built-in memory model. Rust memory management is perhaps the most interesting/tricky/difficult/powerful/promising (pickup your own set) feature of this language. Both C++ and Delphi suffer from the complexity of all their memory model. COW, TComponent, interface, variant, new/dispose, getmem/freemem, create/free... it may be confusing for newcomers. My guess is that 80% of Delphi RAD users seldom allocate manually memory (just for a few TStringList), and rely on the TComponent ownership and visual design. At least they removed ARC from the landscape! 🙂 CMR is a nice addition - which FPC featured since some time, by the way... We still need to check the performance impact of this initial release - writing efficient RTL was not the main point of Embarcadero these latest years. I hope it won't reduce regular record/class performance. -
Automate Restorable Operations with Custom Managed Records
Arnaud Bouchez replied to Erik@Grijjy's topic in Tips / Blogs / Tutorials / Videos
It is not obvious to me what is the advantage in respect to using an interface-based (or custom variant-base) instance holder. You can auto-generate the same try/finally hosting the data within an interface, or a custom variant. Since the oldest Delphi revisions. Interfaces can host regular objects with no problem. A custom record may be slightly faster, by allocating its memory on stack and not on heap - but performance is not the main point here, this is about code writability - less source lines, more hidden behavior. -
question about GPL and Delphi
Arnaud Bouchez replied to RDP1974's topic in Tips / Blogs / Tutorials / Videos
Yes, GPL is known as a "viral licence": it infects with freedom any program using its source. Note there is a difference between GPL 2 and GPL 3 - the later being a bit more precise, and explicit about patent issues. https://www.ifross.org/en/what-difference-between-gplv2-and-gplv3 And that a library could also be published under LGPL, which is a version with "linking exception". -
Indeed. I would have written an "out" parameter in the docs, at least. The function should set or initialize the value. And the compiler should emit a warning in your case. FPC is much more paranoid about such warnings, but at least it tries to warn anything dubious, and allow to disable false positives with the {$H-} trick on the faulty line.
-
Remove/disable .NET personality from RAD Studio 2007
Arnaud Bouchez replied to dummzeuch's topic in Delphi IDE and APIs
I never install the Delphi 2007 IDE any more. I just copy the dcc.exe and some files (including its dcu) and use the command-line compiler. For testing, it was enough... and nothing to setup, just copy the files from an existing setup. Edit: But I understand now it won't help you, since I guess you need to validate installation of your IDE plug-in. Sorry. -
Help with string extraction function
Arnaud Bouchez replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
This is the main point. Premature optimization is the root of all evil! 🙂 @Mahdi Safsafi Such abstract/broad input about non Delphi compilers has nothing to do with the initial question of this thread, which is performance of string process with Delphi. It is clearly out of scope and subject. What does a DSP compiler has in common with the Delphi compiler? Even the MAC units of DSPs have very little in common with regular CPUs. -
TCriticalSection and cache line size
Arnaud Bouchez replied to dummzeuch's topic in RTL and Delphi Object Pascal
You are right - initialize all objects in one go. My mistake. 🙂 -
64bit Out of Process Server
Arnaud Bouchez replied to Mark Williams's topic in RTL and Delphi Object Pascal
So a REST server won't work since you need a COM object as Word Add-In. -
Help with string extraction function
Arnaud Bouchez replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
@Mahdi Safsafi My experiment with the Delphi compiler and pointers is not the same as yours. In mORMot, I ended up with using pointers (PUTF8Char=^AnsiChar) for the raw UTF-8 processing, which generated faster code. Of course, pointers are difficult to deal with - you need to know what you are doing. I always consider pointers by looking at the generated ASM. If the code is better and runs faster with pointer, then I use them. Otherwise I don't. I am biased for sure: I like pascal because it can be both high-level and modern (like Java/C# - with high-level structures like classes, strings or dynamic arrays), and also system-level (like C). Pointers are clearly for the 2nd level. Anyone don't like pointers? Don't use them. But they are pretty convenient and efficient for low-level processing, if the goal is performance. I like very much when you paternize me with the Gather-scatter pattern. You can perfectly do Gather-scatter with two pointers. This is called pointer arithmetic - which I use extensively in mORMot. So I don't understand what you are talking about. -
TCriticalSection and cache line size
Arnaud Bouchez replied to dummzeuch's topic in RTL and Delphi Object Pascal
It occurred to Eric at least with DWS. He actually monitored it before fixing it. Of course, he dealt with a language compiler and execution stack, but I guess a lot of other kind of projects may have very tiny objects - if the SOLID principles are properly followed. -
FastMM5 vs. inbuilt Delphi 10.3.3 memory manager
Arnaud Bouchez replied to John Terwiske's topic in Delphi Third-Party
FastMM5 purpose is to shine with multi-threaded apps. For a single-threaded app, e.g. a simple RAD VCL/FMX project, performance may not be really better. Note: your benchmark function will probably spend most of its time not within the MM. I guess most of the time is spent in Memo1.Lines.Add if the search string occurs often. -
64bit Out of Process Server
Arnaud Bouchez replied to Mark Williams's topic in RTL and Delphi Object Pascal
Note that 32-bit and 64-bit COM servers are registered separated, IIRC. To communicate between apps, I would rather use a regular REST server. Our little mORMot can re-use an interface to define the service, just like with COM. Check https://medium.com/@step.bester/web-apis-with-mormot-891c0ecd3950 -
TCriticalSection and cache line size
Arnaud Bouchez replied to dummzeuch's topic in RTL and Delphi Object Pascal
The cache line performance issue is still relevant. And it could happen in practice, e.g. when initialization in a raw. In mORMot, we used the filler to store some variants in https://synopse.info/files/html/Synopse mORMot Framework SAD 1.18.html#TITL_184 -
Help with string extraction function
Arnaud Bouchez replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
This is not as simple as this. IIRC prefecthing has no difference between indexed (mov ecx, byte ptr [eax+edx]) or direct access (mov ecx, byte ptr[eax]). The reference material about instruction latency and execution pipelinging is https://www.agner.org/optimize/instruction_tables.pdf and it is highly depending on the CPU. https://www.agner.org/optimize is worth reading and understanding. https://lemire.me/blog/ is another very interesting blog about performance of text processing, from a lot of experience and actual knowledge. Branchless SSE code will be the faster in all circumstances... Then use a wall clock measure of full realistic process - not just measuring a loop. -
Help with string extraction function
Arnaud Bouchez replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
It depends on the complexity of the loop. For instance, about how variables are assigned to local stack variables or registers. If the use of the for-to index is not mapped into a register, then thatpointer[ i ] will be slower... Sometimes, just using a small local functions help the Delphi compiler make better register allocation, and may end up be faster... Remember 🙂 -
Help with string extraction function
Arnaud Bouchez replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Branch prediction can do wonders in some micro-benchmarks, but they always have a cost, until the CPU logic actually "warmed up". No branch is always better, since the real problem is branch misprediction. Using the asm generated by a recent GCC with tuned optimization flags as a reference is a good hint of what is likely to be more efficient. Intel and AMD are major GCC contributors. And a wall clock of a realistic process (not micro benchmark) is the ultimate reference. We use some part of our automated tests as performance benchmark, running some close-to-the reality scenarios. -
Help with string extraction function
Arnaud Bouchez replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Indeed. This is why I use the "if x then repeat until not x" explicit pattern in time-critical loops of my framework - e.g. when processing JSON. As a nice side effect, the variables uses in "x" are more likely to be assigned to registers, since they will be used more often. Sometimes an explicit temporary local variable is needed. Or use of the 'result' variable if it is a PChar. Both Delphi and FPC require this, unless "x" is a single simple test, where I have seen FPC able to optimize it IIRC.