Search in sources :

Example 16 with XPathEvalException

use of com.ximpleware.XPathEvalException in project translationstudio8 by heartsome.

the class XLFHandler method generateTMXToUpdateTM.

/**
	 * 更新记忆库
	 * @param file
	 *            xliff 文件
	 * @param srcLang
	 *            源语言,当添加所有语言时,值为 null
	 * @param tgtLang
	 *            目标语言,当添加所有语言时,值为 null
	 * @param isAddApprove
	 *            是否添加已批准文本段到记忆库
	 * @param isAddSignedOff
	 *            是否添加已签发文本段到记忆库
	 * @param isAddTranslate
	 *            是否添加已翻译文本段到记忆库
	 * @param isAddDraft
	 *            是否添加草稿状态文本段到记忆库
	 * @param isTagAddTM
	 *            是否将标记为不添加到记忆库的文本段添加到记忆库
	 * @param isAddNoState
	 *            是否添加无状态文本段到记忆库(未实现)
	 * @return 每个数组中第一个元素表示源语言,第二个元素为生成的 TMX 字符串
	 */
public String[] generateTMXToUpdateTM(IFile file, boolean isAddApprove, boolean isAddSignedOff, boolean isAddTranslate, boolean isAddDraft, boolean isAddLocked, int contextSize, String systemUser) {
    if (file == null) {
        return null;
    }
    String filePath = ResourceUtils.iFileToOSPath(file);
    VTDNav vn = vnMap.get(filePath);
    // 当文件未打开时,要先解析 xliff 文件
    if (vn == null) {
        VTDGen vg = new VTDGen();
        String path = ResourceUtils.iFileToOSPath(file);
        if (vg.parseFile(path, true)) {
            vn = vg.getNav();
        }
    }
    StringBuffer sbTMX = new StringBuffer();
    String srcLang = null;
    // if (srcLang == null || tgtLang == null) {
    AutoPilot ap = new AutoPilot(vn);
    ap.declareXPathNameSpace(hsNSPrefix, hsR7NSUrl);
    String srcLanguage;
    String tgtLanguage;
    String original;
    String strTMX;
    try {
        VTDUtils vu = new VTDUtils(vn);
        vn.push();
        ap.selectXPath("/xliff//file");
        AutoPilot ap2 = new AutoPilot(vn);
        ap2.declareXPathNameSpace(hsNSPrefix, hsR7NSUrl);
        // sbTMX 是否添加了头部信息
        boolean isContainHeader = false;
        while (ap.evalXPath() != -1) {
            vn.push();
            srcLanguage = vu.getCurrentElementAttribut("source-language", null);
            srcLang = srcLanguage;
            tgtLanguage = vu.getCurrentElementAttribut("target-language", null);
            original = vu.getCurrentElementAttribut("original", null);
            if (srcLanguage == null) {
                continue;
            }
            if (tgtLanguage == null) {
                continue;
            }
            vn.pop();
            strTMX = generateTMXString(systemUser, filePath, srcLanguage, tgtLanguage, original, vn, isAddApprove, isAddSignedOff, isAddTranslate, isAddDraft, isAddLocked, contextSize, file.getProject());
            if (strTMX != null) {
                if (!isContainHeader) {
                    isContainHeader = true;
                    sbTMX.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
                    sbTMX.append("<tmx version=\"1.4b\">");
                    sbTMX.append("<header creationtool=\"" + Constants.TMX_CREATIONTOOL + "\" creationtoolversion=\"" + Constants.TMX_CREATIONTOOLVERSION + "\" srclang=\"" + srcLanguage + "\" adminlang=\"en\" datatype=\"xml\" o-tmf=\"XLIFF\" segtype=\"paragraph\">");
                    sbTMX.append("</header>");
                    sbTMX.append("<body>");
                }
                sbTMX.append(strTMX);
            }
        }
        if (sbTMX.length() > 0) {
            sbTMX.append("</body>");
            sbTMX.append("</tmx>");
        } else {
            return null;
        }
    } catch (XPathParseException e) {
        LOGGER.error(MessageFormat.format(Messages.getString("file.XLFHandler.logger17"), filePath), e);
    } catch (XPathEvalException e) {
        LOGGER.error(MessageFormat.format(Messages.getString("file.XLFHandler.logger17"), filePath), e);
    } catch (NavException e) {
        LOGGER.error(MessageFormat.format(Messages.getString("file.XLFHandler.logger17"), filePath), e);
    } finally {
        vn.pop();
    }
    return new String[] { srcLang, sbTMX.toString() };
}
Also used : XPathParseException(com.ximpleware.XPathParseException) VTDUtils(net.heartsome.xml.vtdimpl.VTDUtils) AutoPilot(com.ximpleware.AutoPilot) XPathEvalException(com.ximpleware.XPathEvalException) NavException(com.ximpleware.NavException) VTDGen(com.ximpleware.VTDGen) VTDNav(com.ximpleware.VTDNav)

