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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-gis/src/main/java/org/hisp/dhis/gis/ext/BagSession.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.gis.ext;
 
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.HashMap;
 
32
import java.util.List;
 
33
import java.util.Map;
 
34
import org.hisp.dhis.gis.Legend;
 
35
import org.hisp.dhis.gis.LegendSet;
 
36
import org.hisp.dhis.gis.action.export.FeatureStructure;
 
37
import org.hisp.dhis.indicator.Indicator;
 
38
 
 
39
public class BagSession
 
40
{
 
41
    private Indicator indicator;
 
42
 
 
43
    private String startDate;
 
44
 
 
45
    private String endDate;
 
46
 
 
47
    private List<org.hisp.dhis.gis.ext.Feature> features;
 
48
 
 
49
    private LegendSet legendSet;
 
50
 
 
51
    public Indicator getIndicator()
 
52
    {
 
53
        return indicator;
 
54
    }
 
55
 
 
56
    public void setIndicator( Indicator indicator )
 
57
    {
 
58
        this.indicator = indicator;
 
59
    }
 
60
 
 
61
    public String getStartDate()
 
62
    {
 
63
        return startDate;
 
64
    }
 
65
 
 
66
    public void setStartDate( String startDate )
 
67
    {
 
68
        this.startDate = startDate;
 
69
    }
 
70
 
 
71
    public String getEndDate()
 
72
    {
 
73
        return endDate;
 
74
    }
 
75
 
 
76
    public void setEndDate( String endDate )
 
77
    {
 
78
        this.endDate = endDate;
 
79
    }
 
80
 
 
81
    public List<org.hisp.dhis.gis.ext.Feature> getFeatures()
 
82
    {
 
83
        return features;
 
84
    }
 
85
 
 
86
    public void setFeatures( List<org.hisp.dhis.gis.ext.Feature> features )
 
87
    {
 
88
        this.features = features;
 
89
    }
 
90
 
 
91
    public LegendSet getLegendSet()
 
92
    {
 
93
        return legendSet;
 
94
    }
 
95
 
 
96
    public void setLegendSet( LegendSet legendSet )
 
97
    {
 
98
        this.legendSet = legendSet;
 
99
    }
 
100
 
 
101
    public BagSession( Indicator indicator, String startDate, String endDate, List<Feature> features,
 
102
        LegendSet legendSet )
 
103
    {
 
104
        super();
 
105
        this.indicator = indicator;
 
106
        this.startDate = startDate;
 
107
        this.endDate = endDate;
 
108
        this.features = features;
 
109
        this.legendSet = legendSet;
 
110
    }
 
111
 
 
112
    public Title getTitle()
 
113
    {
 
114
        return new Title( this.getIndicator().getName(), this.getStartDate(), this.getEndDate() );
 
115
    }
 
116
 
 
117
    public List<Legend> getLegends()
 
118
    {
 
119
        for(Legend legend:this.getLegendSet().getLegends()){
 
120
            
 
121
            legend.setColor( "#" + legend.getColor() );
 
122
            
 
123
        }
 
124
        return this.getLegendSet().getLegends();
 
125
    }
 
126
 
 
127
    public List<FeatureStructure> getFeatureStructure()
 
128
    {
 
129
        List<FeatureStructure> featureStructure = new ArrayList<FeatureStructure>();
 
130
        for ( Feature feature : this.getFeatures() )
 
131
        {
 
132
            if(feature.getFeature()!=null){
 
133
                featureStructure.add( new FeatureStructure( feature.getFeature().getFeatureCode(), feature.getColor(),
 
134
                    feature.getAggregatedDataValue(), feature.getFeature().getOrganisationUnit().getId() ) );
 
135
                }
 
136
        }
 
137
        return featureStructure;
 
138
    }
 
139
 
 
140
    public Map<String, String> getFeature()
 
141
    {
 
142
        Map<String, String> result = new HashMap<String, String>();
 
143
 
 
144
        for ( Feature feature : this.features )
 
145
        {
 
146
 
 
147
            if ( feature.getFeature() != null)
 
148
            {
 
149
                String key = feature.getFeature().getFeatureCode();
 
150
 
 
151
                String color = feature.getColor();
 
152
                
 
153
                double value = feature.getAggregatedDataValue();
 
154
 
 
155
                result.put( key, color + "-" + value );
 
156
            }
 
157
 
 
158
        }
 
159
 
 
160
        return result;
 
161
 
 
162
    }
 
163
 
 
164
}