Source Code Cross Referenced for CompositeDataSet.java in  » Testing » DbUnit » org » dbunit » dataset » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » DbUnit » org.dbunit.dataset 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *
003:         * The DbUnit Database Testing Framework
004:         * Copyright (C)2002-2004, DbUnit.org
005:         *
006:         * This library is free software; you can redistribute it and/or
007:         * modify it under the terms of the GNU Lesser General Public
008:         * License as published by the Free Software Foundation; either
009:         * version 2.1 of the License, or (at your option) any later version.
010:         *
011:         * This library is distributed in the hope that it will be useful,
012:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
013:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014:         * Lesser General Public License for more details.
015:         *
016:         * You should have received a copy of the GNU Lesser General Public
017:         * License along with this library; if not, write to the Free Software
018:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
019:         *
020:         */
021:
022:        package org.dbunit.dataset;
023:
024:        import org.slf4j.Logger;
025:        import org.slf4j.LoggerFactory;
026:
027:        import java.util.ArrayList;
028:        import java.util.List;
029:        import java.util.ListIterator;
030:
031:        /**
032:         * Combines multiple datasets into a single logical dataset.
033:         *
034:         * @author Manuel Laflamme
035:         * @version $Revision: 554 $
036:         * @since Feb 19, 2002
037:         */
038:        public class CompositeDataSet extends AbstractDataSet {
039:
040:            /**
041:             * Logger for this class
042:             */
043:            private static final Logger logger = LoggerFactory
044:                    .getLogger(CompositeDataSet.class);
045:
046:            private ITable[] _tables;
047:
048:            /**
049:             * Creates a composite dataset that combines specified datasets.
050:             * Tables having the same name are merged into one table.
051:             */
052:            public CompositeDataSet(IDataSet[] dataSets)
053:                    throws DataSetException {
054:                this (dataSets, true);
055:            }
056:
057:            /**
058:             * Creates a composite dataset that combines specified datasets.
059:             *
060:             * @param dataSets
061:             *      list of datasets
062:             * @param combine
063:             *      if <code>true</code>, tables having the same name are merged into
064:             *      one table.
065:             */
066:            public CompositeDataSet(IDataSet[] dataSets, boolean combine)
067:                    throws DataSetException {
068:                List tableList = new ArrayList();
069:                for (int i = 0; i < dataSets.length; i++) {
070:                    IDataSet dataSet = dataSets[i];
071:                    ITableIterator iterator = dataSet.iterator();
072:                    while (iterator.next()) {
073:                        addTable(iterator.getTable(), tableList, combine);
074:                    }
075:                }
076:
077:                _tables = (ITable[]) tableList.toArray(new ITable[0]);
078:            }
079:
080:            /**
081:             * Creates a composite dataset that combines the two specified datasets.
082:             * Tables having the same name are merged into one table.
083:             */
084:            public CompositeDataSet(IDataSet dataSet1, IDataSet dataSet2)
085:                    throws DataSetException {
086:                this (new IDataSet[] { dataSet1, dataSet2 });
087:            }
088:
089:            /**
090:             * Creates a composite dataset that combines the two specified datasets.
091:             *
092:             * @param dataSet1
093:             *      first dataset
094:             * @param dataSet2
095:             *      second dataset
096:             * @param combine
097:             *      if <code>true</code>, tables having the same name are merged into
098:             *      one table.
099:             */
100:            public CompositeDataSet(IDataSet dataSet1, IDataSet dataSet2,
101:                    boolean combine) throws DataSetException {
102:                this (new IDataSet[] { dataSet1, dataSet2 }, combine);
103:            }
104:
105:            /**
106:             * Creates a composite dataset that combines duplicate tables of the specified dataset.
107:             *
108:             * @param dataSet
109:             *      the dataset
110:             * @param combine
111:             *      if <code>true</code>, tables having the same name are merged into
112:             *      one table.
113:             * @deprecated This constructor is useless when the combine parameter is
114:             * <code>false</code>. Use overload that doesn't have the combine argument. 
115:             */
116:            public CompositeDataSet(IDataSet dataSet, boolean combine)
117:                    throws DataSetException {
118:                this (new IDataSet[] { dataSet }, combine);
119:            }
120:
121:            /**
122:             * Creates a composite dataset that combines duplicate tables of the specified dataset.
123:             *
124:             * @param dataSet
125:             *      the dataset
126:             */
127:            public CompositeDataSet(IDataSet dataSet) throws DataSetException {
128:                this (new IDataSet[] { dataSet }, true);
129:            }
130:
131:            /**
132:             * Creates a composite dataset that combines tables having identical name.
133:             * Tables having the same name are merged into one table.
134:             */
135:            public CompositeDataSet(ITable[] tables) throws DataSetException {
136:                List tableList = new ArrayList();
137:                for (int i = 0; i < tables.length; i++) {
138:                    addTable(tables[i], tableList, true);
139:                }
140:
141:                _tables = (ITable[]) tableList.toArray(new ITable[0]);
142:            }
143:
144:            private void addTable(ITable newTable, List tableList,
145:                    boolean combine) {
146:                logger.debug("addTable(newTable=" + newTable + ", tableList="
147:                        + tableList + ", combine=" + combine + ") - start");
148:
149:                // No merge required, simply add new table at then end of the list
150:                if (!combine) {
151:                    tableList.add(newTable);
152:                    return;
153:                }
154:
155:                // Merge required, search for existing table with the same name
156:                String tableName = newTable.getTableMetaData().getTableName();
157:                for (ListIterator it = tableList.listIterator(); it.hasNext();) {
158:                    ITable table = (ITable) it.next();
159:                    if (tableName.equalsIgnoreCase(table.getTableMetaData()
160:                            .getTableName())) {
161:                        // Found existing table, merge existing and new tables together
162:                        it.set(new CompositeTable(table, newTable));
163:                        return;
164:                    }
165:                }
166:
167:                // No existing table found, add new table at the end of the list
168:                tableList.add(newTable);
169:            }
170:
171:            ////////////////////////////////////////////////////////////////////////////
172:            // AbstractDataSet class
173:
174:            protected ITableIterator createIterator(boolean reversed)
175:                    throws DataSetException {
176:                logger.debug("createIterator(reversed=" + reversed
177:                        + ") - start");
178:
179:                return new DefaultTableIterator(_tables, reversed);
180:            }
181:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.