Example 17 with XPathEvalException

use of com.ximpleware.XPathEvalException in project translationstudio8 by heartsome.

the class XLFHandler method refreshRowIdsByFilterXPath.

/**
	 * 更新可编辑文本段唯一标识的集合(rowIds)
	 * @param filterXPath
	 *            ;
	 */
private void refreshRowIdsByFilterXPath(String filterXPath) {
    // 清楚缓存的翻译单元
    resetCache();
    // 清除之前的可编辑文本段
    rowIds.clear();
    AutoPilot ap = new AutoPilot();
    for (Entry<String, VTDNav> entry : vnMap.entrySet()) {
        String fileName = entry.getKey();
        VTDNav vn = entry.getValue().duplicateNav();
        ap.bind(vn);
        ap.declareXPathNameSpace("xml", VTDUtils.XML_NAMESPACE_URL);
        ap.declareXPathNameSpace(hsNSPrefix, hsR7NSUrl);
        try {
            ap.selectXPath(filterXPath);
            while (ap.evalXPath() != -1) {
                String rowId = RowIdUtil.getRowId(vn, fileName);
                if (rowId != null) {
                    rowIds.add(rowId);
                }
            }
        } catch (XPathParseException e) {
            LOGGER.error("", e);
            e.printStackTrace();
        } catch (XPathEvalException e) {
            LOGGER.error("", e);
            e.printStackTrace();
        } catch (NavException e) {
            LOGGER.error("", e);
            e.printStackTrace();
        }
    }
}
Also used : XPathParseException(com.ximpleware.XPathParseException) AutoPilot(com.ximpleware.AutoPilot) XPathEvalException(com.ximpleware.XPathEvalException) NavException(com.ximpleware.NavException) VTDNav(com.ximpleware.VTDNav)

Example 18 with XPathEvalException

use of com.ximpleware.XPathEvalException in project translationstudio8 by heartsome.

the class XLFHandler method getTMXFileContent.

/**
	 * 根据同一个 XLIFF 文件中的 rowId 生成 TMX 文件
	 * @param list
	 *            rowId
	 * @param creationTool
	 *            创建工具
	 * @param creationToolVersion
	 *            创建工具版本
	 * @param srcName
	 *            源语言
	 * @param monitor
	 *            进度条
	 * @return TMX 文件
	 */
