optinsoft / MMDBReader

Delphi Reader for MaxMind MMDB files

Home Page:http://optinsoft.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MMDB Reader

Description

This distribution provides a Delphi reader for the MaxMind DB file format.

Requirements

Delphi 10.2 Tokyo or newer.

Usage

uses uMMDBReader;

var
  LMMDBReader: TMMDBReader;
  LIPAddress: TMMDBIPAddress;
  LIPInfo: TMMDBIPCountryInfo;
  prefixLength: Integer;
begin
 LIPInfo := TMMDBIPCountryInfo.Create;
 LMMDBReader := TMMDBReader.Create('C:\GeoIP2\GeoLite2-Country.mmdb');
 try
   LIPAddress := TMMDBIPAddress.Parse('8.8.8.8');
   if LMMDBReader.Find<TMMDBIPCountryInfo>(LIPAddress, prefixLength, LIPInfo) then
     ShowMessage(Format('country_iso_code: "%s", country_geoname_id: %s', [LIPInfo.Country.ISOCode, IntToStr(LIPInfo.country.GeonameId)]))
   else
     ShowMessage('Not found');
 finally
   LMMDBReader.Free;
   LIPInfo.Free;
 end;
end;

License

BSD 2-Clause License.

Dependencies

BigNumbers by Rudy Velthuis (https://github.com/rvelthuis/DelphiBigNumbers).

Contributions

MMDB Reader uses modified IPTypesX module from Albert de Weerd (included in source).

Supporting the project

About

Delphi Reader for MaxMind MMDB files

http://optinsoft.net/

License:BSD 2-Clause "Simplified" License


Languages

Language:Pascal 100.0%