All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.reandroid.dex.value.CharValue Maven / Gradle / Ivy

The newest version!
/*
 *  Copyright (C) 2022 github.com/REAndroid
 *
 *  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 com.reandroid.dex.value;

import com.reandroid.dex.common.DexUtils;
import com.reandroid.dex.key.TypeKey;
import com.reandroid.dex.smali.SmaliWriter;
import com.reandroid.dex.smali.model.SmaliValue;
import com.reandroid.dex.smali.model.SmaliValueChar;
import com.reandroid.utils.HexUtil;

import java.io.IOException;

public class CharValue extends PrimitiveValueBlock {

    public CharValue(){
        super(DexValueType.CHAR);
    }

    @Override
    public Number getData() {
        int i = (int) getSignedValue();
        if((i & 0xff) == i){
            return (byte) i;
        }
        if((i & 0xffff) == i){
            return (short) i;
        }
        return i;
    }
    @Override
    public void setData(Number number) {
        if(number == null){
            throw new NullPointerException();
        }
        if(number instanceof Integer){
            Integer v = (Integer) number;
            set((char) v.intValue());
        }else if(number instanceof Short){
            Short v = (Short) number;
            int i = v & 0xffff;
            set((char) i);
        }else if(number instanceof Byte){
            Byte v = (Byte) number;
            int i = v & 0xff;
            set((char) i);
        }
        throw new NumberFormatException("Invalid '"
                + number.getClass().getSimpleName()
                + "' value for char " + number);
    }
    public char get(){
        return (char) (getUnsigned() & 0xffff);
    }
    public void set(char ch){
        setUnsignedValue((0xffff & ch));
    }
    @Override
    public DexValueType getValueType() {
        return DexValueType.CHAR;
    }
    @Override
    public String getHex() {
        return HexUtil.toSignedHex(get()) + "C";
    }

    @Override
    public String getAsString() {
        return DexUtils.quoteChar(get());
    }
    @Override
    public TypeKey getDataTypeKey() {
        return TypeKey.TYPE_C;
    }

    @Override
    public void fromSmali(SmaliValue smaliValue) {
        SmaliValueChar smaliValueChar = (SmaliValueChar) smaliValue;
        set(smaliValueChar.getValue());
    }

    @Override
    public void append(SmaliWriter writer) throws IOException {
        DexUtils.appendSingleQuotedChar(writer, get());
    }
    @Override
    public String toString() {
        return getAsString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy