< prev index next >

src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/DefaultStripDebugPlugin.java

Print this page
@  rev 53690 : 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
|  Reviewed-by: alanb, mchung, erikj
o  rev 53689 : 8218913: Rename --strip-debug jlink plugin
|  Reviewed-by: duke
~


   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.tools.jlink.internal.plugins;
  27 





  28 import jdk.tools.jlink.plugin.Plugin;
  29 import jdk.tools.jlink.plugin.ResourcePool;
  30 import jdk.tools.jlink.plugin.ResourcePoolBuilder;
  31 
  32 /**
  33  * Combined debug stripping plugin: Java debug attributes and native debug
  34  * symbols.
  35  *
  36  * @author Severin Gehwolf
  37  */
  38 public final class DefaultStripDebugPlugin implements Plugin {
  39 
  40     public static final String NAME = "strip-debug";





  41 
  42     private final Plugin javaStripPlugin = new StripJavaDebugAttributesPlugin();









  43 
  44     @Override
  45     public String getName() {
  46         return NAME;
  47     }
  48 
  49     @Override
  50     public String getDescription() {
  51         return PluginsResourceBundle.getDescription(NAME);
  52     }
  53 
  54     @Override
  55     public ResourcePool transform(ResourcePool in, ResourcePoolBuilder out) {












  56         return javaStripPlugin.transform(in, out);















  57     }
  58 
  59 }


   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.tools.jlink.internal.plugins;
  27 
  28 import java.util.Map;
  29 
  30 import jdk.tools.jlink.internal.PluginRepository;
  31 import jdk.tools.jlink.internal.ResourcePoolManager;
  32 import jdk.tools.jlink.internal.ResourcePoolManager.ResourcePoolImpl;
  33 import jdk.tools.jlink.plugin.Plugin;
  34 import jdk.tools.jlink.plugin.ResourcePool;
  35 import jdk.tools.jlink.plugin.ResourcePoolBuilder;
  36 
  37 /**
  38  * Combined debug stripping plugin: Java debug attributes and native debug
  39  * symbols.
  40  *
  41  * @author Severin Gehwolf
  42  */
  43 public final class DefaultStripDebugPlugin implements Plugin {
  44 
  45     public static final String NAME = "strip-debug";
  46     private static final String STRIP_NATIVE_DEBUG_PLUGIN = "strip-native-debug-symbols";
  47     private static final String OMIT_DEBUGINFO = "omit-debuginfo";
  48 
  49     private final Plugin javaStripPlugin;
  50     private final NativePluginFactory stripNativePluginFactory;
  51 
  52     public DefaultStripDebugPlugin() {
  53         this(new StripJavaDebugAttributesPlugin(),
  54              new DefaultNativePluginFactory());
  55     }
  56 
  57     public DefaultStripDebugPlugin(Plugin javaStripPlugin,
  58                                    NativePluginFactory nativeStripPluginFact) {
  59         this.javaStripPlugin = javaStripPlugin;
  60         this.stripNativePluginFactory = nativeStripPluginFact;
  61     }
  62 
  63     @Override
  64     public String getName() {
  65         return NAME;
  66     }
  67 
  68     @Override
  69     public String getDescription() {
  70         return PluginsResourceBundle.getDescription(NAME);
  71     }
  72 
  73     @Override
  74     public ResourcePool transform(ResourcePool in, ResourcePoolBuilder out) {
  75         Plugin stripNativePlugin = stripNativePluginFactory.create();
  76         if (stripNativePlugin != null) {
  77             Map<String, String> stripNativeConfig = Map.<String, String>of(
  78                                      STRIP_NATIVE_DEBUG_PLUGIN, OMIT_DEBUGINFO);
  79             stripNativePlugin.configure(stripNativeConfig);
  80             ResourcePoolManager outRes =
  81                                  new ResourcePoolManager(in.byteOrder(),
  82                                                         ((ResourcePoolImpl)in).getStringTable());
  83             ResourcePool strippedJava = javaStripPlugin.transform(in,
  84                                                                   outRes.resourcePoolBuilder());
  85             return stripNativePlugin.transform(strippedJava, out);
  86         } else {
  87             return javaStripPlugin.transform(in, out);
  88         }
  89     }
  90 
  91     public interface NativePluginFactory {
  92         Plugin create();
  93     }
  94 
  95     private static class DefaultNativePluginFactory implements NativePluginFactory {
  96 
  97         @Override
  98         public Plugin create() {
  99             return PluginRepository.getPlugin(STRIP_NATIVE_DEBUG_PLUGIN,
 100                                               ModuleLayer.boot());
 101         }
 102 
 103     }
 104 
 105 }
< prev index next >