package com.cvte.vman.impl;

import com.cvte.vman.VmanMiddleWare;
import com.cvte.vman.XmlCommunicate;
import com.cvte.vman.instance.InvokeCmd;
import com.cvte.vman.utils.CLog;

/* JADX INFO: loaded from: classes.dex */
public class XmlCommunicateManager extends XmlCommunicate {
    public static final String TAG = "Cvte@XmlCommunicateManager";
    private static XmlCommunicateManager mXmlCommunicateManager;

    private XmlCommunicateManager() {
    }

    public static synchronized XmlCommunicateManager getInstance() {
        try {
            if (mXmlCommunicateManager == null) {
                synchronized (XmlCommunicateManager.class) {
                    try {
                        if (mXmlCommunicateManager == null) {
                            mXmlCommunicateManager = new XmlCommunicateManager();
                        }
                    } finally {
                    }
                }
            }
        } catch (Throwable th) {
            throw th;
        }
        return mXmlCommunicateManager;
    }

    @Override // com.cvte.vman.XmlCommunicate
    public int GetHomeKeyDebounceCnt() {
        int iExcuteCommandSet_int = VmanMiddleWare.getInstance().excuteCommandSet_int(InvokeCmd.CMD_XML_COMMUNICATE_HOME_KEY_DEBOUNCE_GET_CNT);
        CLog.i("zkbdebug GetHomeKeyDebounceCnt sucess");
        return iExcuteCommandSet_int;
    }

    @Override // com.cvte.vman.XmlCommunicate
    public int SetHomeKeyDebounceCnt(int i2) {
        int iExcuteCommandSet_int = VmanMiddleWare.getInstance().excuteCommandSet_int(5377, i2);
        CLog.i("zkbdebug SetHomeKeyDebounceCnt sucess");
        return iExcuteCommandSet_int;
    }
}
