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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-importexport/src/main/java/org/hisp/dhis/importexport/dxf/converter/CompleteDataSetRegistrationConverter.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.importexport.dxf.converter;
 
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.Collection;
 
31
import java.util.Map;
 
32
 
 
33
import org.amplecode.staxwax.reader.XMLReader;
 
34
import org.amplecode.staxwax.writer.XMLWriter;
 
35
import org.hisp.dhis.jdbc.BatchHandler;
 
36
import org.hisp.dhis.dataset.CompleteDataSetRegistration;
 
37
import org.hisp.dhis.dataset.DataSet;
 
38
import org.hisp.dhis.importexport.ExportParams;
 
39
import org.hisp.dhis.importexport.GroupMemberType;
 
40
import org.hisp.dhis.importexport.ImportObjectService;
 
41
import org.hisp.dhis.importexport.ImportParams;
 
42
import org.hisp.dhis.importexport.XMLConverter;
 
43
import org.hisp.dhis.importexport.converter.AbstractCompleteDataSetRegistrationConverter;
 
44
import org.hisp.dhis.organisationunit.OrganisationUnit;
 
45
import org.hisp.dhis.period.Period;
 
46
import org.hisp.dhis.source.Source;
 
47
import org.hisp.dhis.system.util.DateUtils;
 
48
 
 
49
/**
 
50
 * @author Lars Helge Overland
 
51
 * @version $Id$
 
52
 */
 
53
public class CompleteDataSetRegistrationConverter
 
54
    extends AbstractCompleteDataSetRegistrationConverter implements XMLConverter
 
55
{
 
56
    public static final String COLLECTION_NAME = "completeDataSetRegistrations";
 
57
    public static final String ELEMENT_NAME = "registration";
 
58
 
 
59
    private static final String FIELD_DATASET = "dataSet";
 
60
    private static final String FIELD_PERIOD = "period";
 
61
    private static final String FIELD_SOURCE = "source";
 
62
    private static final String FIELD_DATE = "date";
 
63
 
 
64
    // -------------------------------------------------------------------------
 
65
    // Properties
 
66
    // -------------------------------------------------------------------------
 
67
 
 
68
    private Map<Object, Integer> dataSetMapping;    
 
69
    private Map<Object, Integer> periodMapping;    
 
70
    private Map<Object, Integer> sourceMapping;
 
71
 
 
72
    // -------------------------------------------------------------------------
 
73
    // Constructor
 
74
    // -------------------------------------------------------------------------
 
75
 
 
76
    /**
 
77
     * Constructor for write operations.
 
78
     */
 
79
    public CompleteDataSetRegistrationConverter()
 
80
    {   
 
81
    }
 
82
    
 
83
    /**
 
84
     * Constructor for read operations.
 
85
     * 
 
86
     * @param batchHandler the BatchHandler to use.
 
87
     * @param importObjectService the ImportObjectService to use.
 
88
     * @param params the ImportParams to use.
 
89
     * @param dataSetMapping the DataSet mapping to use.
 
90
     * @param periodMapping the Period mapping to use.
 
91
     * @param sourceMapping the Source mapping to use.
 
92
     */
 
93
    public CompleteDataSetRegistrationConverter( BatchHandler batchHandler,
 
94
        ImportObjectService importObjectService,
 
95
        ImportParams params,
 
96
        Map<Object, Integer> dataSetMapping,
 
97
        Map<Object, Integer> periodMapping,
 
98
        Map<Object, Integer> sourceMapping )
 
99
    {
 
100
        this.batchHandler = batchHandler;
 
101
        this.importObjectService = importObjectService;
 
102
        this.params = params;
 
103
        this.dataSetMapping = dataSetMapping;
 
104
        this.periodMapping = periodMapping;
 
105
        this.sourceMapping = sourceMapping;
 
106
    }
 
107
 
 
108
    // -------------------------------------------------------------------------
 
109
    // XMLConverter implementation
 
110
    // -------------------------------------------------------------------------
 
111
 
 
112
    public void write( XMLWriter writer, ExportParams params )
 
113
    {
 
114
        Collection<CompleteDataSetRegistration> registrations = params.getCompleteDataSetRegistrations();
 
115
        
 
116
        if ( registrations != null && registrations.size() > 0 )
 
117
        {
 
118
            writer.openElement( COLLECTION_NAME );
 
119
            
 
120
            for ( CompleteDataSetRegistration registration : registrations )
 
121
            {
 
122
                writer.openElement( ELEMENT_NAME );
 
123
                
 
124
                writer.writeElement( FIELD_DATASET, String.valueOf( registration.getDataSet().getId() ) );
 
125
                writer.writeElement( FIELD_PERIOD, String.valueOf( registration.getPeriod().getId() ) );
 
126
                writer.writeElement( FIELD_SOURCE, String.valueOf( registration.getSource().getId() ) );
 
127
                writer.writeElement( FIELD_DATE, DateUtils.getMediumDateString( registration.getDate() ) );
 
128
                
 
129
                writer.closeElement();
 
130
            }
 
131
            
 
132
            writer.closeElement();
 
133
        }
 
134
    }
 
135
    
 
136
    public void read( XMLReader reader, ImportParams params )
 
137
    {
 
138
        while ( reader.moveToStartElement( ELEMENT_NAME, COLLECTION_NAME ) )
 
139
        {
 
140
            final CompleteDataSetRegistration registration = new CompleteDataSetRegistration();
 
141
            
 
142
            DataSet dataSet = new DataSet();
 
143
            registration.setDataSet( dataSet );
 
144
            
 
145
            Period period = new Period();
 
146
            registration.setPeriod( period );
 
147
            
 
148
            Source source = new OrganisationUnit();
 
149
            registration.setSource( source );
 
150
            
 
151
            reader.moveToStartElement( FIELD_DATASET );
 
152
            registration.getDataSet().setId( dataSetMapping.get( Integer.parseInt( reader.getElementValue() ) ) );
 
153
            
 
154
            reader.moveToStartElement( FIELD_PERIOD );
 
155
            registration.getPeriod().setId( periodMapping.get( Integer.parseInt( reader.getElementValue() ) ) );
 
156
            
 
157
            reader.moveToStartElement( FIELD_SOURCE );
 
158
            registration.getSource().setId( sourceMapping.get( Integer.parseInt( reader.getElementValue() ) ) );
 
159
            
 
160
            reader.moveToStartElement( FIELD_DATE );
 
161
            registration.setDate( DateUtils.getMediumDate( reader.getElementValue() ) );
 
162
            
 
163
            read( registration, GroupMemberType.NONE, params );
 
164
        }
 
165
    }    
 
166
}