public StringBuffer getTMXFileContent(List<String> list, String creationTool, String creationToolVersion, String srcName, IProgressMonitor monitor) {
    if (list == null || list.size() == 0) {
        return new StringBuffer();
    }
    if (monitor == null) {
        monitor = new NullProgressMonitor();
    }
    monitor.beginTask(Messages.getString("file.XLFHandler.task3"), list.size());
    if (monitor.isCanceled())
        return new StringBuffer();
    StringBuffer re = new StringBuffer();
    re.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    re.append("<tmx version=\"1.4b\">");
    re.append("<header creationtool=\"" + creationTool + "\" creationtoolversion=\"" + creationToolVersion + "\" srclang=\"" + srcName + "\" adminlang=\"en\" datatype=\"xml\" o-tmf=\"XLIFF\" segtype=\"paragraph\">");
    re.append("</header>");
    re.append("<body>");
    VTDNav vn = getVTDNavByRowId(list.get(0));
    AutoPilot ap = new AutoPilot(vn);
    VTDUtils vu = null;
    try {
        vu = new VTDUtils(vn);
    } catch (NavException e) {
        LOGGER.error("", e);
        e.printStackTrace();
        monitor.done();
    }
    String defaultSrcLang = "";
    String defaultTgtLang = "";
    String fileXPath = RowIdUtil.getFileXpathByRowId(list.get(0));
    if (vu.pilot(ap, fileXPath) != -1) {
        defaultSrcLang = vu.getValue(ap, "./@source-language");
        defaultTgtLang = vu.getValue(ap, "./@target-language");
    }
    if (defaultTgtLang == null) {
        defaultTgtLang = "";
    }
    for (String rowId : list) {
        if (monitor.isCanceled())
            return new StringBuffer();
        String tuXPath = RowIdUtil.parseRowIdToXPath(rowId);
        try {
            ap.selectXPath(tuXPath);
            ap.evalXPath();
        } catch (XPathParseException e) {
            LOGGER.error("", e);
            e.printStackTrace();
            monitor.done();
        } catch (XPathEvalException e) {
            LOGGER.error("", e);
            e.printStackTrace();
            monitor.done();
        } catch (NavException e) {
            LOGGER.error("", e);
            e.printStackTrace();
            monitor.done();
        }
        re.append("<tu ");
        // 添加tu的属性
        boolean hasTuId = false;
        String id = null;
        String attrNameXp = "./@*[name]";
        String attrValueXp = "./@";
        List<String> tuPropNames = vu.getValues(ap, attrNameXp);
        for (String name : tuPropNames) {
            String value = vu.getValue(ap, attrValueXp + name);
            re.append(name + "=\"" + value + "\" ");
            if (name.equals("id")) {
                id = value;
            }
            if (!hasTuId) {
                if (name.equals("tuid")) {
                    hasTuId = true;
                }
            }
        }
        if (!hasTuId) {
            re.append("tuid=\"" + genTuId(rowId, id) + "\"");
        }
        re.append(">");
        String typeXp = "./prop-group/prop/@prop-type";
        List<String> typeValues = vu.getValues(ap, typeXp);
        if (typeValues != null) {
            for (String typeValue : typeValues) {
                re.append("<prop type=\"" + typeValue + "\">");
                re.append(vu.getValue(ap, "./prop-group/prop[@prop-type='" + typeValue + "']/text()"));
                re.append("</prop>");
            }
        }
        // HS的自定义属性组
        ap.declareXPathNameSpace(hsNSPrefix, hsR7NSUrl);
        String hsPropXp = "./hs:prop-group/prop/@prop-type";
        typeValues = vu.getValues(ap, hsPropXp);
        if (typeValues != null) {
            for (String typeValue : typeValues) {
                re.append("<prop type=\"" + typeValue + "\">");
                re.append(vu.getValue(ap, "./hs:prop-group/prop[@prop-type='" + typeValue + "']/text()"));
                re.append("</prop>");
            }
        }
        // 添加tuv(source)
        re.append("<tuv ");
        // 添加tuv(source)属性
        attrNameXp = "./source/@*[name]";
        attrValueXp = "./source/@";
        List<String> sourcePropNames = vu.getValues(ap, attrNameXp);
        if (sourcePropNames != null) {
            for (String name : sourcePropNames) {
                String value = vu.getValue(ap, attrValueXp + name);
                re.append(name + "=\"" + value + "\" ");
            }
        }
        /*
			 * source节点可能没有xml:lang属性,如果没有,则要去file节点去取source-language(Required)属性的值
			 */
        if (sourcePropNames == null || !sourcePropNames.contains("xml:lang")) {
            re.append("xml:lang=\"" + defaultSrcLang + "\"");
        }
        re.append(">");
        // 添加上下文prop
        re.append("<prop type=\"x-preContext\">");
        re.append(getContext(vu, ap, contextNum, true));
        re.append("</prop>");
        re.append("<prop type=\"x-nextContext\">");
        re.append(getContext(vu, ap, contextNum, false));
        re.append("</prop>");
        String sourceTextXp = "./source/text()";
        re.append("<seg>").append(vu.getValue(ap, sourceTextXp)).append("</seg>");
        re.append("</tuv>");
        // 添加tuv(target)
        re.append("<tuv ");
        // 添加tuv(target)属性
        attrNameXp = "./target/@*[name]";
        attrValueXp = "./target/@";
        List<String> targetPropNames = vu.getValues(ap, attrNameXp);
        if (targetPropNames != null) {
            for (String name : targetPropNames) {
                String value = vu.getValue(ap, attrValueXp + name);
                re.append(name + "=\"" + value + "\" ");
            }
        }
        /*
			 * target节点可能没有xml:lang属性,如果没有,则要去file节点去取target-language(Optional)属性的值
			 */
        if (targetPropNames == null || !targetPropNames.contains("xml:lang")) {
            re.append("xml:lang=\"" + defaultTgtLang + "\"");
        }
        re.append(">");
        String targetTextXp = "./target/text()";
        re.append("<seg>").append(vu.getValue(ap, targetTextXp)).append("</seg>");
        re.append("</tuv>");
        re.append("</tu>");
        monitor.worked(1);
    }
    re.append("</body>");
    re.append("</tmx>");
    monitor.done();
    return re;
}
Also used : XPathParseException(com.ximpleware.XPathParseException) NullProgressMonitor(org.eclipse.core.runtime.NullProgressMonitor) VTDUtils(net.heartsome.xml.vtdimpl.VTDUtils) AutoPilot(com.ximpleware.AutoPilot) NavException(com.ximpleware.NavException) XPathEvalException(com.ximpleware.XPathEvalException) VTDNav(com.ximpleware.VTDNav)

