Apktool/brut.apktool/apktool-lib/src/main/java/brut/androlib/res/data/value/ResValueFactory.java

105 lines
3.9 KiB
Java
Raw Normal View History

2012-09-20 03:27:35 +02:00
/**
2014-10-24 01:14:48 +02:00
* Copyright 2014 Ryszard Wiśniewski <brut.alll@gmail.com>
2012-09-20 03:27:35 +02:00
*
* 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.
*/
package brut.androlib.res.data.value;
import android.util.TypedValue;
import brut.androlib.AndrolibException;
import brut.androlib.res.data.ResPackage;
import brut.util.Duo;
/**
* @author Ryszard Wiśniewski <brut.alll@gmail.com>
*/
public class ResValueFactory {
2014-02-10 02:01:57 +01:00
private final ResPackage mPackage;
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
public ResValueFactory(ResPackage pakage_) {
this.mPackage = pakage_;
}
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
public ResScalarValue factory(int type, int value, String rawValue)
throws AndrolibException {
switch (type) {
2015-03-12 23:43:17 +01:00
case TypedValue.TYPE_NULL:
return new ResReferenceValue(mPackage, 0, null);
2014-02-10 02:01:57 +01:00
case TypedValue.TYPE_REFERENCE:
return newReference(value, rawValue);
case TypedValue.TYPE_ATTRIBUTE:
return newReference(value, rawValue, true);
case TypedValue.TYPE_STRING:
return new ResStringValue(rawValue, value);
2014-02-10 02:01:57 +01:00
case TypedValue.TYPE_FLOAT:
return new ResFloatValue(Float.intBitsToFloat(value), value, rawValue);
2014-02-10 02:01:57 +01:00
case TypedValue.TYPE_DIMENSION:
return new ResDimenValue(value, rawValue);
case TypedValue.TYPE_FRACTION:
return new ResFractionValue(value, rawValue);
case TypedValue.TYPE_INT_BOOLEAN:
return new ResBoolValue(value != 0, value, rawValue);
case TypedValue.TYPE_DYNAMIC_REFERENCE:
return newReference(value, rawValue);
2014-02-10 02:01:57 +01:00
}
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
if (type >= TypedValue.TYPE_FIRST_COLOR_INT
&& type <= TypedValue.TYPE_LAST_COLOR_INT) {
return new ResColorValue(value, rawValue);
}
if (type >= TypedValue.TYPE_FIRST_INT
&& type <= TypedValue.TYPE_LAST_INT) {
return new ResIntValue(value, rawValue, type);
}
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
throw new AndrolibException("Invalid value type: " + type);
}
2012-09-20 03:27:35 +02:00
public ResIntBasedValue factory(String value, int rawValue) {
if (value.startsWith("res/")) {
return new ResFileValue(value, rawValue);
2014-02-10 02:01:57 +01:00
}
return new ResStringValue(value, rawValue);
2014-02-10 02:01:57 +01:00
}
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
public ResBagValue bagFactory(int parent,
Duo<Integer, ResScalarValue>[] items) throws AndrolibException {
ResReferenceValue parentVal = newReference(parent, null);
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
if (items.length == 0) {
return new ResBagValue(parentVal);
}
int key = items[0].m1;
if (key == ResAttr.BAG_KEY_ATTR_TYPE) {
return ResAttr.factory(parentVal, items, this, mPackage);
}
if (key == ResArrayValue.BAG_KEY_ARRAY_START) {
return new ResArrayValue(parentVal, items);
}
if (key >= ResPluralsValue.BAG_KEY_PLURALS_START
&& key <= ResPluralsValue.BAG_KEY_PLURALS_END) {
return new ResPluralsValue(parentVal, items);
}
return new ResStyleValue(parentVal, items, this);
}
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
public ResReferenceValue newReference(int resID, String rawValue) {
return newReference(resID, rawValue, false);
}
2012-09-20 03:27:35 +02:00
2014-02-10 02:01:57 +01:00
public ResReferenceValue newReference(int resID, String rawValue,
boolean theme) {
return new ResReferenceValue(mPackage, resID, rawValue, theme);
}
2012-09-20 03:27:35 +02:00
}