@Nullable public String getLocalPath(final String url) { synchronized (myMonitor) { final String rootUrl = getUrlRootForUrl(url); if (rootUrl == null) { return null; } final RootUrlInfo parentInfo = myMapping.byUrl(rootUrl); if (parentInfo == null) { return null; } return fileByUrl(parentInfo.getIoFile().getAbsolutePath(), rootUrl, url).getAbsolutePath(); } }
@Nullable public RootUrlInfo getWcRootForUrl(final String url) { synchronized (myMonitor) { final String rootUrl = getUrlRootForUrl(url); if (rootUrl == null) { return null; } final RootUrlInfo result = myMapping.byUrl(rootUrl); if (result == null) { LOG.info("Inconsistent maps for url:" + url + " found root url: " + rootUrl); return null; } return result; } }