Example 19 with XPathEvalException

use of com.ximpleware.XPathEvalException in project translationstudio8 by heartsome.

the class XLFHandler method getMatchOfSegments.

/**
	 * 获取翻译匹配率达到 <code>minMatchQuality</code> 的匹配
	 * @param minMatchQuality
	 *            最低匹配率
	 */
public Map<String, String> getMatchOfSegments(final int minMatchQuality) {
    final HashMap<String, String> map = new HashMap<String, String>();
    handleAllSegment(new PerFileHandler() {

        public void handle(String fileName, VTDUtils vu, AutoPilot ap, XMLModifier xm) throws ModifyException, XPathParseException, XPathEvalException, NavException, UnsupportedEncodingException {
            ap.selectXPath("/xliff/file/body//trans-unit[translate(alt-trans/@match-quality, '%', '')>=" + minMatchQuality + "]");
            AutoPilot tempAp = new AutoPilot(vu.getVTDNav());
            while (ap.evalXPath() != -1) {
                String rowId = RowIdUtil.getRowId(vu.getVTDNav(), fileName);
                if (isApproved(rowId) || isLocked(rowId)) {
                    // 已经批准或者锁定的,跳过。
                    continue;
                }
                String tuXPath = RowIdUtil.parseRowIdToXPath(rowId);
                if (vu.pilot(tempAp, tuXPath) != -1) {
                    String tgt = vu.getValue(tempAp, "./alt-trans[translate(@match-quality, '%', '')>=" + minMatchQuality + "]/target/text()");
                    if (tgt != null) {
                        // 当前 Target 的值
                        String currentTgt = vu.getValue(tempAp, "./target/text()");
                        if (!tgt.equals(currentTgt)) {
                            map.put(rowId, tgt);
                        }
                    }
                }
            }
            saveAndReparse(xm, fileName);
        }
    });
    return map;
}
Also used : XPathParseException(com.ximpleware.XPathParseException) XMLModifier(com.ximpleware.XMLModifier) HashMap(java.util.HashMap) LinkedHashMap(java.util.LinkedHashMap) VTDUtils(net.heartsome.xml.vtdimpl.VTDUtils) AutoPilot(com.ximpleware.AutoPilot) XPathEvalException(com.ximpleware.XPathEvalException) NavException(com.ximpleware.NavException) ModifyException(com.ximpleware.ModifyException) UnsupportedEncodingException(java.io.UnsupportedEncodingException)

Example 20 with XPathEvalException

use of com.ximpleware.XPathEvalException in project translationstudio8 by heartsome.

the class XLFHandler method getDocumentInfo.

/**
	 * 得到文档属性的信息
	 * @param fileName
	 *            文件名
	 * @return 多个文件的文档属性集合(一个 file 节点文档的属性为一个 HashMap);
	 */
