Section courante

A propos

Section administrative du site

Onion Architecture

L'Onion Architecture, aussi nommé Architecture en Oignon, est un patron d'architecture conçu pour gérer la complexité des applications en créant des couches bien définies et en s'appuyant sur des principes de séparation des préoccupations et de dépendances inversées. Développé par Jeffrey Palermo, ce modèle vise à rendre le code plus facilement testable, maintenable et évolutif.

Principes de l'Onion Architecture

Avantages de l'Onion Architecture

Limites de l'Onion Architecture

Cas d'utilisation de l'Onion Architecture

L'Onion Architecture est particulièrement adaptée aux applications d'entreprise avec une logique métier complexe, où la séparation des responsabilités et l'indépendance des dépendances sont primordiales, comme :

Exemple

Voici un exemple en langage de programmation Free Pascal de l'architecture en Oignon (Onion Architecture). Considérons un exemple simplifié d'application pour gérer un inventaire de produits. L'Onion Architecture est basée sur le principe de couches concentriques protégeant le noyau de la logique métier de la dépendance vis-à-vis des couches extérieures, telles que les interfaces utilisateur, les bases de données, et autres infrastructures.

Créer les entités et les interfaces dans le coeur

Voici le fichier «Core/ProductEntity.pas» :

  1. Unit ProductEntity;
  2.  
  3. {$MODE OBJFPC}
  4.  
  5. INTERFACE
  6.  
  7. Type
  8.  TProduct=Class
  9.   Private
  10.    FID:Integer;
  11.    FName:String;
  12.    FPrice:Double;
  13.   Public
  14.    Property ID:Integer read FID write FID;
  15.    Property Name:String read FName write FName;
  16.    Property Price:Double read FPrice write FPrice;
  17.    Constructor Create(AID:Integer;AName:String;APrice:Double);
  18.  End;
  19.  
  20. IMPLEMENTATION
  21.  
  22. Constructor TProduct.Create(AID:Integer;AName:String;APrice:Double);Begin
  23.  FID:=AID;
  24.  FName:=AName;
  25.  FPrice:=APrice;
  26. End;
  27.  
  28. END.

Voici le fichier «Core/IProductRepository.pas» :

  1. Unit IProductRepository;
  2.  
  3. {$MODE DELPHI}
  4.  
  5. INTERFACE
  6.  
  7. Uses
  8.  ProductEntity;
  9.  
  10. Type
  11.  IProductRepository=Interface
  12.    ['{8D1A7630-F345-44F5-9F3A-8D9B676B2D53}']
  13.   Procedure AddProduct(Product:TProduct);
  14.   Function GetProductByID(ID:Integer):TProduct;
  15.  End;
  16.  
  17. IMPLEMENTATION
  18.  
  19. END.

Service d'application

Le service d'application gère la logique métier et utilise l'interface du dépôt pour l'accès aux données.

Voici le fichier «Application/ProductService.pas» :

  1. Unit ProductService;
  2.  
  3. {$MODE DELPHI}
  4.  
  5. INTERFACE
  6.  
  7. Uses
  8.  ProductEntity, IProductRepository;
  9.  
  10. Type
  11.  TProductService=Class
  12.   Private
  13.    FRepository:IProductRepository.IProductRepository;
  14.   Public
  15.    Constructor Create(ARepository: IProductRepository.IProductRepository);
  16.    Procedure AddProduct(AProduct: TProduct);
  17.    Function FindProductByID(ID: Integer): TProduct;
  18.  End;
  19.  
  20. IMPLEMENTATION
  21.  
  22. Constructor TProductService.Create(ARepository:IProductRepository.IProductRepository);Begin
  23.  FRepository:=ARepository;
  24. End;
  25.  
  26. Procedure TProductService.AddProduct(AProduct:TProduct);Begin
  27.  FRepository.AddProduct(AProduct);
  28. End;
  29.  
  30. Function TProductService.FindProductByID(ID:Integer):TProduct;Begin
  31.  FindProductByID:=FRepository.GetProductByID(ID);
  32. End;
  33.  
  34. END.

Infrastructure pour les données

La couche infrastructure implémente l'interface de dépôt.

