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.
23 import jalview.urls.api.UrlProviderI;
24 import jalview.util.UrlLink;
26 import java.util.ArrayList;
27 import java.util.HashMap;
28 import java.util.List;
29 import java.util.Map.Entry;
30 import java.util.regex.Pattern;
33 * Leaf node of UrlProvider composite
39 public abstract class UrlProviderImpl implements UrlProviderI
41 // minimum length of substitution in url link string
42 protected static final int MIN_SUBST_LENGTH = 4;
44 private static final Pattern MIRIAM_PATTERN = Pattern
45 .compile("^MIR:\\d{8}$");
47 protected String primaryUrl;
49 protected String getPrimaryUrl(String seqid,
50 HashMap<String, UrlLink> urls)
52 if (seqid.length() < MIN_SUBST_LENGTH)
56 else if (primaryUrl == null)
60 else if (!urls.containsKey(primaryUrl))
67 UrlLink urlLink = urls.get(primaryUrl);
68 String[] primaryUrls = urlLink.makeUrls(seqid, true);
69 if (primaryUrls == null || primaryUrls[0] == null
70 || primaryUrls[0].length() < MIN_SUBST_LENGTH)
76 // just take first URL made from regex
84 public List<UrlLinkDisplay> getLinksForTable()
89 protected ArrayList<UrlLinkDisplay> getLinksForTable(
90 HashMap<String, UrlLink> urls, ArrayList<String> selectedUrls,
93 ArrayList<UrlLinkDisplay> displayLinks = new ArrayList<UrlLinkDisplay>();
94 for (Entry<String, UrlLink> entry : urls.entrySet())
96 String key = entry.getKey();
97 boolean isPrimary = (key.equals(primaryUrl));
99 if (selectedUrls != null)
101 isSelected = selectedUrls.contains(key);
105 isSelected = selected;
107 displayLinks.add(new UrlLinkDisplay(key, entry.getValue(), isSelected,
113 protected boolean isMiriamId(String id)
115 return MIRIAM_PATTERN.matcher(id).matches();
119 public boolean isUserEntry(String id)
121 return !isMiriamId(id);