Clover icon

Coverage Report

  1. Project Clover database Wed Nov 13 2024 18:27:33 GMT
  2. Package jalview.io

File BackupFilesPresetEntry.java

 

Coverage histogram

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

Code metrics

14
48
6
1
194
137
14
0.29
8
6
2.33

Classes

Class Line # Actions
BackupFilesPresetEntry 31 48 14
0.911764791.2%
 

Contributing tests

This file is covered by 25 tests. .

Source view

1    /*
2    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3    * Copyright (C) $$Year-Rel$$ The Jalview Authors
4    *
5    * This file is part of Jalview.
6    *
7    * Jalview is free software: you can redistribute it and/or
8    * modify it under the terms of the GNU General Public License
9    * as published by the Free Software Foundation, either version 3
10    * of the License, or (at your option) any later version.
11    *
12    * Jalview is distributed in the hope that it will be useful, but
13    * WITHOUT ANY WARRANTY; without even the implied warranty
14    * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15    * PURPOSE. See the GNU General Public License for more details.
16    *
17    * You should have received a copy of the GNU General Public License
18    * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19    * The Jalview Authors are detailed in the 'AUTHORS' file.
20    */
21    package jalview.io;
22   
23    import java.util.HashMap;
24    import java.util.Map;
25    import java.util.StringTokenizer;
26   
27    import jalview.bin.Cache;
28    import jalview.bin.Console;
29    import jalview.util.MessageManager;
30   
 