Voici le fichier «Infrastructure/ProductRepository.pas» :

  1. Unit ProductService;
  2.  
  3. {$MODE DELPHI}
  4.  
  5. INTERFACE
  6.  
  7. Uses
  8.  ProductEntity, IProductRepository;
  9.  
  10. Type
  11.  TProductService=Class
  12.   Private
  13.    FRepository:IProductRepository.IProductRepository;
  14.   Public
  15.    Constructor Create(ARepository: IProductRepository.IProductRepository);
  16.    Procedure AddProduct(AProduct: TProduct);
  17.    Function FindProductByID(ID: Integer): TProduct;
  18.  End;
  19.  
  20. IMPLEMENTATION
  21.  
  22. Constructor TProductService.Create(ARepository:IProductRepository.IProductRepository);Begin
  23.  FRepository:=ARepository;
  24. End;
  25.  
  26. Procedure TProductService.AddProduct(AProduct:TProduct);Begin
  27.  FRepository.AddProduct(AProduct);
  28. End;
  29.  
  30. Function TProductService.FindProductByID(ID:Integer):TProduct;Begin
  31.  FindProductByID:=FRepository.GetProductByID(ID);
  32. End;
  33.  
  34. END.

Voici le fichier «Infrastructure/ProductRepository.pas» :

  1. Unit ProductRepository;
  2.  
  3. {$MODE DELPHI}
  4.  
  5. INTERFACE
  6.  
  7. Type
  8.    { Déclaration de l'interface IProductRepository }
  9.  IProductRepository=Interface
  10.    ['{E6C8B2C6-A8C6-4B3F-8BA8-ADF3B2F58D9A}'] // GUID pour l'identification unique
  11.   Procedure AddProduct(Const AProduct:String);
  12.   Function GetProduct(Const AID:Integer):String;
  13.  End;
  14.  
  15.   { Déclaration de la classe TProductRepository implémentant l'interface IProductRepository }
  16.  TProductRepository=Class(TInterfacedObject,IProductRepository)
  17.   Private
  18.    FProducts: array of string;
  19.   Public
  20.    Procedure AddProduct(const AProduct: string);
  21.    Function GetProduct(const AID: Integer): string;
  22.  End;
  23.  
  24. IMPLEMENTATION
  25.  
  26. Procedure TProductRepository.AddProduct(Const AProduct:String);Begin
  27.   { Ajouter le produit dans le tableau (à titre d'exemple) }
  28.  SetLength(FProducts,Length(FProducts)+1);
  29.  FProducts[High(FProducts)]:=AProduct;
  30. End;
  31.  
  32. Function TProductRepository.GetProduct(Const AID:Integer):String;Begin
  33.  If(AID >= 0)and(AID < Length(FProducts))Then Result:=FProducts[AID]
  34.                                          Else Result:='Produit non trouvé';
  35. End;
  36.  
  37. END.

Interface Utilisateur pour l'interaction

Un programme console utilise le service pour ajouter et rechercher des produits.

Voici le fichier «UI/Main.pas» :

  1. Program Main;
  2.  
  3. {$MODE DELPHI}
  4.  
  5. Uses
  6.  IProductRepository,ProductEntity, ProductService,
  7.  ProductRepository, SysUtils;
  8.  
  9. Var
  10.  Repository:TProductRepository;
  11.  Service:TProductService;
  12.  NewProduct,FoundProduct:TProduct;
  13. BEGIN
  14.  Repository:=TProductRepository.Create;
  15. { Service:=TProductService.Create(Repository);}
  16.  
  17.   { Ajouter un produit }
  18.  NewProduct:=TProduct.Create(1,'Ordinateur portable', 1299.99);
  19.  Service.AddProduct(NewProduct);
  20.  WriteLn('Produit ajouté: ',NewProduct.Name);
  21.  
  22.   { Rechercher le produit par ID }
  23.  FoundProduct:=Service.FindProductByID(1);
  24.  If Assigned(FoundProduct)Then WriteLn('Produit trouvé: ',FoundProduct.Name,' - Prix: $',FoundProduct.Price:0:2)
  25.                           Else WriteLn('Produit non trouvé.');
  26. END.


Dernière mise à jour : Vendredi, le 1er novembre 2024