Teknik makale

HotXLS: formula calculation and custom functions in Delphi

Excel çalışma kitaplarını doğrudan Delphi veya C++Builder kodundan oluşturun, düzenleyin, inceleyin, hesaplayın ve dışa aktarın. HotXLS; Microsoft Excel otomasyonu olmadan masaüstü araçları, batch işleri, raporlama sistemleri ve sunucu tarafı belge üretimi için tasarlanmış, XLS ve XLSX iş akışlarına yönelik kaynak kodlu yerel bir Object Pascal kütüphanesidir.

Bu yazı developers generating workbooks whose calculated results are part of the product output için hazırlanmıştır. formula calculation and custom functions konusunu tek bir bileşen çağrısı olarak değil, üretim düzeyinde belge mühendisliği olarak ele alır.

Pratik risk şudur: formula results can appear correct in simple cases while dependency order, custom functions, locale parsing, volatile functions, or error values differ in production. Bu nedenle akışın yazılı sözleşmeye, gözlemlenebilir tanılara ve gerçekçi regresyon dosyalarına ihtiyacı vardır.

Mimari kararlar

Treat calculation as a deterministic service. calculation mode, dependency refresh, and whether cached values are trusted / custom function names, argument types, null handling, and versioning

  • calculation mode, dependency refresh, and whether cached values are trusted
  • custom function names, argument types, null handling, and versioning
  • locale handling for decimal separators, date literals, and function names
  • error-value policy for invalid references, division by zero, and unsupported formulas

Uygulama akışı

Register custom functions before loading dependent formulas. The order below keeps the workflow reviewable for Delphi and C++Builder teams.

  1. register custom functions and workbook names before calculation
  2. load or generate formulas with explicit dependency expectations
  3. calculate targeted ranges or full workbook output according to the profile
  4. compare critical results with independent fixtures or approved Excel output
  5. write calculation diagnostics into the support bundle when results are disputed

Doğrulama kanıtı

Calculation evidence for finance and support. Keep these fields with the output or support record.

  • formula count, dependency graph summary, custom function calls, and recalculation time
  • critical cell addresses, formula text, cached value, calculated value, and error state
  • custom function version, arguments, returned value, and exception mapping
  • locale profile and unsupported-formula warnings

Custom functions need versioned behavior

A formula engine workflow should make dependencies, custom function registration, recalculation mode, cached results, and error handling visible. That is especially important when generated workbooks are consumed without Excel automation.

Üretim uygulama notları

HotXLS: formula calculation and custom functions in Delphi konusunu HotXLS çağrılarının çevresinde açık bir servis sözleşmesi olarak ele alın; giriş doğrulama, çalışma kitabı yazma, çıktı denetimi ve destek kanıtını ayırın

  • Çalışma kitabını oluşturmadan önce veri kaynağını, hücre aralıklarını ve çıktı biçimini belirleyin
  • Satır sayısı, sayfalar, uyarılar ve çıktı yolunu incelenebilir destek kaydına yazın
  • Uygulamaya özel ayrıntıları UI olaylarına değil test edilebilir helper'lara yerleştirin
  • Dosyayı başka sisteme veya müşteriye vermeden önce kaydedilmiş çıktıyı yeniden açın veya inceleyin

Prova edilmesi gereken hata kipleri

  • Başarılı SaveAs çağrısı iş sözleşmesinin doğru kaldığını kanıtlamaz
  • Sunucu ile geliştirici makinesinde yazı tipleri, izinler ve bölgesel ayarlar farklı olabilir
  • Loglar parola, müşteri verisi veya iç bağlantı açığa çıkarmamalıdır

Ayrıntılı Delphi örneği

Aşağıdaki Delphi örneği bu konu için pratik bir servis sınırı gösterir ve politika, günlükleme ve doğrulamayı test edilebilir katmanda tutar

procedure RecalculateInvoiceWorkbook(const TemplateFile, OutputFile: string; const Orders: TArray<TOrderRow>);
var
  Wb: TXLSXWorkbook;
  Sh: IXLSWorksheet;
  RowIndex: Integer;
  Order: TOrderRow;
begin
  Wb := TXLSXWorkbook.Create;
  try
    Wb.Open(TemplateFile);
    RegisterInvoiceFunctions(Wb);
    Sh := Wb.Sheets[0];
    EnsureTemplateVersion(Wb, 'invoice-formulas-v3');

    RowIndex := 2;
    for Order in Orders do
    begin
      Sh.Range['A' + IntToStr(RowIndex)].Value := Order.Sku;
      Sh.Range['B' + IntToStr(RowIndex)].Value := Order.Quantity;
      Sh.Range['C' + IntToStr(RowIndex)].Value := Order.UnitPrice;
      Sh.Range['D' + IntToStr(RowIndex)].Value := '=B' + IntToStr(RowIndex) + '*C' + IntToStr(RowIndex);
      Sh.Range['E' + IntToStr(RowIndex)].Value := '=InvoiceTax(D' + IntToStr(RowIndex) + ')';
      Inc(RowIndex);
    end;

    Wb.Calculate;
    AssertFormulaRangeHasValues(Sh, 'D2:E' + IntToStr(RowIndex - 1));
    WriteCalculationAudit(Wb, 'invoice-formulas', RowIndex - 2);

    if Wb.SaveAs(OutputFile) <> 1 then
      RaiseWorkbookSaveError(OutputFile);
  finally
    Wb.Free;
  end;
end;

Üretim kontrol listesi

  • Run the workflow on an empty workbook, a normal customer workbook, and a worst-case workbook
  • Open the output with the target spreadsheet application or downstream importer
  • Log product version, template version, profile, row count, output path, elapsed time, and warning count
  • Keep passwords, temporary files, customer data, and support bundles under explicit retention rules
  • Add regression workbooks when a customer file exposes a new edge case

Product documentation

HotXLS Component