net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSaxLoader.CFAsteriskSaxLoaderISOLanguageHandler.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSaxLoader.CFAsteriskSaxLoaderISOLanguageHandler.java

Source

// Description: Java 8 XML SAX Element Handler for ISOLanguage

/*
 *   Code Factory Asterisk 11 Configuration Model
 *
 *   Copyright (c) 2014-2015 Mark Sobkow
 *   
 *   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 net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSaxLoader;

import java.math.*;
import java.sql.*;
import java.text.*;
import java.util.*;
import org.apache.commons.codec.binary.Base64;
import org.xml.sax.*;
import net.sourceforge.msscodefactory.cflib.v2_3.CFLib.*;
import net.sourceforge.msscodefactory.cfsecurity.v2_4.CFSecurity.*;
import net.sourceforge.msscodefactory.cfinternet.v2_4.CFInternet.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsterisk.*;
import net.sourceforge.msscodefactory.cfsecurity.v2_4.CFSecurityObj.*;
import net.sourceforge.msscodefactory.cfinternet.v2_4.CFInternetObj.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskObj.*;

/*
 *   CFAsteriskSaxLoaderISOLanguageParse XML SAX Element Handler implementation
 *   for ISOLanguage.
 */
public class CFAsteriskSaxLoaderISOLanguageHandler extends CFLibXmlCoreElementHandler {
    public CFAsteriskSaxLoaderISOLanguageHandler(CFAsteriskSaxLoader saxLoader) {
        super(saxLoader);
    }

    public void startElement(String uri, String localName, String qName, Attributes attrs) throws SAXException {
        try {
            // Common XML Attributes
            String attrId = null;
            // Primary Key Attributes for Constant Enum support
            // ISOLanguage Attributes
            String attrISOCode = null;
            String attrBaseLanguageCode = null;
            String attrISOCountryId = null;
            // ISOLanguage References
            // Attribute Extraction
            String attrLocalName;
            int numAttrs;
            int idxAttr;
            final String S_ProcName = "startElement";
            final String S_LocalName = "LocalName";

            assert qName.equals("ISOLanguage");

            CFAsteriskSaxLoader saxLoader = (CFAsteriskSaxLoader) getParser();
            if (saxLoader == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "getParser()");
            }

            ICFAsteriskSchemaObj schemaObj = saxLoader.getSchemaObj();
            if (schemaObj == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "getParser().getSchemaObj()");
            }

            // Instantiate an edit buffer for the parsed information
            ICFAsteriskISOLanguageEditObj editBuff = (ICFAsteriskISOLanguageEditObj) schemaObj
                    .getISOLanguageTableObj().newInstance().beginEdit();

            // Extract Attributes
            numAttrs = attrs.getLength();
            for (idxAttr = 0; idxAttr < numAttrs; idxAttr++) {
                attrLocalName = attrs.getLocalName(idxAttr);
                if (attrLocalName.equals("Id")) {
                    if (attrId != null) {
                        throw CFLib.getDefaultExceptionFactory().newUniqueIndexViolationException(getClass(),
                                S_ProcName, S_LocalName, attrLocalName);
                    }
                    attrId = attrs.getValue(idxAttr);
                } else if (attrLocalName.equals("ISOCode")) {
                    if (attrISOCode != null) {
                        throw CFLib.getDefaultExceptionFactory().newUniqueIndexViolationException(getClass(),
                                S_ProcName, S_LocalName, attrLocalName);
                    }
                    attrISOCode = attrs.getValue(idxAttr);
                } else if (attrLocalName.equals("BaseLanguageCode")) {
                    if (attrBaseLanguageCode != null) {
                        throw CFLib.getDefaultExceptionFactory().newUniqueIndexViolationException(getClass(),
                                S_ProcName, S_LocalName, attrLocalName);
                    }
                    attrBaseLanguageCode = attrs.getValue(idxAttr);
                } else if (attrLocalName.equals("ISOCountryId")) {
                    if (attrISOCountryId != null) {
                        throw CFLib.getDefaultExceptionFactory().newUniqueIndexViolationException(getClass(),
                                S_ProcName, S_LocalName, attrLocalName);
                    }
                    attrISOCountryId = attrs.getValue(idxAttr);
                } else if (attrLocalName.equals("schemaLocation")) {
                    // ignored
                } else {
                    throw CFLib.getDefaultExceptionFactory().newUnrecognizedAttributeException(getClass(),
                            S_ProcName, getParser().getLocationInfo(), attrLocalName);
                }
            }

