Jump to content

John Kouraklis

Members
  • Content Count

    332
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by John Kouraklis


  1. Remy, thanks for the explanation and for sharing your knowledge 👍. I admit that even if I had gone all the way down to retrieve the enumerators I would never have thought to Invoke them.

     

    I use 10.3.3 and the first instance of TKey in System.Generics.Collections is this:

    ------> This is line 748
      (*$HPPEMIT END OPENNAMESPACE*)
      (*$HPPEMIT END '  template<typename TKey, typename TValue>'*)
      (*$HPPEMIT END '  inline __fastcall TPair__2<TKey, TValue>::TPair__2(const TKey AKey, const TValue AValue) :'*)
      (*$HPPEMIT END '                                            Key(AKey), Value(AValue)'*)
      (*$HPPEMIT END '  {}'*)
      (*$HPPEMIT END CLOSENAMESPACE*)
      [HPPGEN(HPPGenAttribute.mkNonPackage)]
      TPair<TKey,TValue> = record
        Key: TKey;
        Value: TValue;
        constructor Create(const AKey: TKey; const AValue: TValue);
      end;
    
      // Hash table using linear probing
      TDictionary<TKey,TValue> = class(TEnumerable<TPair<TKey,TValue>>)
      private type
        TItem = record
          HashCode: Integer;
          Key: TKey;
          Value: TValue;
        end;
        TItemArray = array of TItem;

     


  2. @Remy Lebeau Wow....Amazing and complicated stuff. So I really need to drill down to the enumerator to get hold of the pairs.

     

    Thanks a lot for this!!!

     

    You mentioned that it might be unreliable to do this with generics. Do you think the app may crash for more complex dictionaries?

     

    22 minutes ago, Remy Lebeau said:
    Quote

    In the code above, I replaced TKey with string because I couldn't find the declaration of TKey.

    Because it doesn't exist.  For a dictionary, TKey and TValue are Generic parameters of the TDictionary class.  They are not standalone concrete types, like you are thinking of.

    And out of curiosity, how does the compiler recognise TKey then? It must be from the HPPEMIT directive, right?


  3. Ok, now the more important problem as stated in the beginning. In this code, genDict throws an exception although propValue is correct

    program Project1;
    
    {$APPTYPE CONSOLE}
    
    {$R *.res}
    
    uses
      System.SysUtils,
      System.Generics.Collections,
      System.Rtti;
    
    type
      TObjDic = TObjectDictionary<string, string>;
    
      TMClass = class
      private
        fMC: TObjDic;
      public
        constructor Create;
        destructor Destroy; override;
        
        property MC: TObjDic read fMC write fMC;
      end;
    
    constructor TMClass.Create;
    begin
      inherited;
      fMC:=TObjDic.create;
    end;
    
    destructor TMClass.Destroy;
    begin
      fMC.Free;
      inherited;
    end;
    
    var
      mc: TMClass;
      ctx: TRttiContext;
      rType: TRttiType;
      rProp: TRttiProperty;
      propValue: TValue;
      genDict: TObjectDictionary<string, TValue>;
    
    begin
      mc:=TMClass.Create;
      rType := ctx.GetType(mc.ClassInfo);
      rProp:=rType.GetProperty('MC');
      // In this code, this may seem redundant but I use this code is part of
      // bigger codebase
      propValue:=rProp.GetValue(mc);
      genDict:=nil;
      genDict:=propvalue.AsObject as TObjectDictionary<string, TValue>;
      if Assigned(genDict) then
      begin
        for var str in genDict.Keys do
        begin
          // For demo
          var f:=str;
        end;
        genDict.Free;
      end;
      mc.Free;
    end.

     


  4. I found out that TKey in my code is declared (for unexplained reasons) in Data.DBXCommon with is irrelevant. Maybe that is the cause of the AVs I get.

     

    But now I don't seem to be able to declare TKey as data type although I include System.Generics.Collections. How do I declare it in a unit? It is originally declared using $HPPEMIT (Generics.Collections, line 750)


  5. Hi,

    I've got a class and it has a property TDictionary<..,..>.

     

    I want to use RTTI to access the key and value of the dictionary.

     

    I am able to get the property but I can't figure out how to access the key and values.

     

    I use this approach:

    var
     genericDictionary: TDictionary<TKey, TValue>;
     propValue: TValue;
     ...
       propvalue.ExtractRawDataNoCopy(@genericDictionary);
       ---> Here I can see in the debugger that genericDictionary has the items and the correct count
       

    Then, I get AV when I try to iterate the Keys because TKey is an abstract class.

     

    Anyone can help?

     

    Thanks


  6. I researched a lot this because I wanted to include ads in my desktop app as well.

     

    The bottom line is that all the content publishers support only mobile apps. I have seen the link you give before but I am unclear as to whether it works. I doubt TBH.

    Google ads does not allow desktop apps indeed and they ban your account even if you "fake" a website withing a browser component.

     

    I have a app on my desktop (TuneIn) that shows ads from google. In earlier versions, they were using Taboola but now they moved to Google Ads. When I was reaching out people from the ad networks, they all told me that the app is using a few google accounts and cycles them so detection is avoided. They also said that eventually google will figure it.

     

    If you download the app, you can click and drag and select all the components in the window; pretty much what you do in a web page. This makes me think that the app is written with some sort of web framework and is mocking a website and thus the ads show normally.

     

    One of those people I talked to said that in general revenue from ads in desktop apps is extremely low which in practice makes it a worthless choice unless you have 4-5 million downloads. He suggested to consider other forms of licensing, like freemium, etc.

     

     

     

    • Like 1

  7. Hi,

    I had icons assigned to one of my projects and now all of the sudden delphi doesn't use them. Instead, when the FMX app runs I see the generic icon from windows.

     

    When I go to App Options, my icons appear there. Then, I click on Default, the icons change in the Options dialog but again not used when I execute the app I get the generic icon again.

     

    I've checked the .dprog file and deleted the entries with icons and reassigned them in the IDE.

     

    Sadly I can't seem to be able to assign icons to the app.

     


  8. @Kas Ob. Yeah...there must be something seriously wrong.

     

    I tried the app you sent but it says that win store repair is disabled because win store frequent changes

     

    I then downloaded an updated win store repair wizard I found online and it is asking me to login to my email account. But when I try to add an email account the popup window shuts down.

     

    So the whole installation is damaged. I will not avoid a clean install.

     

    The only thing I am bored of is the installation of all delphi packages :classic_biggrin::classic_biggrin:

     

    Gkrrr....10.4 is far, right 🙂

     

     


  9. Neither sfc nor dism fixed anything although they said they completed successfully.

     

    wsreset sadly fails. I've tried many times before.

     

    It says "You'll need a new app to open this ms-window-store link"

     

    That's why I believe I need a fresh installation


  10. Just now, Sherlock said:

    Why don't you just recover from the backup you made before this experiment?

    :classic_biggrin::classic_biggrin::classic_biggrin::classic_biggrin::classic_biggrin::classic_biggrin::classic_biggrin:

    Well, the experiment was 1 year ago and I recently concluded that this must be the reason windows eat CPU load....

    Sadly, no backups are avail.

     


  11. By any chance, does anyone know how to restore windows store?

     

    I had this idea to get rid of all the unnecessary apps that come with windows and I removed them and windows store from Win 10 via PowerShell.

     

    Now, Windows consumes 100% CPU and I can see that processes like wsappx and the like get stuck so I assume that totally removing windows store is not a good idea at all.

     

    I tried to reinstall it via PowerShell, Creator Disk to fix Windows Installation and other methods but no luck at all.

     

    Before I do a clean installation maybe someone has a tip on this?

     

    Thanks 


  12. Is this a VCL app or FMX?

     

    Where does the code appear? In the proj file? if so, it does not really remove the form from being auto created. You just don't use the feature in the IDE

     

    Try creating the form using the default way: frmMain:=TfrmMain.Create.... and then assign it to the Application as the MainForm

     

×