mbien commented on code in PR #5637:
URL: https://github.com/apache/netbeans/pull/5637#discussion_r1168015691


##########
java/java.j2seplatform/src/org/netbeans/modules/java/j2seplatform/JDKDetectorUtils.java:
##########
@@ -0,0 +1,81 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.netbeans.modules.java.j2seplatform;
+
+import java.io.IOException;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.List;
+import java.util.Set;
+import java.util.function.Function;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+import org.netbeans.api.java.platform.JavaPlatform;
+import org.netbeans.api.java.platform.JavaPlatformManager;
+import 
org.netbeans.modules.java.j2seplatform.platformdefinition.J2SEPlatformImpl;
+import org.netbeans.spi.java.platform.JavaPlatformFactory;
+import org.openide.filesystems.FileUtil;
+import org.openide.util.Lookup;
+
+/**
+ *
+ * @author mbien
+ */
+class JDKDetectorUtils {
+
+    /**
+     * Registers new JDKs if they aren't registered yet.
+     * @param jdks List of paths to the JDKs.
+     * @param namer Converts a Path to the display name of the JDK.
+     */
+    static void registerJDKs(List<Path> jdks, Function<Path, String> namer) {
+
+        List<JavaPlatform> platforms = 
Stream.of(JavaPlatformManager.getDefault().getInstalledPlatforms())
+                                             .filter(JavaPlatform::isValid)
+                                             .collect(Collectors.toList());
+
+        Set<String> registeredJDKNames = platforms.stream()
+                                                  
.map(JavaPlatform::getDisplayName)
+                                                  .collect(Collectors.toSet());
+
+        Set<Path> registeredPaths = platforms.stream()
+                                             .flatMap(p -> 
p.getInstallFolders().stream())
+                                             .map(f -> Paths.get(f.getPath()))
+                                             .collect(Collectors.toSet());
+
+        for (JavaPlatformFactory.Provider provider : 
Lookup.getDefault().lookupAll(JavaPlatformFactory.Provider.class)) {
+
+            JavaPlatformFactory platformFactory = 
provider.forType(J2SEPlatformImpl.PLATFORM_J2SE);
+            if (platformFactory != null) {
+                for (Path jdk : jdks) {
+                    try {
+                        String jdkName = namer.apply(jdk);
+                        // don't register if something with the same name or 
same path exists

Review Comment:
   @neilcsmith-net i tested this:
   ```java
                           String jdkName = null;
                           FileObject fo = FileUtil.toFileObject(jdk);
                           if (fo != null) {
                               Object value = 
fo.getAttribute("J2SEPlatform.displayName"); // NOI18N
                               if (value instanceof String) {
                                   jdkName = (String) value;
                               }
                           }
                           if (jdkName == null) {
                               jdkName = namer.apply(jdk);
                           }
   ```
   and I believe this is worse since it can lead to very weird behavior. If you 
add a JDK with a custom name, then remove it again, it will be added with the 
same name again on next start which looks for the user as if removal didn't 
work.
   
   Having automated JDK detection use a fixed naming pattern is better IMO, 
since it automatically communicates where this is from.
   
   @lkishalmi thanks for checking!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to