~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/chart/action/GenerateChartAction.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.reporting.chart.action;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import java.util.ArrayList;
 
31
import java.util.List;
 
32
 
 
33
import org.hisp.dhis.chart.ChartService;
 
34
import org.hisp.dhis.i18n.I18nFormat;
 
35
import org.hisp.dhis.indicator.Indicator;
 
36
import org.hisp.dhis.indicator.IndicatorService;
 
37
import org.hisp.dhis.organisationunit.OrganisationUnit;
 
38
import org.hisp.dhis.organisationunit.OrganisationUnitService;
 
39
import org.hisp.dhis.period.Period;
 
40
import org.hisp.dhis.period.PeriodService;
 
41
import org.jfree.chart.JFreeChart;
 
42
 
 
43
import com.opensymphony.xwork.Action;
 
44
 
 
45
/**
 
46
 * Known usage of this class is the pivot table chart functionality.
 
47
 * 
 
48
 * @author Lars Helge Overland
 
49
 * @version $Id$
 
50
 */
 
51
public class GenerateChartAction
 
52
    implements Action
 
53
{
 
54
    // -------------------------------------------------------------------------
 
55
    // Dependencies
 
56
    // -------------------------------------------------------------------------
 
57
 
 
58
    private ChartService chartService;
 
59
 
 
60
    public void setChartService( ChartService chartService )
 
61
    {
 
62
        this.chartService = chartService;
 
63
    }
 
64
 
 
65
    private IndicatorService indicatorService;
 
66
 
 
67
    public void setIndicatorService( IndicatorService indicatorService )
 
68
    {
 
69
        this.indicatorService = indicatorService;
 
70
    }
 
71
    
 
72
    private PeriodService periodService;
 
73
 
 
74
    public void setPeriodService( PeriodService periodService )
 
75
    {
 
76
        this.periodService = periodService;
 
77
    }
 
78
 
 
79
    private OrganisationUnitService organisationUnitService;
 
80
 
 
81
    public void setOrganisationUnitService( OrganisationUnitService organisationUnitService )
 
82
    {
 
83
        this.organisationUnitService = organisationUnitService;
 
84
    }
 
85
 
 
86
    private I18nFormat format;
 
87
 
 
88
    public void setFormat( I18nFormat format )
 
89
    {
 
90
        this.format = format;
 
91
    }
 
92
 
 
93
    // -------------------------------------------------------------------------
 
94
    // Input
 
95
    // -------------------------------------------------------------------------
 
96
 
 
97
    private List<String> indicatorId;
 
98
 
 
99
    public void setIndicatorId( List<String> indicatorId )
 
100
    {
 
101
        this.indicatorId = indicatorId;
 
102
    }
 
103
 
 
104
    private List<String> periodId;
 
105
 
 
106
    public void setPeriodId( List<String> periodId )
 
107
    {
 
108
        this.periodId = periodId;
 
109
    }
 
110
 
 
111
    private List<String> organisationUnitId;
 
112
 
 
113
    public void setOrganisationUnitId( List<String> organisationUnitId )
 
114
    {
 
115
        this.organisationUnitId = organisationUnitId;
 
116
    }
 
117
 
 
118
    private String dimension;
 
119
 
 
120
    public void setDimension( String dimension )
 
121
    {
 
122
        this.dimension = dimension;
 
123
    }
 
124
    
 
125
    private boolean regression;
 
126
 
 
127
    public void setRegression( boolean regression )
 
128
    {
 
129
        this.regression = regression;
 
130
    }
 
131
    
 
132
    private String chartWidth;
 
133
 
 
134
    public void setChartWidth( String chartWidth )
 
135
    {
 
136
        this.chartWidth = chartWidth;
 
137
    }
 
138
    
 
139
    // -------------------------------------------------------------------------
 
140
    // Output
 
141
    // -------------------------------------------------------------------------
 
142
 
 
143
    private JFreeChart chart;
 
144
 
 
145
    public JFreeChart getChart()
 
146
    {
 
147
        return chart;
 
148
    }
 
149
 
 
150
    private int width;
 
151
 
 
152
    public int getWidth()
 
153
    {
 
154
        return width;
 
155
    }
 
156
 
 
157
    private int height;
 
158
 
 
159
    public int getHeight()
 
160
    {
 
161
        return height;
 
162
    }
 
163
    
 
164
    // -------------------------------------------------------------------------
 
165
    // Action implementation
 
166
    // -------------------------------------------------------------------------
 
167
 
 
168
    public String execute()
 
169
        throws Exception
 
170
    {
 
171
        List<Indicator> indicators = new ArrayList<Indicator>();
 
172
        
 
173
        for ( String id : indicatorId )
 
174
        {
 
175
            indicators.add( indicatorService.getIndicator( Integer.parseInt( id ) ) );
 
176
        }
 
177
        
 
178
        List<Period> periods = new ArrayList<Period>();
 
179
        
 
180
        for ( String id : periodId )
 
181
        {
 
182
            periods.add( periodService.getPeriod( Integer.parseInt( id ) ) );
 
183
        }
 
184
        
 
185
        List<OrganisationUnit> organisationUnits = new ArrayList<OrganisationUnit>();
 
186
        
 
187
        for ( String id : organisationUnitId )
 
188
        {
 
189
            organisationUnits.add( organisationUnitService.getOrganisationUnit( Integer.parseInt( id ) ) );
 
190
        }
 
191
        
 
192
        width = chartWidth != null ? Integer.valueOf( chartWidth ) : 700;
 
193
        
 
194
        height = 500;
 
195
        
 
196
        chart = chartService.getJFreeChart( indicators, periods, organisationUnits, dimension, regression, format );
 
197
        
 
198
        return SUCCESS;
 
199
    }
 
200
}