Schematic

Automatically generate ContentProviders

License

License

Categories

Categories

Net
GroupId

GroupId

net.simonvt.schematic
ArtifactId

ArtifactId

schematic
Last Version

Last Version

0.7.0
Release Date

Release Date

Type

Type

aar
Description

Description

Schematic
Automatically generate ContentProviders
Project URL

Project URL

https://github.com/simonvt/schematic
Source Code Management

Source Code Management

https://github.com/simonvt/schematic

Download schematic

How to add to project

<!-- https://jarcasting.com/artifacts/net.simonvt.schematic/schematic/ -->
<dependency>
    <groupId>net.simonvt.schematic</groupId>
    <artifactId>schematic</artifactId>
    <version>0.7.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/net.simonvt.schematic/schematic/
implementation 'net.simonvt.schematic:schematic:0.7.0'
// https://jarcasting.com/artifacts/net.simonvt.schematic/schematic/
implementation ("net.simonvt.schematic:schematic:0.7.0")
'net.simonvt.schematic:schematic:aar:0.7.0'
<dependency org="net.simonvt.schematic" name="schematic" rev="0.7.0">
  <artifact name="schematic" type="aar" />
</dependency>
@Grapes(
@Grab(group='net.simonvt.schematic', module='schematic', version='0.7.0')
)
libraryDependencies += "net.simonvt.schematic" % "schematic" % "0.7.0"
[net.simonvt.schematic/schematic "0.7.0"]

Dependencies

compile (1)

Group / Artifact Type Version
net.simonvt.schematic : schematic-annotations jar 0.7.0

Project Modules

There are no modules declared in this project.

Schematic

Automatically generate a ContentProvider backed by an SQLite database.

Usage

First create a class that contains the columns of a database table.

public interface ListColumns {

  @DataType(INTEGER) @PrimaryKey @AutoIncrement String _ID = "_id";

  @DataType(TEXT) @NotNull String TITLE = "title";
}

Then create a database that uses this column

@Database(version = NotesDatabase.VERSION)
public final class NotesDatabase {

  public static final int VERSION = 1;

  @Table(ListColumns.class) public static final String LISTS = "lists";
}

And finally define a ContentProvider

@ContentProvider(authority = NotesProvider.AUTHORITY, database = NotesDatabase.class)
public final class NotesProvider {

  public static final String AUTHORITY = "net.simonvt.schematic.sample.NotesProvider";

  @TableEndpoint(table = NotesDatabase.LISTS) public static class Lists {

    @ContentUri(
        path = "lists",
        type = "vnd.android.cursor.dir/list",
        defaultSort = ListColumns.TITLE + " ASC")
    public static final Uri LISTS = Uri.parse("content://" + AUTHORITY + "/lists");
  }

Table column annotations

@AutoIncrement
@DataType
@DefaultValue
@NotNull
@PrimaryKey
@References
@Unique

Defining an Uri

The @ContentUri annotation is used when the Uri does not change.

@ContentUri(
  path = "lists",
  type = "vnd.android.cursor.dir/list",
  defaultSort = ListColumns.TITLE + " ASC")
public static final Uri LISTS = Uri.parse("content://" + AUTHORITY + "/lists");

If the Uri is created based on some value, e.g. an id, @InexactContentUri is used.

@InexactContentUri(
  path = Path.LISTS + "/#",
  name = "LIST_ID",
  type = "vnd.android.cursor.item/list",
  whereColumn = ListColumns._ID,
  pathSegment = 1)
public static Uri withId(long id) {
  return Uri.parse("content://" + AUTHORITY + "/lists/" + id);
}

Including in your project

dependencies {
  annotationProcessor 'net.simonvt.schematic:schematic-compiler:{latest-version}'
  compile 'net.simonvt.schematic:schematic:{latest-version}'
}

License

Copyright 2014 Simon Vig Therkildsen

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
0.7.0
0.6.8
0.6.7
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.3
0.5.1
0.5.0