public List<HashMap<String, String>> getDocumentInfo(String fileName) {
    ArrayList<HashMap<String, String>> fileList = new ArrayList<HashMap<String, String>>();
    VTDNav vn = vnMap.get(fileName);
    AutoPilot apFile = new AutoPilot(vn);
    try {
        apFile.selectXPath("/xliff/file");
        String[] fileAttrNames = { DocumentPropertiesKeys.ORIGINAL, DocumentPropertiesKeys.DATA_TYPE, DocumentPropertiesKeys.SOURCE_LANGUAGE, DocumentPropertiesKeys.TARGET_LANGUAGE };
        String[] propTypes = new String[] { DocumentPropertiesKeys.PROJECT_REF, DocumentPropertiesKeys.JOB_REF, DocumentPropertiesKeys.JOB_DATE, DocumentPropertiesKeys.JOB_OWNER, DocumentPropertiesKeys.CLIENT };
        VTDUtils vu = new VTDUtils(vn);
        while (apFile.evalXPath() != -1) {
            String value = "";
            HashMap<String, String> fileAttrs = new HashMap<String, String>();
            for (String attrName : fileAttrNames) {
                value = vu.getCurrentElementAttribut(attrName, "");
                fileAttrs.put(attrName, value);
            }
            AutoPilot ap = new AutoPilot(vn);
            vn.push();
            value = "";
            ap.selectXPath("./header/skl");
            if (ap.evalXPath() != -1) {
                ap.selectXPath("./external-file");
                if (ap.evalXPath() != -1) {
                    value = vu.getCurrentElementAttribut("href", "");
                } else {
                    ap.selectXPath("./internal-file");
                    if (ap.evalXPath() != -1) {
                        value = Constant.SKL_INTERNAL_FILE;
                    }
                }
            }
            // vn.push();
            // ap.selectXPath("./header/skl/external-file");
            // value = "";
            // if (ap.evalXPath() != -1) {
            // int attrIdx = vn.getAttrVal("href");
            // value = attrIdx != -1 ? vn.toString(attrIdx) : "";
            // }
            fileAttrs.put(DocumentPropertiesKeys.SKL, value);
            vn.pop();
            ap.declareXPathNameSpace(hsNSPrefix, hsR7NSUrl);
            vn.push();
            ap.selectXPath("./header/hs:prop-group[@name='encoding']/hs:prop[@prop-type='encoding']");
            value = "";
            if (ap.evalXPath() != -1) {
                value = vn.toString(vn.getText());
            }
            fileAttrs.put(DocumentPropertiesKeys.ENCODING, value);
            vn.pop();
            for (String attrName : propTypes) {
                vn.push();
                ap.selectXPath("./header/hs:prop-group[@name=\"project\"]/hs:prop[@prop-type=\"" + attrName + "\"]");
                value = "";
                if (ap.evalXPath() != -1) {
                    value = vn.toString(vn.getText());
                }
                if ("".equals(value) && DocumentPropertiesKeys.JOB_DATE.equals(attrName)) {
                    value = sdf.format(new Date());
                }
                fileAttrs.put(attrName, value);
                vn.pop();
            }
            fileList.add(fileAttrs);
        }
    } catch (XPathParseException e) {
        LOGGER.error("", e);
        e.printStackTrace();
    } catch (XPathEvalException e) {
        LOGGER.error("", e);
        e.printStackTrace();
    } catch (NavException e) {
        LOGGER.error("", e);
        e.printStackTrace();
    }
    return fileList;
}
Also used : HashMap(java.util.HashMap) LinkedHashMap(java.util.LinkedHashMap) ArrayList(java.util.ArrayList) XPathEvalException(com.ximpleware.XPathEvalException) NavException(com.ximpleware.NavException) Date(java.util.Date) XPathParseException(com.ximpleware.XPathParseException) VTDUtils(net.heartsome.xml.vtdimpl.VTDUtils) AutoPilot(com.ximpleware.AutoPilot) VTDNav(com.ximpleware.VTDNav)

Aggregations

NavException (com.ximpleware.NavException)65 XPathEvalException (com.ximpleware.XPathEvalException)65 XPathParseException (com.ximpleware.XPathParseException)65 AutoPilot (com.ximpleware.AutoPilot)59 VTDNav (com.ximpleware.VTDNav)44 VTDUtils (net.heartsome.xml.vtdimpl.VTDUtils)36 ModifyException (com.ximpleware.ModifyException)17 ArrayList (java.util.ArrayList)17 XMLModifier (com.ximpleware.XMLModifier)15 IOException (java.io.IOException)15 UnsupportedEncodingException (java.io.UnsupportedEncodingException)13 VTDGen (com.ximpleware.VTDGen)11 HashMap (java.util.HashMap)9 ParseException (com.ximpleware.ParseException)8 TranscodeException (com.ximpleware.TranscodeException)7 FileNotFoundException (java.io.FileNotFoundException)7 FileOutputStream (java.io.FileOutputStream)6 EOFException (com.ximpleware.EOFException)5 EncodingException (com.ximpleware.EncodingException)5 EntityException (com.ximpleware.EntityException)5