Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matei-tm/f-orm-m8
The core of M8, a Dart tiny ORM framework with a simple set of annotations
https://github.com/matei-tm/f-orm-m8
dart framework orm orm-m8
Last synced: 5 days ago
JSON representation
The core of M8, a Dart tiny ORM framework with a simple set of annotations
- Host: GitHub
- URL: https://github.com/matei-tm/f-orm-m8
- Owner: matei-tm
- License: mit
- Archived: true
- Created: 2019-03-01T00:27:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-19T13:03:53.000Z (over 4 years ago)
- Last Synced: 2024-08-01T12:28:43.892Z (3 months ago)
- Topics: dart, framework, orm, orm-m8
- Language: Dart
- Homepage:
- Size: 78.1 KB
- Stars: 30
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dart Framework ORM M8
[![Gitter](https://img.shields.io/gitter/room/flutter-orm-m8/community.svg?style=flat-square)](https://gitter.im/flutter-orm-m8/community)
[![GitHub release](https://img.shields.io/github/release/matei-tm/f-orm-m8.svg)](https://github.com/matei-tm/f-orm-m8)
[![pub package](https://img.shields.io/pub/v/f_orm_m8.svg)](https://pub.dartlang.org/packages/f_orm_m8)
[![Build Status](https://travis-ci.org/matei-tm/f-orm-m8.svg?branch=master)](https://travis-ci.org/matei-tm/f-orm-m8)
[![Codecov](https://img.shields.io/codecov/c/github/matei-tm/f-orm-m8.svg)](https://codecov.io/gh/matei-tm/f-orm-m8)
[![license](https://img.shields.io/github/license/matei-tm/f-orm-m8.svg)](https://github.com/matei-tm/f-orm-m8/blob/master/LICENSE)> f_orm_m8 - \fɔːrm meɪt\ It defines the core of **M8**, a tiny ORM framework with a simple set of annotations.
- [Dart Framework ORM M8](#dart-framework-orm-m8)
- [Description](#description)
- [Introduction](#introduction)
- [Annotation](#annotation)
- [DataTable](#datatable)
- [TableMetadata](#tablemetadata)
- [DataColumn](#datacolumn)
- [ColumnMetadata](#columnmetadata)
- [CompositeConstraint](#compositeconstraint)
- [A simple approach](#a-simple-approach)
- [A fine tuned approach](#a-fine-tuned-approach)
- [Interfaces](#interfaces)
- [DbOpenEntity](#dbopenentity)
- [DbEntity](#dbentity)
- [DbAccountEntity](#dbaccountentity)
- [DbAccountRelatedEntity implements DbEntity](#dbaccountrelatedentity-implements-dbentity)
- [Usage convention](#usage-convention)
- [Concrete implementation examples](#concrete-implementation-examples)## Description
The package is for developers of code generators. The goal is to have a framework that, besides relational mapping, offers the possibility to generate scaffolds for basic usage cases: user account, user data, data tracking (create, update, delete), soft delete.
If you are looking for a ready to use implementation, check [Concrete implementation examples](#concrete-implementation-examples)!Promoted implementations:
[f_orm_m8_sqlite](https://pub.dartlang.org/packages/f_orm_m8_sqlite) - a Sqlite fixture generator with mapping capability out of the box. It is stuffed with a Flutter example project as a showcase for the common use cases covered by **M8**. See [sources on github](https://github.com/matei-tm/f-orm-m8-sqlite)
Promoted toolset:
[Flutter ORM M8 Generator](https://marketplace.visualstudio.com/items?itemName=matei-tm.f-orm-m8-generator) - VS Code extension to generate models and database adapter based on [f_orm_m8_sqlite](https://pub.dartlang.org/packages/f_orm_m8_sqlite) framework for Flutter application
## Introduction
The package adds definitions for a set of types that could be combined to expand ORM capabilities in the annotated code.
The current version defines two main annotation types and some helpers associated with each definition:- [DataTable](#datatable)
- [TableMetadata](#tablemetadata): trackCreate, trackUpdate, softDeletable
- [DataColumn](#datacolumn)
- [ColumnMetadata](#columnmetadata): ignore, primaryKey, unique, notNull, autoIncrement, indexed
- [CompositeConstraint](#compositeconstraint): unique, primaryKey, foreignKey, indexedIn order to ease the code emitting, four abstract classes are defined:
- [DbOpenEntity](#dbopenentity): non constrained entity
- [DbEntity](#dbentity): an entity with Id as primary key
- [DbAccountEntity](#dbaccountentity): a user account template with Id as primary key
- [DbAccountRelatedEntity](#dbaccountrelatedentity-implements-dbentity): user related data entities## Annotation
The annotation conventions are splitted in two:
- DataTable
- DataColumn### DataTable
DataTable describes the required name for the table in conjuction with a bit mask for optional [TableMetadata](#TableMetadata). Table metadata is specified with the parameter `metadataLevel`, and is a syntactic sugar to generate the proper fixture without explicitly adding the required fields.
```dart
@DataTable(
"a01_tests",
metadataLevel: TableMetadata.softDeletable | TableMetadata.trackCreate | TableMetadata.trackUpdate)
class A01Test implements DbAccountRelatedEntity {
```#### TableMetadata
The TableMetadata describes the basic options for the table:
- softDeletable
- trackCreate
- trackUpdateThe options may be combined in various ways using | operator
```dart
@DataTable(
"health_issues",
metadataLevel:
TableMetadata.softDeletable |
TableMetadata.trackCreate |
TableMetadata.trackUpdate)
```### DataColumn
The DataColumn describes how the fields will be transformed into entity attributes.
The DataColumn constructor has three parameters:
- name
- purpose: to specify the entity name
- type: String
- positional
- mandatory
- metadataLevel
- purpose: syntactic sugar to specify common use cases
- type: int as combination of [ColumnMetadata](#ColumnMetadata)
- named
- optional
- compositeConstraints
- purpose: a fine grain mode to specify composite constraints
- type: List<[CompositeConstraint](#CompositeConstraint)>
- named
- optional```dart
const DataColumn(this.name, {this.metadataLevel, this.compositeConstraints});
```#### ColumnMetadata
Column metadata is specified with the parameter `metadataLevel`. Is a syntactic sugar to generate a quick fixture, offering basic options for the following use cases:
- ignore
- primaryKey
- unique
- notNull
- autoIncrement
- indexedThe options can be combined in various ways using | operator
```dart
@DataColumn(
"id",
metadataLevel: ColumnMetadata.primaryKey | ColumnMetadata.unique | ColumnMetadata.autoIncrement)
```The `primaryKey`, `unique`, `indexed` constraints can be generated in a targetted way using [CompositeConstraint](CompositeConstraint)
#### CompositeConstraint
The composite constraint is able to specify the name and the type of the constraint. If the same name is used on multiple DataColumns, it will signal a composite constraint that will cover all the involved fields.
The CompositeConstraint is instantiated with named, required parameters:- name - the name of the constraint
- constraintType - the type of the constraint as enum with the following values:
- unique,
- primaryKey,
- foreignKey,
- indexed#### A simple approach
DataColumn describes the required name for the column in conjunction with a bit mask for required column metadata.
```dart
@DataColumn(
"id",
metadataLevel:
ColumnMetadata.primaryKey |
ColumnMetadata.unique |
ColumnMetadata.autoIncrement)
int id;
```#### A fine tuned approach
DataColumn describes the required name for the column in conjunction with a list of composite constraints. For example, if we need a composite, unique constraint defined on the combination of two fields, we define the composite with the same name:
```dart
@DataColumn("account_id", compositeConstraints: [
CompositeConstraint(
name: "uq_account_entry",
constraintType: CompositeConstraintType.unique)
])
int accountId;@DataColumn("description", compositeConstraints: [
CompositeConstraint(
name: "uq_account_entry",
constraintType: CompositeConstraintType.unique)
])
String description;
```## Interfaces
### DbOpenEntity
DbOpenEntity is, as it's name suggests, a template for non restrictive models with composite primary keys.
It can also be used for non integer primary key implementation.
It defines a single method getPrimaryKey### DbEntity
Can be used for a general purpose model template with integer primary key named `id`
### DbAccountEntity
It implements DbEntity.
Can be used for a model template in a generic user account with the following fields:- userName
- abbreviation
- isCurrent### DbAccountRelatedEntity implements DbEntity
It implements DbEntity.
Can be used for a model template in a generic, account dependent, entity with the following fields:- accountId
## Usage convention
The package can be a start for other projects that aim to develop an ORM scaffolding infrastructure. It is up to developers how they implement the gems of this package. We recommend the annotations to be placed as in the following example:
```dart
@DataTable("a01_tests", TableMetadata.softDeletable)
class A01Test implements DbAccountRelatedEntity {
@DataColumn(
"id",
metadataLevel: ColumnMetadata.primaryKey | ColumnMetadata.unique | ColumnMetadata.autoIncrement)
int id;@DataColumn("account_id", compositeConstraints: [
CompositeConstraint(
name: "uq_account_entry",
constraintType: CompositeConstraintType.unique)
])
int accountId;@DataColumn("description", compositeConstraints: [
CompositeConstraint(
name: "uq_account_entry",
constraintType: CompositeConstraintType.unique)
])
String description;@DataColumn("record_date")
int recordDate;
}
```## Concrete implementation examples
The following is a list of `f-orm-m8` implementations by supported backend database.
| package name | version | database | source | |
| ---------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | -------- | -------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
| [f_orm_m8_sqlite](https://pub.dartlang.org/packages/f_orm_m8_sqlite) | [![pub package](https://img.shields.io/pub/v/f_orm_m8_sqlite.svg)](https://pub.dartlang.org/packages/f_orm_m8_sqlite) | SQLite | [f-orm-m8-sqlite](https://github.com/matei-tm/f-orm-m8-sqlite) | ![GitHub release](https://img.shields.io/github/release-pre/matei-tm/f-orm-m8-sqlite.svg) |