31    public class BackupFilesPresetEntry
32    {
33   
34    public String suffix;
35   
36    public static final int DIGITSMIN = 1;
37   
38    public static final int DIGITSMAX = 6;
39   
40    public int digits;
41   
42    public boolean reverse;
43   
44    public boolean keepAll;
45   
46    public static final int ROLLMAXMIN = 1;
47   
48    public static final int ROLLMAXMAX = 999;
49   
50    public int rollMax;
51   
52    public boolean confirmDelete;
53   
54    public static final String SAVEDCONFIG = BackupFiles.NS + "_SAVED";
55   
56    public static final String CUSTOMCONFIG = BackupFiles.NS + "_CUSTOM";
57   
58    private static final String stringDelim = "\t";
59   
60    public static final int BACKUPFILESSCHEMECUSTOM = 0;
61   
62    public static final int BACKUPFILESSCHEMEDEFAULT = 1;
63   
 
64  259 toggle public BackupFilesPresetEntry(String suffix, int digits, boolean reverse,
65    boolean keepAll, int rollMax, boolean confirmDelete)
66    {
67  259 this.suffix = suffix == null ? "" : suffix;
68  259 this.digits = digits < DIGITSMIN ? DIGITSMIN
69  234 : (digits > DIGITSMAX ? DIGITSMAX : digits);
70  259 this.reverse = reverse;
71  259 this.keepAll = keepAll;
72  259 this.rollMax = rollMax < ROLLMAXMIN ? ROLLMAXMIN
73  234 : (rollMax > ROLLMAXMAX ? ROLLMAXMAX : rollMax);
74  259 this.confirmDelete = confirmDelete;
75    }
76   
 
77  0 toggle public boolean equals(BackupFilesPresetEntry compare)
78    {
79  0 return suffix.equals(compare.suffix) && digits == compare.digits
80    && reverse == compare.reverse && keepAll == compare.keepAll
81    && rollMax == compare.rollMax
82    && confirmDelete == compare.confirmDelete;
83    }
84   
 
85  183 toggle @Override
86    public String toString()
87    {
88  183 StringBuilder sb = new StringBuilder();
89  183 sb.append(suffix);
90  183 sb.append(stringDelim);
91  183 sb.append(digits);
92  183 sb.append(stringDelim);
93  183 sb.append(reverse);
94  183 sb.append(stringDelim);
95  183 sb.append(keepAll);
96  183 sb.append(stringDelim);
97  183 sb.append(rollMax);
98  183 sb.append(stringDelim);
99  183 sb.append(confirmDelete);
100  183 return sb.toString();
101    }
102   
 
103  279 toggle public static BackupFilesPresetEntry createBackupFilesPresetEntry(
104    String line)
105    {
106  279 if (line == null)
107    {
108  150 return null;
109    }
110  129 StringTokenizer st = new StringTokenizer(line, stringDelim);
111  129 String suffix = null;
112  129 int digits = 0;
113  129 boolean reverse = false;
114  129 boolean keepAll = false;
115  129 int rollMax = 0;
116  129 boolean confirmDelete = false;
117   
118  129 try
119    {
120  129 suffix = st.nextToken();
121  129 digits = Integer.valueOf(st.nextToken());
122  129 reverse = Boolean.valueOf(st.nextToken());
123  129 keepAll = Boolean.valueOf(st.nextToken());
124  129 rollMax = Integer.valueOf(st.nextToken());
125  129 confirmDelete = Boolean.valueOf(st.nextToken());
126    } catch (Exception e)
127    {
128  0 Console.error("Error parsing backupfiles scheme '" + line + "'");
129    }
130   
131  129 return new BackupFilesPresetEntry(suffix, digits, reverse, keepAll,
132    rollMax, confirmDelete);
133    }
134   
 
135  279 toggle public static BackupFilesPresetEntry getSavedBackupEntry()
136    {
137  279 String savedPresetString = Cache
138    .getDefault(BackupFilesPresetEntry.SAVEDCONFIG, null);
139  279 BackupFilesPresetEntry savedPreset = BackupFilesPresetEntry
140    .createBackupFilesPresetEntry(savedPresetString);
141  279 if (savedPreset == null)
142    {
143  150 savedPreset = backupfilesPresetEntriesValues
144    .get(BACKUPFILESSCHEMEDEFAULT);
145    }
146  279 return savedPreset;
147    }
148   
149    public static final IntKeyStringValueEntry[] backupfilesPresetEntries = {
150    new IntKeyStringValueEntry(BACKUPFILESSCHEMEDEFAULT,
151    MessageManager.getString("label.default")),
152    new IntKeyStringValueEntry(2,
153    MessageManager.getString("label.single_file")),
154    new IntKeyStringValueEntry(3,
155    MessageManager.getString("label.keep_all_versions")),
156    new IntKeyStringValueEntry(4,
157    MessageManager.getString("label.rolled_backups")),
158    // ...
159    // IMPORTANT, keep "Custom" entry with key 0 (even though it appears last)
160    new IntKeyStringValueEntry(BACKUPFILESSCHEMECUSTOM,
161    MessageManager.getString("label.custom")) };
162   
163    public static final String[] backupfilesPresetEntryDescriptions = {
164    MessageManager.getString("label.default_description"),
165    MessageManager.getString("label.single_file_description"),
166    MessageManager.getString("label.keep_all_versions_description"),
167    MessageManager.getString("label.rolled_backups_description"),
168    MessageManager.getString("label.custom_description") };
169   
170    public static final Map<Integer, BackupFilesPresetEntry> backupfilesPresetEntriesValues = new HashMap<Integer, BackupFilesPresetEntry>()
171    {
172    /**
173    *
174    */
175    private static final long serialVersionUID = 125L;
176   
 
177  25 toggle {
178  25 put(1, new BackupFilesPresetEntry(
179    ".bak" + BackupFiles.NUM_PLACEHOLDER, 3, false, false, 3,
180    false));
181  25 put(2, new BackupFilesPresetEntry("~", 1, false, false, 1, false));
182  25 put(3, new BackupFilesPresetEntry(".v" + BackupFiles.NUM_PLACEHOLDER,
183    3, false, true, 10, true));
184  25 put(4, new BackupFilesPresetEntry(
185    "_bak." + BackupFiles.NUM_PLACEHOLDER, 1, true, false, 9,
186    false));
187   
188    // This gets replaced by GPreferences
189  25 put(BACKUPFILESSCHEMECUSTOM,
190    new BackupFilesPresetEntry("", 0, false, false, 0, false));
191    }
192    };
193   
194    }