/* * Copyright (C) 2013 - 2014 Alexander "Evisceration" Martinz * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package org.namelessrom.devicecontrol.preferences; import android.content.Context; import android.content.res.Resources; import android.content.res.TypedArray; import android.util.AttributeSet; import org.namelessrom.devicecontrol.R; import org.namelessrom.devicecontrol.models.BootupConfig; import org.namelessrom.devicecontrol.modules.bootup.BootupItem; import org.namelessrom.devicecontrol.utils.Utils; import timber.log.Timber; /** * Automatically handles reading to files to automatically set the value, * writing to files on preference change, even with multiple files, * handling bootup restoration. */ public class AwesomeEditTextPreference extends CustomEditTextPreference { private String mCategory; private boolean mStartUp; private boolean mMultiFile; private String mPath; private String[] mPaths; public AwesomeEditTextPreference(final Context context) { this(context, null); } public AwesomeEditTextPreference(final Context context, final AttributeSet attrs) { super(context, attrs); init(context, attrs); } public AwesomeEditTextPreference(final Context context, final String path, final String[] paths, final String category, final boolean multiFile, final boolean startUp) { super(context); mPath = path; mPaths = paths; mCategory = category; mMultiFile = multiFile; mStartUp = startUp; } private void init(final Context context, final AttributeSet attrs) { final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AwesomePreference); int filePath = -1, filePathList = -1; if (a != null) { filePath = a.getResourceId(R.styleable.AwesomePreference_filePath, -1); filePathList = a.getResourceId(R.styleable.AwesomePreference_filePathList, -1); mCategory = a.getString(R.styleable.AwesomePreference_category); mStartUp = a.getBoolean(R.styleable.AwesomePreference_startup, true); mMultiFile = a.getBoolean(R.styleable.AwesomePreference_multifile, false); a.recycle(); } final Resources res = context.getResources(); if (filePath != -1) { mPath = Utils.checkPath(res.getString(filePath)); mPaths = null; } else if (filePathList != -1) { mPaths = res.getStringArray(filePathList); mPath = Utils.checkPaths(mPaths); if (mPath.isEmpty() || !mMultiFile) { mPaths = null; } } else { mPath = ""; mPaths = null; } if (mCategory == null || mCategory.isEmpty()) { Timber.w("Category is not set! Defaulting to \"default\""); mCategory = "default"; } } public void initValue() { if (isSupported()) { final String value = Utils.readOneLine(mPath); setDefaultValue(value); setValue(value); } } public void setValue(final String value) { setSummary(value); setText(value); } public String getPath() { return mPath; } public boolean isSupported() { return ((mPath != null && !mPath.isEmpty()) || (mPaths != null && mPaths.length != 0)); } public void writeValue(final String value) { if (isSupported()) { if (mPaths != null && mMultiFile) { final int length = mPaths.length; for (int i = 0; i < length; i++) { Utils.writeValue(mPaths[i], value); if (mStartUp) { BootupConfig.setBootup(new BootupItem( mCategory, getKey() + String.valueOf(i), mPaths[i], value, true)); } } } else { Utils.writeValue(mPath, value); if (mStartUp) { BootupConfig.setBootup( new BootupItem(mCategory, getKey(), mPath, value, true)); } } initValue(); } } }