Showing posts with label Pattern. Show all posts
Showing posts with label Pattern. Show all posts

Tuesday, January 8, 2019

Delphi Flux application architecture

A good application architecture

Finding a good application architecture is not easy, but defining an architecture for your application is important: like it or not, every application is going to have an architecture.
There is no such thing as the Best Architecture, but there is the Best Architecture for your current application! (finish the project on time, with quality, less bugs as possible - no bugs preferred :) - and easy collaboration with your teammates).
Flux is the application architecture that Facebook uses to structure client-side web applications, is very simple to understand and there is almost no code for it. It's just a way to do things.
It’s a Clean Architecture so it’s not intended only for web apps, but its features and simplicity will allow us to adapt it very well to other kind of projects.
I believe Flux is very good choice.

Delphi Flux

Base Flux concepts, I created a project on Github Delphi-Flux-Seed. This project is an application skeleton to apply Flux concepts in Delphi applications. You can use it to quickly bootstrap your Delphi application. 

About Delphi Flux I held a session at CodeRage 2018, so you can watch the replay of that session at this link. Here are the slides of my presentation at CodeRage 2018:

Monday, August 6, 2018

Delphi Cookbook - Third Edition

This book is the 3rd edition of the Delphi Cookbook serie: Delphi Cookbook is a best sellers for PacktPub (the editor) in its category, so the editor decided to ask me a 3rd edition in co-authorimg with Daniele Teti (author of the 2 previous versions). So here it is!

What's new

In this third edition we wanted to add content to keep the book updated with emerging technologies and new features made available by Delphi: there are 2 chapters completely new, one for Linux Development and one for Integration with IoT, added useful chapters on FireDAC and RTTI attributes. Furthermore, this edition contains all the recipes from the previous editions updated to the new Delphi 10.2 Tokyo: reaching 780 pages for 78 recipes!

This book today lets you learn all the development possibilities offered by Delphi: cross-platform (Firemonkey), mobile applications (Android and iOS), server-side programs (Linux and Windows), integration with IoT, working with data (FireDAC, JSON, XML) and so on...

Topics of the book

  • Develop visually stunning applications using FireMonkey
  • Deploy LiveBinding effectively with the right OOP approach
  • Working with data (JSON, XML)
  • Design, develop and deploy server-side programs to serve RESTful web services (Linux and Windows) and provide data to your mobile apps
  • Use well-defined GUI design patterns to build mobile applications that provide a great user experience
  • Extremely useful recipes on FireDAC database access framework
  • Build mobile apps that read data from a remote server efficiently
  • Call the platform native API on Android and iOS even for an unpublished API
  • Manage software customization for your customer by making better use of an extended        RTTI
  • Implement the most popular design pattern without wasting too much time on debugging and bug fixing
  • Enrich your knowledge of Delphi deepening the libraries made available
  • Integrate your applications with Internet of Things

It is not an introductory book, you will not find any “Introduction to the Object Pascal language”, however the majority of the chapters are not too complex and can be grasped also by the new Delphi programmers.

Another interesting thing is that thanks to the release of the Delphi Community Edition (you do not know what it is ?? go here ...) all chapters except chapters 6 and 7 can be addressed through the use of this free version. For chapters 6 and 7, as it is Linux and server-side development, the Enterprise version of Delphi is required.

Where to buy

The book is available for sale on the editor website and on Amazon.

PacktPub (Official book page)


Amazon


GitHub repo for recipes code


Table of contents


Chapter 1: Delphi Basics

  • Changing your application's look and feel with VCL styles
  • Changing the style of your VCL application at runtime
  • Customizing TDBGrid
  • Using owner-draw combos and listboxes
  • Making an owner-draw control aware of the VCL styles 
  • Creating a stack of embedded forms 
  • Manipulating JSON 
  • Manipulating and transforming XML documents 
  • I/O in the 21st century – knowing the streams 
  • Creating a Windows Service 
  • Using the TService.LogMessage method 
  • Be coherent with the Windows look and feel using TTaskDialog 
  • The amazing TFDTable – indices, aggregations, views, and SQL 
  • ETL made easy – TFDBatchMode 
  • Data integration made easy – TFDLocalSQL 


Chapter 2: Becoming a Delphi Language Ninja 

  • Fun with anonymous methods – using higher-order functions 
  • Writing enumerable types 
  • Using enumerable types to create new language features 
  • RTTI to the rescue – configuring your class at runtime 
  • Duck typing using RTTI 
  • BOs validation using RTTI attributes 
  • Creating helpers for your classes 


Chapter 3: Knowing Your Friends – The Delphi RTL

  • Checking strings with regular expressions 
  • Consuming RESTful services using native HTTP(S) client libraries 
  • Coping with the encoded internet world using System.NetEncodings 
  • Saving space using System.Zip 
  • Decoupling your code using a cross-platform publish/subscribe mechanism


Chapter 4: Going Cross-Platform with FireMonkey

  • Giving a new appearance to the standard FireMonkey controls using styles 
  • Creating a styled TListBox 
  • Impressing your clients with animations 
  • Using master/details with LiveBindings 
  • Showing complex vector shapes using paths 
  • Using FireMonkey in a VCL application 
  • Reinventing your GUI, also known as mastering Firemonkey controls, shapes, and effects 


