Jump to content

Fr0sT.Brutal

Members
  • Content Count

    2268
  • Joined

  • Last visited

  • Days Won

    46

Everything posted by Fr0sT.Brutal

  1. Oh, you're right, thanks! Then helpers seem the most convenient way to go.
  2. AFAIK there could be only one class helper until some of 10s so adding this you're blocking a user from creating his own ones. In this very case, you can define a descendant class where Count property would be declared for older compilers (GetSize is protected so there's no problem). Then you can typecast or just use type name as a pseudonym for your derived class: {$IFDEF Old_Compiler} TCompatJSONObject = class(Json.TJSONObject); property Count: Integer read GetSize; end; TJSONObject = TCompatJSONObject; {$ENDIF} If I get it right, non-published properties are "virtual" (just a syntax sugar) so these classes will even be binary-identical. In general, there's no convenient universal solution, every case should be considered individually.
  3. Fr0sT.Brutal

    Difference between Pred and -1

    ... and Addr() 🙂
  4. Fr0sT.Brutal

    The interfaces in Delphi are bad?

    Yeah, they got it right. Though they have to keep Delphi compat. Could both interface types be used together? Very nice workaround!
  5. Fr0sT.Brutal

    The interfaces in Delphi are bad?

    Delphi interfaces mix two concepts - ref-counting with auto disposal and the very interfaces as a required method set - into one type whereas frequently only one of them is needed. While ARC was bad idea because it broke too much old code, it had some sense. I guess if Delphi introduced new types like IPlainInterface and TRefCountedObject, it would be pretty nice and useful
  6. Fr0sT.Brutal

    Do you name your Threads for debugging?

    +1 for naming, it's handy. I do it manually though with just a class name
  7. Anyway `While MediaInfoThread.IsSuspended = False do Sleep(1); ` looks very suspicious to me, like useless wasting CPU cycles.
  8. Fr0sT.Brutal

    Difference between Pred and -1

    I was bitten several times by errors in "for 0..N-1" loops when container was empty and iterator was unsigned. So for arrays "for Low..High", for other types "for in" and "for 0..Count-1" only when modification of an element is required
  9. OK, now that I see the interface my suggestion of blocking seems ineffective (though it would be nice in another cases). In this case: - Launch render in bg thread generating some unique value that will identify its results (ExpectResID := NewGUID; Thread.ResID := ExpectResID; Thread.Start) - Output some information like "Render in process..." on the panel that will later contain the image - If user starts another render, launch one more thread with another ResID and override ExpectResID (the value of ID to expect) so that when 1st thread finishes and reports results, they will be discarded. Optionally, if rendering algo allows cancelling, cancel the old thread to release resources. Otherwise just let the thread finish its job. - When rendering thread finishes, post this event to form async-ly with PostMessage - Paint the image - Optionally consider limitation of number of launched threads
  10. That really does address the cause of the problem. There's no sense in giving an opportunity to launch several renders at the same time. And blocking of operation's repeat is very common in UI
  11. Fr0sT.Brutal

    Difference between Pred and -1

    That's why I said "could". 😉
  12. Fr0sT.Brutal

    Difference between Pred and -1

    The coolest thing about for-in is that you can implement it for any custom class or record by implementing an iterator. So, f.ex., you can have `for jsonval in JSONDoc.Values['somearray']`. For-in works for strings as well iterating by chars though I personally haven't used it in such way. And it's a bit slower so for time-critical routines usual `for` still remains actual (though for very super time-critical things pointer increasing could beat `for` anyway)
  13. Just disable ability to launch another render until current one is done.
  14. Fr0sT.Brutal

    Align right in Converts Strings

    SQL.Text := 'SELECT * '+ ' FROM ... '+ ' WHERE ...'
  15. I agree adding of such comments is not a formatter's task. It would be useful in more advanced form, like generating of documentation stub with all parameters and result.
  16. Fr0sT.Brutal

    Difference between Pred and -1

    I only use Pred rarely with enums. With integers it's worse than N-1. I guess having for-in construction there's not much need in last index
  17. Fr0sT.Brutal

    OpenType file API?

    They say " Anyway, OTF and TTF are pretty much identical file structures. OTF simply has more structures for enhanced font features. " in that topic.
  18. Fr0sT.Brutal

    Why does this code work when it shouldn't?

    AV is when you access memory not belonging to your process. In this case you just access memory that is being freed but still belongs to the process. If you want array index control, enable range check
  19. Fr0sT.Brutal

    OpenType file API?

    Maybe you could start from this https://forum.lazarus.freepascal.org/index.php?topic=33141.0
  20. Fr0sT.Brutal

    ICS FTP with TLS

    Sure, he has 192.168.* which is local network address.
  21. Fr0sT.Brutal

    freeing an object in different process

    I guess you didn't really meant process
  22. Fr0sT.Brutal

    Exception.CreateFmt vs. CreateResFmt

    Yep, I know 😉 For my projects this fact pushed me to change most of in-place string concatenations to formatting of constant literals which additionally is good preparation for easy localization in future.
  23. Too specific IMHO. Couldn't Delphinus help you in your case?
  24. Fr0sT.Brutal

    Exception.CreateFmt vs. CreateResFmt

    Noticed this hidden catch too so turned all my routines to use CreateFmt. Btw, the same goes for string concatenation raise Exception.Create('Error: '+ErrorText);
  25. Fr0sT.Brutal

    THttpCli - retry request

    Sorry, I have no Delphi nearby currently, try to read ICS samples, there are plenty.
×