            // Ensure that required attributes have values
            if ((attrId == null) || (attrId.length() <= 0)) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "Id");
            }
            if (attrISOCode == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "ISOCode");
            }
            if (attrBaseLanguageCode == null) {
                throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                        "BaseLanguageCode");
            }

            // Save named attributes to context
            CFLibXmlCoreContext curContext = getParser().getCurContext();
            curContext.putNamedValue("Id", attrId);
            curContext.putNamedValue("ISOCode", attrISOCode);
            curContext.putNamedValue("BaseLanguageCode", attrBaseLanguageCode);
            curContext.putNamedValue("ISOCountryId", attrISOCountryId);

            // Convert string attributes to native Java types
            // and apply the converted attributes to the editBuff.

            short natId;
            natId = Short.parseShort(attrId);
            editBuff.getPKey().setRequiredId(natId);
            editBuff.getISOLanguageBuff().setRequiredId(natId);

            String natISOCode = attrISOCode;
            editBuff.setRequiredISOCode(natISOCode);

            String natBaseLanguageCode = attrBaseLanguageCode;
            editBuff.setRequiredBaseLanguageCode(natBaseLanguageCode);

            Short natISOCountryId;
            if ((attrISOCountryId == null) || (attrISOCountryId.length() <= 0)) {
                natISOCountryId = null;
            } else {
                natISOCountryId = new Short(Short.parseShort(attrISOCountryId));
            }
            editBuff.setOptionalISOCountryId(natISOCountryId);

            // Get the scope/container object

            CFLibXmlCoreContext parentContext = curContext.getPrevContext();
            Object scopeObj;
            if (parentContext != null) {
                scopeObj = parentContext.getNamedValue("Object");
            } else {
                scopeObj = null;
            }

            CFAsteriskSaxLoader.LoaderBehaviourEnum loaderBehaviour = saxLoader.getISOLanguageLoaderBehaviour();
            ICFAsteriskISOLanguageEditObj editISOLanguage = null;
            ICFAsteriskISOLanguageObj origISOLanguage = (ICFAsteriskISOLanguageObj) schemaObj
                    .getISOLanguageTableObj().readISOLanguageByCodeIdx(editBuff.getRequiredISOCode());
            editBuff.getPKey().setRequiredId(natId);
            editBuff.getISOLanguageBuff().setRequiredId(natId);
            if (origISOLanguage == null) {
                editISOLanguage = editBuff;
            } else {
                switch (loaderBehaviour) {
                case Insert:
                    break;
                case Update:
                    editISOLanguage = (ICFAsteriskISOLanguageEditObj) origISOLanguage.beginEdit();
                    editISOLanguage.setRequiredISOCode(editBuff.getRequiredISOCode());
                    editISOLanguage.setRequiredBaseLanguageCode(editBuff.getRequiredBaseLanguageCode());
                    editISOLanguage.setOptionalISOCountryId(editBuff.getOptionalISOCountryId());
                    break;
                case Replace:
                    editISOLanguage = (ICFAsteriskISOLanguageEditObj) origISOLanguage.beginEdit();
                    editISOLanguage.delete();
                    editISOLanguage.endEdit();
                    origISOLanguage = null;
                    editISOLanguage = editBuff;
                    break;
                }
            }

            if (editISOLanguage != null) {
                if (origISOLanguage != null) {
                    editISOLanguage.update();
                } else {
                    origISOLanguage = (ICFAsteriskISOLanguageObj) editISOLanguage.create();
                }
                editISOLanguage.endEdit();
            }

            curContext.putNamedValue("Object", origISOLanguage);
        } catch (RuntimeException e) {
            throw new RuntimeException("Near " + getParser().getLocationInfo() + ": Caught and rethrew "
                    + e.getClass().getName() + " - " + e.getMessage(), e);
        } catch (Error e) {
            throw new Error("Near " + getParser().getLocationInfo() + ": Caught and rethrew "
                    + e.getClass().getName() + " - " + e.getMessage(), e);
        }
    }

    public void endElement(String uri, String localName, String qName) throws SAXException {
    }
}