All Projects → deviant-studio → Gendalf

deviant-studio / Gendalf

Licence: other
Android annotations processor for Shared Preferences

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to Gendalf

S Mvp
🔥🔥优化版MVP,使用注解泛型简化代码编写,使用模块化协议方便维护,APT过程使用注解解析器利用JavaPoet🌝完成重复模块的编写,利用ASpect+GradlePlugin 完成横向AOP编程+Javassist动态字节码注入+Tinker实现热修复+Retrofit实现优雅网络操作+RxJava轻松玩转数据处理
Stars: ✭ 1,095 (+2781.58%)
Mutual labels:  apt
Nexus Repository Apt
A Nexus Repository 3 plugin that allows usage of apt repositories
Stars: ✭ 109 (+186.84%)
Mutual labels:  apt
Fzf Scripts
a collection of scripts that rely on https://github.com/junegunn/fzf
Stars: ✭ 158 (+315.79%)
Mutual labels:  apt
Data
APTnotes data
Stars: ✭ 1,126 (+2863.16%)
Mutual labels:  apt
Apt Offline
Offline APT Package Manager
Stars: ✭ 102 (+168.42%)
Mutual labels:  apt
Pacaptr
Pacman-like syntax wrapper for many package managers.
Stars: ✭ 138 (+263.16%)
Mutual labels:  apt
Molior
Molior - Debian Build System
Stars: ✭ 53 (+39.47%)
Mutual labels:  apt
Apt
Development repository for the apt cookbook
Stars: ✭ 201 (+428.95%)
Mutual labels:  apt
Vulrec
Vulnerability Recurrence:漏洞复现记录
Stars: ✭ 109 (+186.84%)
Mutual labels:  apt
Elegantbus
🔥🔥Android 平台,基于LivaData的EventBus,无侵入,更优雅,支持跨进程,跨应用粘性事件,自定义事件等功能。
Stars: ✭ 156 (+310.53%)
Mutual labels:  apt
Givingstorm
Infection vector that bypasses AV, IDS, and IPS. (For now...)
Stars: ✭ 72 (+89.47%)
Mutual labels:  apt
Aptutil
Go utilities for Debian APT repositories
Stars: ✭ 95 (+150%)
Mutual labels:  apt
Xmodulable
组件化/模块化
Stars: ✭ 140 (+268.42%)
Mutual labels:  apt
Module Service Manager
Android模块化/组件化通信框架
Stars: ✭ 58 (+52.63%)
Mutual labels:  apt
Aptly
aptly - Debian repository management tool
Stars: ✭ 2,065 (+5334.21%)
Mutual labels:  apt
Python Apt
This is a Python library interface to libapt, which allows you to query and manipulat APT package repository information using the Python programming language.
Stars: ✭ 54 (+42.11%)
Mutual labels:  apt
Termux Apt Repo
Script to create Termux apt repositories.
Stars: ✭ 131 (+244.74%)
Mutual labels:  apt
Mason
Cross platform package manager for C/C++ apps
Stars: ✭ 230 (+505.26%)
Mutual labels:  apt
Apt cybercriminal campagin collections
APT & CyberCriminal Campaign Collection
Stars: ✭ 2,572 (+6668.42%)
Mutual labels:  apt
Apt Smart
apt-smart: Smart, automated, robust apt-get mirror selection for Debian, Ubuntu and Linux Mint
Stars: ✭ 153 (+302.63%)
Mutual labels:  apt

Gendalf

Another one library with weird name

This lib produces some sugar and type safety for Android Shared Preferences:

// before
final String ageKey = "age";
final String userNameKey = "userName";
final String adminKey = "admin";
SharedPreferences prefs = getSharedPreferences("custom_prefs", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();
editor.putInt(ageKey, 12);
editor.putString(userNameKey, "Luke");
editor.putBoolean(adminKey,true);
editor.apply();

// after
Gendalf.with(this)
       .setAge(12)
       .setUserName("Luke")
       .setAdmin(true);

Basic usage

Add gradle dependency:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
    }
}

apply plugin: 'com.neenbedankt.android-apt'

dependencies {

    compile 'ds.gendalf:gendalf:1.3.0'
    apt 'ds.gendalf:compiler:1.3.0'

}

Generate prefs model:

@PrefsConfig("Gendalf")
public interface PrefsConfigurator {
	String city = "Kharkiv";
	String userName = null;
	int age = 18;
	int KEY_VERSION = 0;
	boolean admin = true;
	float length = 20.5f;
	long time = 0;
	Set<String> friends = null;
}

Run 'make' and then you can use generated helper like

Gendalf.with(this)
       .setUserName("Luke");

Custom Type prefs

Add annotation @CustomPref and provide converter class:

@PrefsConfig("AppPrefs")
interface AppPrefsConfigurator {
	...
    @CustomPref(GuitarToStringConverter.class) Guitar guitar = null;
}

Implement converter:

public class GuitarToStringConverter implements Converter<Guitar, String> {
    @Override
    public String serialize(Guitar g) {
        return String.format("%s~%s~%s", g.type, g.price, g.color);
    }

    @Override
    public Guitar deserialize(String prefValue) {
        String[] splits = prefValue.split("~");
        return new Guitar(splits[0], Float.valueOf(splits[1]), Integer.valueOf(splits[2]));
    }
}

Actually you can use any serializer. For example GSON.

Now you can use prefs like:

 AppPrefs.with(this)
         .setGuitar(new Guitar("electric", 99.95f, Color.RED))

License

The MIT License (MIT)

Copyright © 2016 Deviant Studio

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].