# delphi-neon **Repository Path**: ak17/delphi-neon ## Basic Information - **Project Name**: delphi-neon - **Description**: https://github.com/paolo-rossi/delphi-neon.git - **Primary Language**: Delphi - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-03 - **Last Updated**: 2024-03-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Neon - JSON Serialization Library for Delphi

Neon Library

## What is Neon ![Top language](https://img.shields.io/github/languages/top/paolo-rossi/delphi-neon) [![GitHub release](https://img.shields.io/github/release/paolo-rossi/delphi-neon)](https://github.com/paolo-rossi/delphi-neon/release) [![GitHub issues](https://img.shields.io/github/issues/paolo-rossi/delphi-neon)](https://github.com/paolo-rossi/delphi-neon/issues) [![GitHub PR](https://img.shields.io/github/issues-pr/paolo-rossi/delphi-neon)](https://github.com/paolo-rossi/delphi-neon/pulls) ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/paolo-rossi/delphi-neon) ![GitHub last commit](https://img.shields.io/github/last-commit/paolo-rossi/delphi-neon) ![GitHub contributors](https://img.shields.io/github/contributors-anon/paolo-rossi/delphi-neon) [![GitHub license](https://img.shields.io/github/license/paolo-rossi/delphi-neon)](https://github.com/paolo-rossi/delphi-neon/blob/master/LICENSE) **Neon** is a serialization library for [Delphi](https://www.embarcadero.com/products/delphi) that helps you to convert (back and forth) objects and other values to JSON. It supports simple Delphi types but also complex class and records. **Neon** has been designed with **REST** in mind, to exchange pure data between applications with no *"metadata"* or added fields, in fact **Neon** is the default JSON serialization engine for the [WiRL REST Library](https://github.com/delphi-blocks/WiRL). Please take a look at the Demos to see **Neon** in action. ### Neon Main Demo This is the main demo where you can see how you can serialize/deserialize simple types, records, classes, Delphi specific types (TStringList, TDataSet, etc...): ![Neon Mega Demo](https://user-images.githubusercontent.com/4686497/103461978-64c83000-4d22-11eb-85c5-1a829b4ec0c0.png) ### Neon Benchmarks Demo This new demo tries to compare the standard TJSON serialization engine with the TNeon engine, with a few changes you can compare TNeon with other serialization engines out there: ![Neon Benchmarks Demo](https://user-images.githubusercontent.com/4686497/216270908-0a702077-02fe-4295-bce5-8da78ee46599.png) ### A Neon Introduction by Holger Flick (Video) [![Modern Delphi web development #7](https://img.youtube.com/vi/djzfeS9k4KU/0.jpg)](https://www.youtube.com/watch?v=djzfeS9k4KU) ## General Features ### Configuration Extensive configuration through `INeonConfiguration` interface: - Word case (Unchanged, UPPERCASE, lowercase, PascalCase, camelCase, snake_case) - CuStOM CAse (through anonymous method) - Member types (Fields, Properties) - Option to ignore the "F" if you choose to serialize the fields - Member visibility (private, protected, public, published) - Custom serializer registration - Use UTC date in serialization - Auto creation of nil (object) members ### Delphi Types Support Neon supports the (de)serialization of most Delphi standard types, records, array and of course classes. Classes can be complex as you want them to be, can contain array, (generic) lists, sub-classes, record, etc... #### Simple values - Basic types: **string, Integer, Double, Boolean, TDateTime** #### Complex values - **Dynamic Arrays** of (basic types, records, classes, etc...) - **Records** with fields of (basic types, records, classes, arrays, etc...) - **Classes** with fields of (basic types, records, classes, arrays, etc...) - **Generic lists** - **Dictionaries** (key must be of type string) - **Streamable classes** #### Custom Serializers - Inherit from `TCustomSerializer` and register the new serializer class in the configuration ## Todo ##### Code - More Unit Tests ## Prerequisite This library has been tested with **Delphi 12 Athens**, **Delphi 11 Alexandria**, **Delphi 10.4 Sydney**, **Delphi 10.3 Rio**, **Delphi 10.2 Tokyo**, but with a minimum amount of work it should compile with **Delphi XE7 and higher** #### Libraries/Units dependencies This library has no dependencies on external libraries/units. Delphi units used: - System.JSON (DXE6+) - System.Rtti (D2010+) - System.Generics.Collections (D2009+) ## Installation Simply add the source path "Source" to your Delphi project path and.. you are good to go! ## Code Examples ### Serialize an object #### Using TNeon utility class The easiest way to serialize and deserialize is to use the `TNeon` utility class: Object serialization: ```delphi var LJSON: TJSONValue; begin LJSON := TNeon.ObjectToJSON(AObject); try Memo1.Lines.Text := TNeon.Print(LJSON, True); finally LJSON.Free; end; end; ``` Object deserialization: ```delphi var LJSON: TJSONValue; begin LJSON := TJSONObject.ParseJSONValue(Memo1.Lines.Text); try TNeon.JSONToObject(AObject, LJSON, AConfig); finally LJSON.Free; end; ``` #### Using TNeonSerializer and TNeonDeserializer classes Using the `TNeonSerializerJSON` and `TNeonDeserializerJSON` classes you have more control over the process. Object serialization: ```delphi var LJSON: TJSONValue; LWriter: TNeonSerializerJSON; begin LWriter := TNeonSerializerJSON.Create(AConfig); try LJSON := LWriter.ObjectToJSON(AObject); try Memo1.Lines.Text := TNeon.Print(LJSON, True); MemoError.Lines.AddStrings(LWriter.Errors); finally LJSON.Free; end; finally LWriter.Free; end; end; ``` Object deserialization: ```delphi var LJSON: TJSONValue; LReader: TNeonDeserializerJSON; begin LJSON := TJSONObject.ParseJSONValue(Memo1.Lines.Text); if not Assigned(LJSON) then raise Exception.Create('Error parsing JSON string'); try LReader := TNeonDeserializerJSON.Create(AConfig); try LReader.JSONToObject(AObject, LJSON); MemoError.Lines.AddStrings(LWriter.Errors); finally LReader.Free; end; finally LJSON.Free; end; ``` #### Neon configuration It's very easy to configure **Neon**, ```delphi var LConfig: INeonConfiguration; begin LConfig := TNeonConfiguration.Default .SetMemberCase(TNeonCase.SnakeCase) // Case settings .SetMembers(TNeonMembers.Properties) // Member type settings .SetIgnoreFieldPrefix(True) // F Prefix settings .SetVisibility([mvPublic, mvPublished]) // Visibility settings // Custom serializer registration .GetSerializers.RegisterSerializer(TGUIDSerializer) ; end; ```
Paolo Rossi