Chapter 5: The Thousand Faces of Multithreading

  • Synchronizing shared resources with TMonitor 
  • Talking with the main thread using a thread-safe queue 
  • Synchronizing multiple threads using TEvent 
  • Communication made easy with Delphi Event Bus 
  • Displaying a measure on a 2D graph like an oscilloscope 
  • Using the Parallel Programming Library in the real world: Tasks 
  • Using the Parallel Programming Library in the real world: Futures 
  • Using the Parallel Programming Library in the real world: Parallel For/Join 


Chapter 6: Putting Delphi on the Server 

  • Developing web client JavaScript applications with WebBroker on the server 
  • Converting a console application into a Windows service 
  • Serializing a dataset to JSON and back 
  • Serializing objects to JSON and back using RTTI 
  • Sending a POST HTTP request for encoding parameters 
  • Implementing a RESTful interface using WebBroker 
  • Controlling remote application using UDP 
  • Using app tethering to create a companion app 
  • Creating DataSnap Apache modules 
  • Creating WebBroker Apache modules 
  • Using native HTTP(S) client libraries 
  • Logging like a pro using LoggerPro 


Chapter 7: Linux Development 

  • Creating Linux TCP/IP servers
  • How to correctly handle Linux signals
  • How to build a modern Linux daemon 
  • Building a TCP/IP Linux server and daemonizing it 
  • Building a RESTFul server for Linux 
  • Building a complete RESTful server with database access and web client interface 
  • Creating WebBroker Apache modules for Linux 


Chapter 8: Riding the Mobile Revolution with FireMonkey

  • Taking a photo, applying effects, and sharing it 
  • Using TListView to show and search local data 
  • Using SQLite databases to handle a to-do list 
  • Do not block the main thread! 
  • Using a styled TListView to handle a long list of data 
  • Customizing the TListView 
  • Taking a photo and location and sending it to a server continuously 
  • Talking with the backend 
  • Making a phone call from your app 
  • Tracking the application's life cycle 
  • Building your own SMS sending service with the REST API 


Chapter 9: Using specific platform features

  • Using Android SDK Java classes 
  • Using iOS Objective-C SDK classes
  • Displaying PDF files in your app 
  • Sending Android Intents 554
  • Letting your phone talk – using the Android TextToSpeech engine 
  • Using Java classes in Android apps with Java2OP 
  • Doing it in the background, the right way – Android services 


Chapter 10: Delphi and IoT 

  • How to blink an LED using Arduino 
  • How to drive multiple relays with Arduino and Delphi
  • Reading data from Arduino 
  • How to blink an LED using Raspberry Pi 
  • How to drive multiple relays with Raspberry Pi and Delphi 
  • Reading data from Raspberry PI 

Sunday, August 27, 2017

Delphi Event Bus and MVVM

In last ITDevCon, I held a speech on how to build modern applications with Delphi. In the speech I showed what are the good programming techniques and how to reach them in Delphi. The path was completed by presenting the MVVM pattern as solution. For more info about this pattern I suggest you these books:

  1. John Kouraklis, MVVM in Delphi
  2. Syromiatnikov, A., A Journey Through the Land of Model-View-* Design Patterns.

MVVM intents is to separate the domain logic from the presentation logic in three modules with distinct responsibilities:

  • handle the domain data (Model)
  • View state and business logic (View Model) 
  • Handle user interaction and rendering of the visual user interface (View)
The hardest part ( as in any software development ) is the Separation of Concerns (SOC), to keep separate layers so future changes do not interfere with each other. High cohesion and loose coupling, precisely! 
MVVM can manage UI Synchronization in two ways:
  1. Flow synchronization
    • uses direct calls between user interface components and domain. It is based on sequential command: read user input from text box A, processing it with method B, and write the result to text label C 
  2. Observer synchronization
    • the domain layer must implement a notification mechanism to which components of the user interface layer can subscribe. This allows the user interface components to update the state of the user interface when relevant changes in the domain occur
Both solutions keep the layers separated, but the Flow synchronization forces you to write an enormity of boiler plate code and write an Observer framework from zero ( why reinvent the wheel ? ) would be expensive in terms of developments.
Delphi Event Bus comes in our help! For those that doesn't know Delphi Event Bus (for short DEB), it is a publish/subscribe Event Bus framework for the Delphi platform.
DEB is designed to decouple different parts/layers of your application while still allowing them to communicate efficiently.
Simply put the Subscribe attribute on your subscriber method you are able to receive a specific event, and by specifying the TThreadMode in attribute you can choose the context where to deliver the event.
For example, if you have to interact with the UI EventBus can deliver events in the main thread or If your subscriber does long running tasks (HTTP request), EventBus can also use background threads to avoid UI blocking. Regardless where an event was posted the EventBus will manage Thread synchronization, so you can deliver an Event in the MainThread and the subscriber will receive it on a background thread and viceversa.
Look this demo (you need DMVC for server side part) to check how I resolve UI Synchronization in client/server context with REST request in background!









Sunday, June 25, 2017

Simple retry mechanism in Delphi

Hi all,
I want to share with you a nice unit that provide a retry pattern. How many times you want to execute some code and, if that method throws an exception, you want to retry executing it several times? For example when you try to connect to a service or network resource or a database. The operation was something that failed frequently enough that it was necessary sometimes to retry until it succeeded. With this unit you enable an application to handle transient failures by transparently retrying a failed operation.
Here is the RetryHelperU:
The snippet is very simple to understand: you have to specify the number of retries, the milliseconds between each retry and a TProc that represents the operation to do.
I also added this project to my Delphi Demos repository.
I hope it will be useful!