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, HashMap<String, UrlLink> urls)
51 if (seqid.length() < MIN_SUBST_LENGTH)
55 else if (primaryUrl == null)
59 else if (!urls.containsKey(primaryUrl))
66 UrlLink urlLink = urls.get(primaryUrl);
67 String[] primaryUrls = urlLink.makeUrls(seqid, true);
68 if (primaryUrls == null || primaryUrls[0] == null
69 || primaryUrls[0].length() < MIN_SUBST_LENGTH)
75 // just take first URL made from regex
83 public List<UrlLinkDisplay> getLinksForTable()
88 protected ArrayList<UrlLinkDisplay> getLinksForTable(
89 HashMap<String, UrlLink> urls, ArrayList<String> selectedUrls,
92 ArrayList<UrlLinkDisplay> displayLinks = new ArrayList<UrlLinkDisplay>();
93 for (Entry<String, UrlLink> entry : urls.entrySet())
95 String key = entry.getKey();
96 boolean isPrimary = (key.equals(primaryUrl));
98 if (selectedUrls != null)
100 isSelected = selectedUrls.contains(key);
104 isSelected = selected;
106 displayLinks.add(new UrlLinkDisplay(key, entry.getValue(),
107 isSelected, isPrimary));
112 protected boolean isMiriamId(String id)
114 return MIRIAM_PATTERN.matcher(id).matches();
118 public boolean isUserEntry(String id)
120 return !isMiriamId(id);