Skip to content

A generic data processing pipeline using templates, polymorphism, smart pointers, and the Factory pattern. Demonstrates ownership management, extensibility, and separation of concerns.

Notifications You must be signed in to change notification settings

PopoviciGabriel/Generic-Data-Processing-Pipeline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generic Data Processing Pipeline

A modular, fully generic, template-based C++ pipeline for processing arbitrary data through composable transformation stages.
Designed to demonstrate strong abstraction, separation of concerns, type safety, and modern C++20 programming practices.


🚀 Features

  • Fully generic processing pipeline
    • Handles any input and output types using C++ templates
  • Composable processing stages
    • Each stage transforms data and passes it to the next
  • Loose coupling via interfaces / concepts
  • Extensible design
    • Stages can be added, removed, or reordered
  • Supports synchronous or batched processing
  • No raw pointers
    • Clean RAII code with smart pointers or references
  • Header-only and lightweight

🧩 Architecture Overview

About

A generic data processing pipeline using templates, polymorphism, smart pointers, and the Factory pattern. Demonstrates ownership management, extensibility, and separation of concerns.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages