Skip to content
Snippets Groups Projects
Commit 115e34ed authored by kaloyane's avatar kaloyane
Browse files

[LMS-2104]: do not delete the contained datasets recursively (yet to be tested)

SVN: 21357
parent 28af1bf5
No related branches found
No related tags found
No related merge requests found
...@@ -131,8 +131,7 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements ...@@ -131,8 +131,7 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements
List<String> notAvailableDatasets = new ArrayList<String>(); List<String> notAvailableDatasets = new ArrayList<String>();
for (DataPE dataSet : datasets) for (DataPE dataSet : datasets)
{ {
if (dataSet.isExternalData() == false if (dataSet.isAvailable() == false)
|| dataSet.tryAsExternalData().getStatus().isAvailable() == false)
{ {
notAvailableDatasets.add(dataSet.getCode()); notAvailableDatasets.add(dataSet.getCode());
} }
...@@ -159,9 +158,7 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements ...@@ -159,9 +158,7 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements
List<String> notDeletableDatasets = new ArrayList<String>(); List<String> notDeletableDatasets = new ArrayList<String>();
for (DataPE dataSet : datasets) for (DataPE dataSet : datasets)
{ {
// TODO 2011-05-16, Piotr Buczek: change this after deletion is implemented if (dataSet.isDeletable() == false)
if (dataSet.isExternalData() == false
|| dataSet.tryAsExternalData().getStatus().isDeletable() == false)
{ {
notDeletableDatasets.add(dataSet.getCode()); notDeletableDatasets.add(dataSet.getCode());
} }
...@@ -242,7 +239,6 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements ...@@ -242,7 +239,6 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements
public void deleteLoadedDataSets(String reason) public void deleteLoadedDataSets(String reason)
{ {
dataSets = loadContainedDataSetsRecursively();
assertDatasetsAreDeletable(dataSets); assertDatasetsAreDeletable(dataSets);
dataSets = sortTopologicallyByContainerRelationship(dataSets); dataSets = sortTopologicallyByContainerRelationship(dataSets);
...@@ -267,34 +263,6 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements ...@@ -267,34 +263,6 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements
} }
} }
private List<DataPE> loadContainedDataSetsRecursively()
{
Map<Long, DataPE> loadCache = new HashMap<Long, DataPE>();
for (DataPE dataSet : dataSets)
{
loadContainedDataSetsInternal(dataSet, loadCache);
}
return new ArrayList<DataPE>(loadCache.values());
}
private void loadContainedDataSetsInternal(DataPE dataSet, Map<Long /* id */, DataPE> loaded)
{
Long id = dataSet.getId();
if (false == loaded.containsKey(id))
{
loaded.put(id, dataSet);
if (dataSet.getContainedDataSets() != null)
{
for (DataPE containedDataSet : dataSet.getContainedDataSets())
{
loadContainedDataSetsInternal(containedDataSet, loaded);
}
}
}
}
private List<DataPE> sortTopologicallyByContainerRelationship(List<DataPE> datasets) private List<DataPE> sortTopologicallyByContainerRelationship(List<DataPE> datasets)
{ {
DAG<DataPE> dag = new DAG<DataPE>(datasets) DAG<DataPE> dag = new DAG<DataPE>(datasets)
......
...@@ -657,17 +657,6 @@ public class DataPE extends AbstractIdAndCodeHolder<DataPE> implements ...@@ -657,17 +657,6 @@ public class DataPE extends AbstractIdAndCodeHolder<DataPE> implements
@Transient @Transient
public boolean isDeletable() public boolean isDeletable()
{ {
if (containedDataSets != null)
{
for (DataPE containedDataSet : containedDataSets)
{
if (containedDataSet.isDeletable() == false)
{
return false;
}
}
}
return true; return true;
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment