1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.store.legacy.store.internal

File AttachmentArchiveDeleteRunnable.java

 

Coverage histogram

../../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

2
7
1
1
66
29
2
0.29
7
1
2

Classes

Class Line # Actions
AttachmentArchiveDeleteRunnable 41 7 0% 2 0
1.0100%
 

Contributing tests

This file is covered by 1 test. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.store.legacy.store.internal;
21   
22    import java.io.File;
23    import java.util.ArrayList;
24    import java.util.List;
25   
26    import com.xpn.xwiki.doc.XWikiAttachmentArchive;
27    import org.suigeneris.jrcs.rcs.Version;
28    import org.xwiki.store.FileDeleteTransactionRunnable;
29    import org.xwiki.store.StartableTransactionRunnable;
30    import org.xwiki.store.filesystem.internal.AttachmentFileProvider;
31    import org.xwiki.store.filesystem.internal.FilesystemStoreTools;
32   
33    /**
34    * A TransactionRunnable for deleting attachment archives.
35    * It uses FileDeleteTransactionRunnable so the attachment will either be deleted or fail
36    * safely, it should not hang in a halfway state.
37    *
38    * @version $Id: b5c208b29d8ca35d12096b9a29af597e296e2794 $
39    * @since 3.0M2
40    */
 
41    public class AttachmentArchiveDeleteRunnable extends StartableTransactionRunnable
42    {
43    /**
44    * @param archive the attachment archive to delete.
45    * @param fileTools tools for getting the metadata and versions of the attachment and locks.
46    * @param provider the file provider for gettign the files to delete.
47    */
 
48  1 toggle public AttachmentArchiveDeleteRunnable(final XWikiAttachmentArchive archive,
49    final FilesystemStoreTools fileTools,
50    final AttachmentFileProvider provider)
51    {
52  1 final List<File> toDelete = new ArrayList<File>();
53  1 toDelete.add(provider.getAttachmentVersioningMetaFile());
54   
55  1 final Version[] versions = archive.getVersions();
56  4 for (int i = 0; i < versions.length; i++) {
57  3 toDelete.add(provider.getAttachmentVersionContentFile(versions[i].toString()));
58    }
59   
60  1 for (File file : toDelete) {
61  4 new FileDeleteTransactionRunnable(file,
62    fileTools.getBackupFile(file),
63    fileTools.getLockForFile(file)).runIn(this);
64    }
65    }
66    }