Noodle


Source link: https://github.com/nolia/Noodle

Noodle is a simple object storage for Android.

Download

Get it from JitPack.

repositories {

  ...
  maven {
 url 'https://jitpack.io' 
}
 
}
  dependencies {

  compile 'com.github.nolia:Noodle:master-SNAPSHOT' 
}
 

Usage

You can use Noodle both as a key-value storage and as collection persistence framework. To initialize Noodle you can use builder:

Noodle noodle = Noodle.with(context).build();

Key-value storage

You can put any type of object to the storage.

noodle.put("Android7", "Nougat").now();

Get stored value.

T value = noodle.get("myObject", T.class).now();

Remove the data.

boolean isRemoved = noodle.delete("toRemove").now();

Collections

Using collections is also really simple: no schema, no relations, no consistency rules, no thread-contained objects. Just create Noodle instance and register types you want to store. The only requirement, that class should have an annotated id field with type of Long or long.

class Book {

 @Id
long id;
 String title;
String author;
 public Book(String title, String author) {

  this.title = title;
  this.author = author;

}
 
}
  Noodle noodle = Noodle.with(context)
.addType(Book.class)
.build();
 

Alternatively, if you don't want or not able to add annotation to the class, you can use Description. You can provide either the name of the field (that it would be set with reflection mechanism):

Noodle noodle = Noodle.with(context)
.addType(Book.class, Description.of(Book.class)
  .withIdField("id")
  .build()
);

Or you can specify get and set methods:

Noodle noodle = Noodle.with(context)
.registerType(Book.class, Description.of(Book.class)
  .withGetIdOperator(book -> book.id))
  .withSetIdOperator((book, id) -> book.id = id)
  .build()
);

This allows you to use other types as an Id field.

Collections allow you to list, put, delete, get (by id) and filter your objects.

collection = noodle.collectionOf(Book.class);
  Book book = new Book("I Robot", "Isaac Asimov");
  // Get all. List<Book> list = collection.all().now();
  collection.put(book).now();
 // Now, book object has updated id.  // Update: book.title = "I, Robot"; collection.put(book).now();
  // Delete: collection.delete(book.id).now();

Filter

List<Book> search(final String query) {

return collection.filter(new Collection.Predicate<Book>() {

  @Override
  public boolean test(final Book book) {

 return book.title.contains(query)

  || book.authorName.contains(query);

  
}

}
).now();
 
}

Filtering is happening in memory, by pulling objects one by one and testing with provided predicate.

Threading

Each operation on collections and key-value storage is synchronized on Storage level. This means that can be only one read/write operation at a time.

All methods return Result object, which wraps the actual results, that you can access either with synchronous now() method, or with callback and get() method.

collection.filter(new Collection.Predicate<Book>() {

 @Override

 public boolean test(final Book book) {

return book.title.contains(query);

 
}

  
}
)
  .executeOn(Executors.newSingleThreadExecutor())
  .withCallback(new Result.Callback<List<Book>>() {

 @Override

 public void onReady(final List<Book> books) {

adapter.setBooks(books);

 
}

  @Override

 public void onError(final Exception e) {

Log.e(TAG, 'Error getting books:', e);

Toast.makeText(context, "Could not get your books :(", Toast.LENGTH_SHORT).show();

 
}

  
}
)
  .get();

Rx Support

If you prefer RxJava, Noodle is got you covered. You can convert any Result of the operation to Observable:

collection.put(book)
  .toRxObservable()
  .subscribe();

Notes:

  • RxJava v2 is used, so incompatible with version 1
  • Noodle does not ship RxJava transitively, so you have to provide it as a dependency
  • When doing get and delete operations, if item is not found, Noodle is returning null. But if using rx wrapper, due to that it does not allow null emissions, you will get NullPointerException in the onError callback.

Configure

Noodle noodle = Noodle.with(context)
  .converter(converter)
  .filePath(path)
  .encryption(encryption)
  .build();

Every component is pluggable, but Noodle provides defaults:

  • converter - Gson for converting objects to JSON and then to byte arrays
  • encryption - NoEncryption is by default, so nothing is encrypted, but you can easily implement one (it only has 2 methods)

Features:

  • Key-value storage
  • Simple collection storage
  • Simple annotation processing for entities ids
  • Rx Support
  • Encryption

License

MIT license, see more here.

Resources

Library Project with utility classes that can make you more productive.

A rubber indicator for ViewPager.

Process Phoenix facilitates restarting your application process.

Prettier display of Android Lint issues.

A collection of web development logos in SVG.

Android/Java download manager library help you to download files in parallel mechanism in some chunks.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes