Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* Copyright 2010 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package eu.basysbio.cisd.dss;
import java.io.File;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.HashSet;
import java.util.List;
import java.util.Properties;
import java.util.Set;
import javax.sql.DataSource;
import net.lemnik.eodsql.DataSet;
import net.lemnik.eodsql.QueryTool;
import org.apache.log4j.Logger;
import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
import ch.systemsx.cisd.common.logging.LogCategory;
import ch.systemsx.cisd.common.logging.LogFactory;
import ch.systemsx.cisd.common.logging.LogInitializer;
import ch.systemsx.cisd.common.utilities.PropertyUtils;
import ch.systemsx.cisd.etlserver.IMaintenanceTask;
import ch.systemsx.cisd.etlserver.plugins.HierarchicalStorageUpdater;
import ch.systemsx.cisd.etlserver.utils.Column;
import ch.systemsx.cisd.openbis.dss.generic.shared.IEncapsulatedOpenBISService;
import ch.systemsx.cisd.openbis.dss.generic.shared.ServiceProvider;
import ch.systemsx.cisd.openbis.dss.generic.shared.dto.DataSetInformation;
import ch.systemsx.cisd.openbis.dss.generic.shared.utils.PropertyParametersUtil;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.DataSetType;
import ch.systemsx.cisd.openbis.generic.shared.dto.SimpleDataSetInformationDTO;
import ch.systemsx.cisd.openbis.generic.shared.dto.identifier.ExperimentIdentifier;
/**
*
*
* @author Franz-Josef Elmer
*/
public class PostRegistrationDatabaseUploadTask implements IMaintenanceTask
{
private static final IDropBoxFeeder DUMMY_FEEDER = new IDropBoxFeeder()
{
public void feed(String userEmail, String sampleCode, List<Column> commonColumns,
Column dataColumn)
{
}
};
private static final Logger operationLog =
LogFactory.getLogger(LogCategory.OPERATION, PostRegistrationDatabaseUploadTask.class);
private final IEncapsulatedOpenBISService service;
private final File storeRoot;
private TimeSeriesDataSetUploaderParameters parameters;
private DataSource dataSource;
public PostRegistrationDatabaseUploadTask()
{
LogInitializer.init();
service = ServiceProvider.getOpenBISService();
Properties properties = PropertyParametersUtil.loadServiceProperties();
storeRoot =
new File(PropertyUtils.getMandatoryProperty(properties,
HierarchicalStorageUpdater.STOREROOT_DIR_KEY));
}
public void setUp(String pluginName, Properties properties)
{
parameters = new TimeSeriesDataSetUploaderParameters(properties, false);
dataSource = DBUtils.createDBContext(properties).getDataSource();
}
public void execute()
{
Set<String> knownDataSets = getKnownDataSets();
List<SimpleDataSetInformationDTO> dataSets = service.listDataSets();
for (SimpleDataSetInformationDTO dataSet : dataSets)
{
String dataSetType = dataSet.getDataSetType();
if (TimeSeriesDataSetUploader.TIME_SERIES.equals(dataSetType)
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
&& knownDataSets.contains(dataSet.getDataSetCode()) == false)
{
File pathToDataSet = new File(storeRoot, dataSet.getDataSetLocation());
File[] dataSetFiles = new File(pathToDataSet, "original").listFiles();
if (dataSetFiles != null && dataSetFiles.length > 0)
{
for (File dataSetFile : dataSetFiles)
{
TimeSeriesDataSetUploader uploader =
new TimeSeriesDataSetUploader(dataSource, service, parameters);
DataSetInformation dataSetInformation = createDataSetInformation(dataSet);
try
{
uploader.upload(dataSetFile, dataSetInformation, DUMMY_FEEDER);
uploader.commit();
if (operationLog.isInfoEnabled())
{
operationLog.info("Data set " + dataSet.getDataSetCode()
+ " successfully uploaded.");
}
} catch (Exception ex)
{
uploader.rollback();
operationLog.error("Uploading of data set " + dataSet.getDataSetCode()
+ " failed: ", ex);
}
}
}
}
}
}
private DataSetInformation createDataSetInformation(SimpleDataSetInformationDTO dataSet)
{
DataSetInformation dataSetInformation = new DataSetInformation();
dataSetInformation.setDataSetCode(dataSet.getDataSetCode());
DataSetType dataSetType = new DataSetType();
dataSetType.setCode(dataSet.getDataSetType());
dataSetInformation.setDataSetType(dataSetType);
String groupCode = dataSet.getGroupCode();
dataSetInformation.setGroupCode(groupCode);
String databaseInstanceCode = dataSet.getDatabaseInstanceCode();
String projectCode = dataSet.getProjectCode();
String experimentCode = dataSet.getExperimentCode();
dataSetInformation.setExperimentIdentifier(new ExperimentIdentifier(databaseInstanceCode,
groupCode, projectCode, experimentCode));
return dataSetInformation;
}
private Set<String> getKnownDataSets()
{
Connection connection = null;
try
{
connection = dataSource.getConnection();
ITimeSeriesDAO dao = QueryTool.getQuery(connection, ITimeSeriesDAO.class);
DataSet<String> dataSet = dao.findDataSets();
Set<String> dataSets = new HashSet<String>();
dataSets.addAll(dataSet);
dataSet.close();
return dataSets;
} catch (SQLException ex)
{
throw CheckedExceptionTunnel.wrapIfNecessary(ex);
} finally
{
if (connection != null)
{
try
{
connection.close();
} catch (SQLException ex)
{
throw CheckedExceptionTunnel.wrapIfNecessary(ex);
}
}
}
}
}