`

Test

 
阅读更多
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.net.MalformedURLException;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.xml.namespace.QName;

import org.eclipse.persistence.internal.oxm.schema.model.SimpleType;
import org.eclipse.persistence.sdo.SDOHelper;
import org.eclipse.persistence.sdo.SDOType;
import org.eclipse.persistence.sdo.helper.SDOHelperContext;

import commonj.sdo.DataObject;
import commonj.sdo.Property;
import commonj.sdo.Type;
import commonj.sdo.helper.HelperContext;

public class test {
    public static void main(String[] args) throws FileNotFoundException, MalformedURLException {
        // File file = new File("Y:/workspace/EclipseLinkTest/xsd/allinone/CDAall.xsd");

        File file = new File("Y:/workspace/EclipseLinkTest/xsd/all/CDA.xsd");

        FileInputStream fileInputStream = new FileInputStream(file);
        List<SDOType> ls = SDOHelperContext.getHelperContext().getXSDHelper().define(fileInputStream, file.toURL().toString());
        System.out.println("***************************************************");

        for(SDOType type:ls){
            System.out.println(genSampleXml(SDOHelperContext.getHelperContext(),type));
            
        }
        System.out.println(ls.size());

        // SDOHelper.GETS

    }
    
    public static String genSampleXml(HelperContext scope, Type type) {
        return genSampleXml(scope, type, null);
    }
    
    public static final String RootType = "DocumentRoot"; //$NON-NLS-1$

    /**
     * 递归设置DataObject
     * 
     * @param parent
     * @param scope
     * @param pro
     */
    private static void createDo4Type(DataObject parent, HelperContext scope, Property pro, Map<Property, Integer> times) {
        Type type = pro.getType();
        boolean isMany = pro.isMany();
        if (type.isDataType()) {
            Object obj = getSimpleType(type);
            if (obj != null) {
                if (isMany) {
                    List list = new ArrayList();
                    list.add(obj);
                    parent.set(pro, list);
                } else {
                        parent.set(pro, obj);
                }
            }
            return;
        }
        if (!type.isAbstract()) {
            DataObject dataobj = scope.getDataFactory().create(type);
            List list = type.getProperties();
            for (Object obj : list) {
                Property property = (Property) obj;
                Integer time = times.get(property);
                if (time == null || time < 4) {
                    if (time == null)
                        time = 0;
                    time++;
                    times.put(property, time);
                    createDo4Type(dataobj, scope, property, times);
                }

            }
            if (pro.isMany()) {
                List proList = new ArrayList();
                proList.add(dataobj);
                parent.setList(pro, proList);
            } else {
                parent.set(pro, dataobj);
            }
        }
    }

    
    public static String getDefaultElementName(Type type) {
        String name = ((SDOType) type).getXmlDescriptor().getDefaultRootElement();
        if (name == null || name.trim().equals("")) {
            name = type.getName();
        }
        return name;
    }
    
    public static String genSampleXml(HelperContext scope, Type type, String elementName) {
        if (type.isDataType()) {
            return getSimpleType(type).toString();
        }
        if (RootType.equals(type.getName())) {
            return null;
        }
        try {

            if (!type.isAbstract()) {

                DataObject gp = scope.getDataFactory().create(type);
                for (Object obj : type.getProperties()) {
                    Property p = (Property) obj;
                    Map<Property, Integer> map = new HashMap<Property, Integer>();
                    map.put(p, 1);
                    createDo4Type(gp, scope, p, map);
                }
                if (elementName == null || elementName.equals("")) {
                    elementName = getDefaultElementName(gp.getType());
                }
                String xml = scope.getXMLHelper().save(gp, gp.getType().getURI(), elementName);
                return xml;
            } else {
                return "Type is Abstract";
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }
    
    public static Map<QName, Object> dataType = new HashMap<QName, Object>();

    static {
        dataType.put(new QName("commonj.sdo", "Boolean"), true);
        dataType.put(new QName("commonj.sdo", "Byte"), (byte) 1);
        dataType.put(new QName("commonj.sdo", "Bytes"), "bytes".getBytes());
        dataType.put(new QName("commonj.sdo", "Character"), 'C');
        dataType.put(new QName("commonj.sdo", "Date"), new Date());
        dataType.put(new QName("commonj.sdo", "DateTime"), "2009-07-10T10:10:10");
        dataType.put(new QName("commonj.sdo", "Day"), "---10");
        dataType.put(new QName("commonj.sdo", "Decimal"), new BigDecimal(123));
        dataType.put(new QName("commonj.sdo", "Duration"), "P1998Y");
        dataType.put(new QName("commonj.sdo", "Double"), 123.123);
        dataType.put(new QName("commonj.sdo", "Float"), 12.12F);
        dataType.put(new QName("commonj.sdo", "Int"), 12);
        dataType.put(new QName("commonj.sdo", "Integer"), new BigInteger("123456789"));
        dataType.put(new QName("commonj.sdo", "Long"), 123456);
        dataType.put(new QName("commonj.sdo", "MonthDay"), "--10-10");
        dataType.put(new QName("commonj.sdo", "Month"), "--10");
        dataType.put(new QName("commonj.sdo", "Short"), (short) 1);
        dataType.put(new QName("commonj.sdo", "String"), "String");
        dataType.put(new QName("commonj.sdo", "Strings"), "any characters seprated by whitespace");
        dataType.put(new QName("commonj.sdo", "Time"), "10:10:10");
        dataType.put(new QName("commonj.sdo", "Year"), "-1994");
        dataType.put(new QName("commonj.sdo", "YearMonth"), "-1994-10");
        dataType.put(new QName("commonj.sdo", "YearMonthDay"), "-1994-10-10");
        dataType.put(new QName("commonj.sdo", "URI"), "uri");
    }
    
    private static Object getSimpleType(Type type) {
        Object obj = dataType.get(new QName(type.getURI(), type.getName()));
        if (obj == null) {
            List<Type> superTypes = type.getBaseTypes();
            for (Type superType : superTypes) {
                obj = dataType.get(new QName(superType.getURI(), superType.getName()));

                if (obj != null) {
                    if (type instanceof SDOType) {
                        if (((SDOType) type).isXsdList()) {
                            ArrayList ls = new ArrayList();
                            ls.add(obj);
                            return ls;
                        }
                    }
                    return obj;
                } else {
                    if (!superType.getBaseTypes().isEmpty()) {
                        obj = getSimpleType(superType);
                        if (obj != null) {
                            if (type instanceof SDOType) {
                                if (((SDOType) type).isXsdList()) {
                                    ArrayList ls = new ArrayList();
                                    ls.add(obj);
                                    return ls;
                                }
                            }
                            return obj;
                        }
                    }
                }
            }
        }
        return obj;
    }
    
    // 722行,增加该代码可以进行部分规避,但还是不能确定basetype的原因
    // XXX  for list union等类型,缺少内容类型的设置,导致无法展示出来。这里进行补充处理。不确定是否正确
//    if (currentType.getBaseTypes().size() == 0) {
//        if (simpleType.getUnion() != null && simpleType.getUnion().getSimpleTypes().size() > 0) {
//            SimpleType mySimpleType = (SimpleType) simpleType.getUnion().getSimpleTypes().get(0);
//            String baseType = mySimpleType.getRestriction().getBaseType();
//            baseTypeQName = this.getQNameForString(defaultNamespace, baseType);
//            SDOType baseSDOType = getTypeForXSDQName(baseTypeQName);
//            currentType.addBaseType(baseSDOType);
//            currentType.setInstanceClass(baseSDOType.getInstanceClass());
//        }
//    }
//
//    if (currentType.getBaseTypes().size() == 0) {
//        if (simpleType.getUnion() != null && simpleType.getUnion().getMemberTypes().size() > 0) {
//            String baseType = (String) simpleType.getUnion().getMemberTypes().get(0);
//            baseTypeQName = this.getQNameForString(defaultNamespace, baseType);
//            SDOType baseSDOType = getTypeForXSDQName(baseTypeQName);
//            currentType.addBaseType(baseSDOType);
//
//            currentType.setInstanceClass(baseSDOType.getInstanceClass());
//        }
//    }
//    
//    if (currentType.getBaseTypes().size() == 0) {
//       if(simpleType.getList()!=null&&simpleType.getList().getItemType()!=null&&!"".equals(simpleType.getList().getItemType())){
//           String baseType = simpleType.getList().getItemType();
//           baseTypeQName = this.getQNameForString(defaultNamespace, baseType);
//           SDOType baseSDOType = getTypeForXSDQName(baseTypeQName);
//           currentType.addBaseType(baseSDOType);
//
//           currentType.setInstanceClass(baseSDOType.getInstanceClass());
//       }
//    }
//
//    if (currentType.getBaseTypes().size() == 0) {
//        System.out.println("存在basetype为空的");
//    }
   
}

 

分享到:
评论

相关推荐

    BURNINTEST--硬件检测工具

    PassMark BurnInTest V5.3 Copyright (C) 1999-2008 PassMark Software All Rights Reserved http://www.passmark.com Overview ======== Passmark's BurnInTest is a software tool that allows all the major sub...

    parasoft c++Test9.0破解

    最好用的单元测试工具,除了这里你是找不到9.0版本的破解的。 ... 独立的版本破解: ... 把lic_client.jar复制到 ... c:\Program Files (x86)\Parasoft\Test\9.0\plugins\...这个是:plugins-c++Test For Visual Studio.7z

    eNetTest 网管内网单机测速工具

    eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速...

    Parasoft c++Test9.0破解文件

    c:\Program Files (x86)\Parasoft\C++test for Visual Studio\9.0\plugins\ 这个目录中 把plugins-Test for Virsual Studio.7z 中的文件覆盖到 c:\Program Files (x86)\Parasoft\Test for Visual Studio\9.0\...

    Parasoft C++Test 9.5

    Parasoft C++Test 9.5是一款由Parasoft公司开发的专业自动化白盒测试工具,专注于C++编程语言的测试。它集成了多种测试策略,包括静态代码分析、动态测试、单元测试、代码覆盖率分析以及缺陷预防等功能,旨在提高...

    speedtest服务器搭建教程

    (speedtest服务器搭建教程) 本篇教程旨在指导读者搭建speedtest服务器,通过安装PHPStudy、配置WNMP和Nginx、下载并配置speedtest测速平台,实现本地测速功能。 一、 PHPStudy 安装和配置 PHPStudy 是一个集成...

    ECU-Test高级教程

    ### ECU-Test高级教程知识点解析 #### 一、ECU-Test概述 **ECU-Test**是一款专为汽车电子控制单元(ECU)开发与验证而设计的强大工具。它支持自动化测试流程,并能有效管理和控制整个测试环境,极大地提高了ECU开发...

    google test框架使用中文文档

    Google Test是Google开发的一款强大的C++测试框架,它使得C++开发者能够编写单元测试和集成测试,以确保代码的质量和稳定性。本文档将详细介绍Google Test框架的使用方法,包括基本概念、断言、测试套件、测试用例、...

    Parasoftc++ Test 9.0破解文件

    最好用的单元测试工具,除了这里你是找不到9.0版本的破解的。 ... 独立的版本破解: ... 把lic_client.jar复制到 ... c:\Program Files (x86)\Parasoft\Test\9.0\plugins\...这个是:( plugins-Test for Virsual Studio.7z )

    Test Track Client 使用说明(新)

    Test Track Client 使用说明 Test Track 是一个功能强大且实用的BUG管理软件,能够帮助测试工程师、开发工程师、开发主管和项目管理人员等角色更好地管理和跟踪项目中的BUG。该软件具有强大的管理功能和灵活的配置...

    Modeltest 使用说明

    Modeltest 使用说明 Modeltest 是一个选择核苷酸替代模型的软件,通过和 PAUP 配合使用,可以选择出合适的 MODEL,并同时计算出相关参数。下面是 Modeltest 的使用说明和相关知识点: 一、Modeltest 概述 * Model...

    Test Bench 经典教程.rar

    Test Bench是电子设计自动化(EDA)领域中的一个重要概念,主要用于验证数字集成电路的设计。在硬件描述语言(HDL,如Verilog或VHDL)中,Test Bench是模拟真实硬件环境来测试设计功能的一个虚拟平台。它能帮助...

    CAN Test V2.53软件使用说明

    CAN Test V2.53 软件使用说明 CAN Test V2.53 软件是一款功能强大且易用的CAN总线测试工具,旨在帮助用户快速地测试和诊断CAN总线设备。以下是CAN Test V2.53 软件使用说明的详细知识点: 软件安装 CAN Test 软件...

    ECU-TEST基本教程

    ### ECU-TEST基本教程知识点概述 #### 一、ECU-TEST简介 ECU-TEST是一款由Vector公司开发的专业汽车电子控制单元(Electronic Control Unit, ECU)测试工具,它能够实现对ECU进行全面而深入的功能性测试,并且支持...

    Parasoft C++ test 9.2官方用户手册_eclipse_中文版

    《Parasoft C++test 9.2官方用户手册_eclipse_中文版》是一本详尽的指南,专为使用C++test工具的开发者提供在Eclipse集成开发环境中的使用方法。C++test是一款强大的静态代码分析和单元测试工具,旨在提高C++软件的...

    test_batch_test_batch_cifar10_batch_

    cifar-10数据集由10个类的60000个32x32彩色图像组成,每个类有6000个图像。有50000个训练图像和10000个测试图像。数据集分为五个训练批次和一个测试...具体:test.mat文件,该训练集可以用于图片识别,非负矩阵分解等。

    C++Test学习文档

    ### C++Test 学习文档知识点汇总 #### 1. C++test 用户手册 - **概述**:C++test 用户手册旨在为用户提供有关如何利用C++test的各种功能的详细指导,无论是在Eclipse环境中构建还是作为插件使用。这份手册对于拥有...

    PortTest串口调试工具

    **串口调试工具——PortTest详解** 在计算机通信领域,串行端口(Serial Port)是一种常见的硬件接口,用于设备间的通信。PortTest是一款专为串口调试设计的实用工具,它可以帮助用户检测和测试串口通讯功能,确保...

    C++test(VS2010插件版)简明操作手册-亲测可用.doc

    C++test简明操作手册 C++test是一款功能强大的测试工具,旨在帮助开发者编写高质量的代码。作为Parasoft公司的旗舰产品,C++test提供了全面的测试解决方案,涵盖了静态测试、动态测试、测试用例生成等多方面的测试...

Global site tag (gtag.js) - Google Analytics