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.
24 import static jalview.util.UrlConstants.DB_ACCESSION;
25 import static jalview.util.UrlConstants.DELIM;
26 import static jalview.util.UrlConstants.SEP;
28 import jalview.util.UrlLink;
30 import java.io.FileNotFoundException;
31 import java.io.FileReader;
32 import java.io.IOException;
33 import java.util.ArrayList;
34 import java.util.HashMap;
35 import java.util.Iterator;
36 import java.util.List;
37 import java.util.StringTokenizer;
39 import org.json.simple.JSONArray;
40 import org.json.simple.JSONObject;
41 import org.json.simple.parser.JSONParser;
42 import org.json.simple.parser.ParseException;
46 * Implements the UrlProviderI interface for a UrlProvider object which serves
47 * URLs from identifiers.org
52 public class IdentifiersUrlProvider extends UrlProviderImpl
55 private static final String LOCAL_KEY = "Local";
57 private static final String ID_ORG_KEY = "identifiers.org";
59 // map of string ids to urls
60 private HashMap<String, UrlLink> urls;
62 // list of selected urls
63 private ArrayList<String> selectedUrls;
65 public IdentifiersUrlProvider(String cachedUrlList)
67 urls = readIdentifiers(IdOrgSettings.getDownloadLocation());
68 selectedUrls = new ArrayList<String>();
69 checkSelectionMatchesUrls(cachedUrlList);
73 * Read data from an identifiers.org download file
76 * name of identifiers.org download file
77 * @return hashmap of identifiers.org data, keyed by MIRIAM id
79 private HashMap<String, UrlLink> readIdentifiers(
82 JSONParser parser = new JSONParser();
84 // identifiers.org data
85 HashMap<String, UrlLink> idData = new HashMap<String, UrlLink>();
89 FileReader reader = new FileReader(idFileName);
91 JSONObject obj = (JSONObject) parser.parse(reader);
92 if (obj.containsKey(ID_ORG_KEY))
96 else if (obj.containsKey(LOCAL_KEY))
103 .println("Unexpected key returned from identifiers jalview service");
107 JSONArray jsonarray = (JSONArray) obj.get(key);
109 // loop over each entry in JSON array and build HashMap entry
110 for (int i = 0; i < jsonarray.size(); i++)
112 JSONObject item = (JSONObject) jsonarray.get(i);
114 String url = (String) item.get("url") + "/" + DELIM + DB_ACCESSION
116 UrlLink link = new UrlLink((String) item.get("name"), url,
117 (String) item.get("prefix"));
118 idData.put((String) item.get("id"), link);
120 } catch (FileNotFoundException e)
124 } catch (IOException e)
128 } catch (ParseException e)
136 private void checkSelectionMatchesUrls(String cachedUrlList)
138 StringTokenizer st = new StringTokenizer(cachedUrlList, SEP);
139 while (st.hasMoreElements())
141 String id = st.nextToken();
145 // this is an identifiers.org MIRIAM id
146 if (urls.containsKey(id))
148 selectedUrls.add(id);
153 // reset defaultUrl in case it is no longer selected
154 setPrimaryUrl(primaryUrl);
158 public boolean setPrimaryUrl(String id)
160 if (urls.containsKey(id))
169 return urls.containsKey(id);
173 public String writeUrlsAsString(boolean selected)
177 return ""; // we don't cache unselected identifiers.org urls
180 StringBuffer links = new StringBuffer();
181 if (!selectedUrls.isEmpty())
183 for (String k : selectedUrls)
189 links.setLength(links.length() - 1);
191 return links.toString();
195 public List<String> getLinksForMenu()
197 List<String> links = new ArrayList<String>();
198 for (String key : selectedUrls)
200 links.add(urls.get(key).toStringWithTarget());
206 public List<UrlLinkDisplay> getLinksForTable()
208 return super.getLinksForTable(urls, selectedUrls, false);
212 public void setUrlData(List<UrlLinkDisplay> links)
214 selectedUrls = new ArrayList<String>();
216 Iterator<UrlLinkDisplay> it = links.iterator();
219 UrlLinkDisplay link = it.next();
221 // Handle links with MIRIAM ids only
222 if (isMiriamId(link.getId()))
224 // select/deselect links accordingly and set default url
225 if (urls.containsKey(link.getId()))
227 if (link.getIsSelected())
229 selectedUrls.add(link.getId());
231 if (link.getIsPrimary())
233 setPrimaryUrl(link.getId());
241 public String getPrimaryUrl(String seqid)
243 return super.getPrimaryUrl(seqid, urls);
247 public String getPrimaryUrlId()
253 public String getPrimaryTarget(String seqid)
259 public String choosePrimaryUrl()
265 public boolean contains(String id)
267 return (urls.containsKey(id));