2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
22 package jalview.fts.service.pdb;
24 import jalview.fts.api.FTSDataColumnI;
25 import jalview.fts.api.FTSRestClientI;
26 import jalview.fts.core.FTSRestRequest;
27 import jalview.fts.core.FTSRestResponse;
28 import jalview.fts.core.GFTSPanel;
29 import jalview.gui.SequenceFetcher;
30 import jalview.util.MessageManager;
32 import java.util.HashMap;
33 import java.util.HashSet;
36 @SuppressWarnings("serial")
37 public class PDBFTSPanel extends GFTSPanel
39 private static String defaultFTSFrameTitle = MessageManager
40 .getString("label.pdb_sequence_fetcher");
42 private static Map<String, Integer> tempUserPrefs = new HashMap<String, Integer>();
44 private static final String PDB_FTS_CACHE_KEY = "CACHE.PDB_FTS";
46 public PDBFTSPanel(SequenceFetcher fetcher)
49 pageLimit = PDBFTSRestClient.getInstance().getDefaultResponsePageSize();
50 this.seqFetcher = fetcher;
51 this.progressIndicator = (fetcher == null) ? null
52 : fetcher.getProgressIndicator();
56 public void searchAction(boolean isFreshSearch)
58 mainFrame.requestFocusInWindow();
69 boolean allowEmptySequence = false;
70 if (getTypedText().length() > 0)
72 setSearchInProgress(true);
73 long startTime = System.currentTimeMillis();
75 String searchTarget = ((FTSDataColumnI) cmb_searchTarget
76 .getSelectedItem()).getCode();
77 wantedFields = PDBFTSRestClient.getInstance()
78 .getAllDefaultDisplayedFTSDataColumns();
79 String searchTerm = decodeSearchTerm(getTypedText(),
82 FTSRestRequest request = new FTSRestRequest();
83 request.setAllowEmptySeq(allowEmptySequence);
84 request.setResponseSize(100);
85 request.setFieldToSearchBy("(" + searchTarget + ":");
86 request.setSearchTerm(searchTerm + ")");
87 request.setOffSet(offSet);
88 request.setWantedFields(wantedFields);
89 FTSRestClientI pdbRestClient = PDBFTSRestClient.getInstance();
90 FTSRestResponse resultList;
93 resultList = pdbRestClient.executeRequest(request);
96 setErrorMessage(e.getMessage());
98 setSearchInProgress(false);
102 if (resultList.getSearchSummary() != null
103 && resultList.getSearchSummary().size() > 0)
105 getResultTable().setModel(FTSRestResponse.getTableModel(request,
106 resultList.getSearchSummary()));
107 FTSRestResponse.configureTableColumn(getResultTable(),
108 wantedFields, tempUserPrefs);
109 getResultTable().setVisible(true);
112 long endTime = System.currentTimeMillis();
113 totalResultSetCount = resultList.getNumberOfItemsFound();
114 resultSetCount = resultList.getSearchSummary() == null ? 0
115 : resultList.getSearchSummary().size();
116 String result = (resultSetCount > 0)
117 ? MessageManager.getString("label.results")
118 : MessageManager.getString("label.result");
120 if (isPaginationEnabled() && resultSetCount > 0)
122 updateSearchFrameTitle(defaultFTSFrameTitle + " - " + result
124 + totalNumberformatter.format((Number) (offSet + 1))
126 + totalNumberformatter
127 .format((Number) (offSet + resultSetCount))
129 + totalNumberformatter
130 .format((Number) totalResultSetCount)
131 + " " + " (" + (endTime - startTime) + " milli secs)");
135 updateSearchFrameTitle(defaultFTSFrameTitle + " - "
136 + resultSetCount + " " + result + " ("
137 + (endTime - startTime) + " milli secs)");
140 setSearchInProgress(false);
141 refreshPaginatorState();
142 updateSummaryTableSelections();
144 txt_search.updateCache();
149 public static String decodeSearchTerm(String enteredText,
152 String foundSearchTerms = enteredText;
153 StringBuilder foundSearchTermsBuilder = new StringBuilder();
154 if (enteredText.contains(";"))
156 String[] searchTerms = enteredText.split(";");
157 for (String searchTerm : searchTerms)
159 if (searchTerm.contains(":"))
161 foundSearchTermsBuilder.append(targetField).append(":")
162 .append(searchTerm.split(":")[0]).append(" OR ");
166 foundSearchTermsBuilder.append(targetField).append(":")
167 .append(searchTerm).append(" OR ");
170 int endIndex = foundSearchTermsBuilder.lastIndexOf(" OR ");
171 foundSearchTerms = foundSearchTermsBuilder.toString();
172 if (foundSearchTerms.contains(" OR "))
174 foundSearchTerms = foundSearchTerms
175 .substring(targetField.length() + 1, endIndex);
178 else if (enteredText.contains(":"))
180 foundSearchTerms = foundSearchTerms.split(":")[0];
182 return foundSearchTerms;
186 public void okAction()
188 // mainFrame.dispose();
189 disableActionButtons();
190 StringBuilder selectedIds = new StringBuilder();
191 HashSet<String> selectedIdsSet = new HashSet<String>();
192 int primaryKeyColIndex = 0;
195 primaryKeyColIndex = getFTSRestClient()
196 .getPrimaryKeyColumIndex(wantedFields, false);
197 } catch (Exception e)
201 int[] selectedRows = getResultTable().getSelectedRows();
202 String searchTerm = getTypedText();
203 for (int summaryRow : selectedRows)
205 String idStr = getResultTable()
206 .getValueAt(summaryRow, primaryKeyColIndex).toString();
207 selectedIdsSet.add(getPDBIdwithSpecifiedChain(idStr, searchTerm));
210 for (String idStr : paginatorCart)
212 selectedIdsSet.add(getPDBIdwithSpecifiedChain(idStr, searchTerm));
215 for (String selectedId : selectedIdsSet)
217 selectedIds.append(selectedId).append(";");
220 String ids = selectedIds.toString();
221 // System.out.println(">>>>>>>>>>>>>>>> selected Ids: " + ids);
222 seqFetcher.getTextArea().setText(ids);
223 Thread worker = new Thread(seqFetcher);
225 delayAndEnableActionButtons();
228 public static String getPDBIdwithSpecifiedChain(String pdbId,
231 String pdbIdWithChainCode = "";
232 if (searchTerm.contains(";"))
234 String[] foundTerms = searchTerm.split(";");
235 for (String foundTerm : foundTerms)
237 if (foundTerm.contains(pdbId))
239 pdbIdWithChainCode = foundTerm;
243 else if (searchTerm.contains(pdbId))
245 pdbIdWithChainCode = searchTerm;
249 pdbIdWithChainCode = pdbId;
251 return pdbIdWithChainCode;
255 public FTSRestClientI getFTSRestClient()
257 return PDBFTSRestClient.getInstance();
261 public String getFTSFrameTitle()
263 return defaultFTSFrameTitle;
267 public boolean isPaginationEnabled()
273 public Map<String, Integer> getTempUserPrefs()
275 return tempUserPrefs;
279 public String getCacheKey()
281 return PDB_FTS_CACHE_KEY;