/* (non-Javadoc) * @see org.opennms.features.pluginmgr.PluginManager#getPluginsManifest(java.lang.String) */ @Override public synchronized ProductSpecList getPluginsManifest(String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); if (!pluginModelJaxb.getKarafManifestEntryMap().containsKey(karafInstance)) { return new ProductSpecList(); // return empty list if no entry found } ProductSpecList pluginManifest = pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance).getPluginManifest(); if (pluginManifest == null) return new ProductSpecList(); // return empty list if no entry found return pluginManifest; }
@Override public synchronized void setRemoteIsAccessible(Boolean remoteIsAccessible, String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); SortedMap<String, KarafManifestEntryJaxb> karafInstances = getKarafInstances(); if (!karafInstances.containsKey(karafInstance)) throw new RuntimeException("system does not know karafInstance=" + karafInstance); if (!pluginModelJaxb.getKarafManifestEntryMap().containsKey(karafInstance)) { pluginModelJaxb.getKarafManifestEntryMap().put(karafInstance, new KarafManifestEntryJaxb()); } KarafManifestEntryJaxb karafManifestEntryJaxb = pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance); karafManifestEntryJaxb.setRemoteIsAccessible(remoteIsAccessible); persist(); }
/* (non-Javadoc) * @see org.opennms.features.pluginmgr.PluginManager#addPluginToManifest(java.lang.String, java.lang.String) */ @Override public synchronized void addPluginToManifest(String selectedProductId, String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); if (selectedProductId == null) throw new RuntimeException("selectedProductId cannot be null"); SortedMap<String, KarafManifestEntryJaxb> karafInstances = getKarafInstances(); if (!karafInstances.containsKey(karafInstance)) throw new RuntimeException("system does not know karafInstance=" + karafInstance); ProductMetadata productMetadata = null; for (ProductMetadata pMetadata : pluginModelJaxb.getAvailablePlugins().getProductSpecList()) { if (selectedProductId.equals(pMetadata.getProductId())) { productMetadata = pMetadata; break; } } if (productMetadata == null) throw new RuntimeException("cannot install unknown available productId=" + selectedProductId); if (productMetadata.getFeatureRepository() == null) throw new RuntimeException( "feature repository cannot be null for productId=" + selectedProductId); if (!pluginModelJaxb.getKarafManifestEntryMap().containsKey(karafInstance)) { pluginModelJaxb.getKarafManifestEntryMap().put(karafInstance, new KarafManifestEntryJaxb()); } ProductSpecList karafInstancePluginManifest = pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance).getPluginManifest(); // remove any product metadata with duplicate productId's from the list String productMetadataId = productMetadata.getProductId(); ArrayList<ProductMetadata> searchlist = new ArrayList<ProductMetadata>(karafInstancePluginManifest.getProductSpecList()); for (ProductMetadata searchProductMetadata : searchlist) { if (productMetadataId.equals(searchProductMetadata.getProductId())) { karafInstancePluginManifest.getProductSpecList().remove(searchProductMetadata); } } karafInstancePluginManifest.getProductSpecList().add(productMetadata); persist(); }
@Override public synchronized Boolean getRemoteIsAccessible(String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); KarafManifestEntryJaxb karafManifestEntry = pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance); if (karafManifestEntry == null) return true; return karafManifestEntry.getRemoteIsAccessible(); }
/* (non-Javadoc) * @see org.opennms.features.pluginmgr.PluginManager#getManifestSystemId(java.lang.String) */ @Override public synchronized String getManifestSystemId(String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); KarafManifestEntryJaxb karafManifestEntry = pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance); if (karafManifestEntry == null) return null; return karafManifestEntry.getManifestSystemId(); }
@Override public synchronized void deleteKarafInstance(String karafInstance) { if (karafInstance == null || "".equals(karafInstance)) throw new RuntimeException("karafInstance cannot be null or empty"); if ("localhost".equals(karafInstance)) throw new RuntimeException("cannot delete localhost karaf instance from plugin manager"); pluginModelJaxb.getKarafManifestEntryMap().remove(karafInstance); pluginModelJaxb.getKarafDataMap().remove(karafInstance); persist(); }
/* (non-Javadoc) * @see org.opennms.features.pluginmgr.PluginManager#removePluginFromManifest(java.lang.String, java.lang.String) */ @Override public synchronized void removePluginFromManifest( String selectedProductId, String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); if (selectedProductId == null) throw new RuntimeException("selectedProductId cannot be null"); if (pluginModelJaxb.getKarafManifestEntryMap().containsKey(karafInstance)) { List<ProductMetadata> productSpecList = pluginModelJaxb .getKarafManifestEntryMap() .get(karafInstance) .getPluginManifest() .getProductSpecList(); ProductMetadata productMetadata = null; for (ProductMetadata pMetadata : productSpecList) { if (selectedProductId.equals(pMetadata.getProductId())) { productMetadata = pMetadata; break; } } if (productMetadata != null) productSpecList.remove(productMetadata); persist(); } }
/* (non-Javadoc) * @see org.opennms.features.pluginmgr.PluginManager#addUserDefinedPluginToManifest(org.opennms.karaf.licencemgr.metadata.jaxb.ProductMetadata, java.lang.String) */ @Override public synchronized void addUserDefinedPluginToManifest( ProductMetadata newProductMetadata, String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); if (newProductMetadata == null) throw new RuntimeException("newProductMetadata cannot be null"); if (newProductMetadata.getProductId() == null || "".equals(newProductMetadata.getProductId())) throw new RuntimeException("newProductMetadata productId cannot be null or empty string"); if (newProductMetadata.getFeatureRepository() == null || "".equals(newProductMetadata.getFeatureRepository())) throw new RuntimeException( "newProductMetadata featureRepository cannot be null or empty string"); SortedMap<String, KarafManifestEntryJaxb> karafInstances = getKarafInstances(); if (!karafInstances.containsKey(karafInstance)) throw new RuntimeException("system does not know karafInstance=" + karafInstance); if (!pluginModelJaxb.getKarafManifestEntryMap().containsKey(karafInstance)) { pluginModelJaxb.getKarafManifestEntryMap().put(karafInstance, new KarafManifestEntryJaxb()); } ProductSpecList karafInstancePluginManifest = pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance).getPluginManifest(); // remove any product metadata with duplicate productId's from the list String newProductMetadataId = newProductMetadata.getProductId(); ArrayList<ProductMetadata> searchlist = new ArrayList<ProductMetadata>(karafInstancePluginManifest.getProductSpecList()); for (ProductMetadata searchProductMetadata : searchlist) { if (newProductMetadataId.equals(searchProductMetadata.getProductId())) { karafInstancePluginManifest.getProductSpecList().remove(searchProductMetadata); } } karafInstancePluginManifest.getProductSpecList().add(newProductMetadata); persist(); }
@Override public synchronized void addNewKarafInstance(KarafManifestEntryJaxb karafManifestEntryJaxb) { if (karafManifestEntryJaxb == null) throw new RuntimeException( "cannot add new karaf instance - karafManifestEntryJaxb cannot be null"); String karafInstance = karafManifestEntryJaxb.getKarafInstanceName(); if (karafInstance == null || "".equals(karafInstance)) throw new RuntimeException( "cannot add new karaf instance - karafInstanceName in karafManifestEntryJaxb cannot be null or empty"); if ("localhost".equals(karafInstance)) throw new RuntimeException("cannot add localhost karaf instance to plugin manager"); if (pluginModelJaxb.getKarafManifestEntryMap().containsKey(karafInstance)) { throw new RuntimeException( "cannot add new karaf instance - '" + karafInstance + "' is already defined in plugin manager"); } pluginModelJaxb.getKarafManifestEntryMap().put(karafInstance, karafManifestEntryJaxb); persist(); }
/* (non-Javadoc) * @see org.opennms.features.pluginmgr.PluginManager#getKarafInstances() */ @Override public synchronized SortedMap<String, KarafManifestEntryJaxb> getKarafInstances() { SortedMap<String, KarafManifestEntryJaxb> karafInstances = pluginModelJaxb.getKarafManifestEntryMap(); // creates a localhost entry if doesn't exist in karafInstances if (!karafInstances.containsKey(localKarafInstanceName)) { KarafManifestEntryJaxb localhostManifest = new KarafManifestEntryJaxb(); localhostManifest.setKarafInstanceName(localKarafInstanceName); localhostManifest.setKarafInstanceUserName(localKarafInstanceUserName); localhostManifest.setKarafInstancePassword(localKarafInstancePassword); localhostManifest.setKarafInstanceUrl(localKarafInstanceUrl); localhostManifest.setRemoteIsAccessible(localRemoteIsAccessible); localhostManifest.setAllowUpdateMessages(localAllowUpdateMessages); karafInstances.put(localKarafInstanceName, localhostManifest); persist(); } return karafInstances; }
/* (non-Javadoc) * @see org.opennms.features.pluginmgr.PluginManager#installPlugin(java.lang.String, java.lang.String) */ @Override public synchronized void installPlugin(String selectedProductId, String karafInstance) { if (karafInstance == null) throw new RuntimeException("karafInstance cannot be null"); if (selectedProductId == null) throw new RuntimeException("selectedProductId cannot be null"); SortedMap<String, KarafManifestEntryJaxb> karafInstances = getKarafInstances(); if (!karafInstances.containsKey(karafInstance)) throw new RuntimeException("system does not know karafInstance=" + karafInstance); KarafManifestEntryJaxb karafManifest = karafInstances.get(karafInstance); String karafInstanceUrl = karafManifest.getKarafInstanceUrl(); // only update remote if accessible if (karafManifest.getRemoteIsAccessible() == null || !karafManifest.getRemoteIsAccessible()) { throw new RuntimeException("karafInstance=" + karafInstance + " is not accessable remotely"); } ProductMetadata productMetadata = null; // try manifest plugins list first if (pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance) != null) { ProductSpecList karafInstancePluginManifest = pluginModelJaxb.getKarafManifestEntryMap().get(karafInstance).getPluginManifest(); if (karafInstancePluginManifest != null) { for (ProductMetadata pMetadata : karafInstancePluginManifest.getProductSpecList()) { if (selectedProductId.equals(pMetadata.getProductId())) { productMetadata = pMetadata; break; } } } } // then try available plugins if (productMetadata == null) { for (ProductMetadata pMetadata : pluginModelJaxb.getAvailablePlugins().getProductSpecList()) { if (selectedProductId.equals(pMetadata.getProductId())) { productMetadata = pMetadata; break; } } } if (productMetadata == null) throw new RuntimeException("cannot install unknown available productId=" + selectedProductId); if (productMetadata.getFeatureRepository() == null) throw new RuntimeException( "feature repository cannot be null for productId=" + selectedProductId); FeaturesServiceClientRestJerseyImpl featuresServiceClient = new FeaturesServiceClientRestJerseyImpl(); featuresServiceClient.setBaseUrl(karafInstanceUrl); featuresServiceClient.setUserName(karafManifest.getKarafInstanceUserName()); featuresServiceClient.setPassword(karafManifest.getKarafInstancePassword()); featuresServiceClient.setBasePath(FEATURE_MGR_BASE_PATH); try { // add feature repository featuresServiceClient.featuresAddRepository(productMetadata.getFeatureRepository()); // a feature id looks like name/version. String version = null; String name = null; if (selectedProductId.contains("/")) { int i = selectedProductId.indexOf('/'); version = selectedProductId.substring(i + 1); name = selectedProductId.substring(0, selectedProductId.indexOf('/')); } // add feature featuresServiceClient.featuresInstall(name, version); refreshKarafEntry(karafInstance); } catch (Exception e) { throw new RuntimeException( "problem installing product " + selectedProductId + " for Karaf Instance=" + karafInstance + " karafInstanceUrl=" + karafInstanceUrl + ": ", e); } }