Source Code Cross Referenced for OgnlValueStackDataSource.java in  » J2EE » webwork-2.2.6 » com » opensymphony » webwork » views » jasperreports » 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 » J2EE » webwork 2.2.6 » com.opensymphony.webwork.views.jasperreports 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright (c) 2002-2003 by OpenSymphony
003:         * All rights reserved.
004:         */
005:        package com.opensymphony.webwork.views.jasperreports;
006:
007:        import com.opensymphony.webwork.util.MakeIterator;
008:        import com.opensymphony.xwork.util.OgnlValueStack;
009:        import net.sf.jasperreports.engine.JRDataSource;
010:        import net.sf.jasperreports.engine.JRException;
011:        import net.sf.jasperreports.engine.JRField;
012:        import org.apache.commons.logging.Log;
013:        import org.apache.commons.logging.LogFactory;
014:
015:        import java.util.Iterator;
016:
017:        /**
018:         * Ported to WebWork2.
019:         *
020:         * @author <a href="hermanns@aixcept.de">Rainer Hermanns</a>
021:         * @version $Id: OgnlValueStackDataSource.java 1282 2005-10-09 04:26:58Z plightbo $
022:         */
023:        public class OgnlValueStackDataSource implements  JRDataSource {
024:
025:            /**
026:             * Logger for this class
027:             */
028:            private static Log log = LogFactory
029:                    .getLog(OgnlValueStackDataSource.class);
030:
031:            Iterator iterator;
032:            OgnlValueStack valueStack;
033:            boolean firstTimeThrough = true;
034:
035:            /**
036:             * Create a value stack data source on the given iterable property
037:             *
038:             * @param valueStack The value stack to base the data source on
039:             * @param dataSource The property to iterate over for the report
040:             */
041:            public OgnlValueStackDataSource(OgnlValueStack valueStack,
042:                    String dataSource) {
043:                this .valueStack = valueStack;
044:
045:                Object dataSourceValue = valueStack.findValue(dataSource);
046:
047:                if (dataSourceValue != null) {
048:                    if (MakeIterator.isIterable(dataSourceValue)) {
049:                        iterator = MakeIterator.convert(dataSourceValue);
050:                    } else {
051:                        Object[] array = new Object[1];
052:                        array[0] = dataSourceValue;
053:                        iterator = MakeIterator.convert(array);
054:                    }
055:                } else {
056:                    log.warn("Data source value for data source " + dataSource
057:                            + " was null");
058:                }
059:            }
060:
061:            /**
062:             * Get the value of a given field
063:             *
064:             * @param field The field to get the value for. The expression language to get the value
065:             *              of the field is either taken from the description property or from the name of the field
066:             *              if the description is <code>null</code>.
067:             * @return an <code>Object</code> containing the field value or a new
068:             *         <code>OgnlValueStackDataSource</code> object if the field value evaluates to
069:             *         an object that can be iterated over.
070:             * @throws JRException if there is a problem obtaining the value
071:             */
072:            public Object getFieldValue(JRField field) throws JRException {
073:                //TODO: move the code to return a OgnlValueStackDataSource to a seperate
074:                //      method when and if the JRDataSource interface is updated to support
075:                //      this.
076:                String expression = field.getDescription();
077:
078:                if (expression == null) {
079:                    //Description is optional so use the field name as a default
080:                    expression = field.getName();
081:                }
082:
083:                Object value = valueStack.findValue(expression);
084:
085:                if (log.isDebugEnabled()) {
086:                    log.debug("field: " + field.getName() + "/" + value);
087:                }
088:
089:                if (MakeIterator.isIterable(value)) {
090:                    //                return new OgnlValueStackDataSource(this.valueStack, field.getName());
091:                    return new OgnlValueStackDataSource(this .valueStack,
092:                            expression);
093:                } else {
094:                    return value;
095:                }
096:            }
097:
098:            /**
099:             * Is there any more data
100:             *
101:             * @return <code>true</code> if there are more elements to iterate over and
102:             *         <code>false</code> otherwise
103:             * @throws JRException if there is a problem determining whether there
104:             *                     is more data
105:             */
106:            public boolean next() throws JRException {
107:                if (firstTimeThrough) {
108:                    firstTimeThrough = false;
109:                } else {
110:                    valueStack.pop();
111:                }
112:
113:                if ((iterator != null) && (iterator.hasNext())) {
114:                    valueStack.push(iterator.next());
115:                    log
116:                            .debug("Pushed next value: "
117:                                    + valueStack.findValue("."));
118:
119:                    return true;
120:                } else {
121:                    log.debug("No more values");
122:
123:                    return false;
124:                }
125:            }
126:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.