1 /*
   2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 /*
   5  * Licensed to the Apache Software Foundation (ASF) under one or more
   6  * contributor license agreements.  See the NOTICE file distributed with
   7  * this work for additional information regarding copyright ownership.
   8  * The ASF licenses this file to You under the Apache License, Version 2.0
   9  * (the "License"); you may not use this file except in compliance with
  10  * the License.  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xalan.internal.res;
  22 
  23 import com.sun.org.apache.xpath.internal.res.XPATHMessages;
  24 import java.util.ResourceBundle;
  25 import jdk.xml.internal.SecuritySupport;
  26 
  27 /**
  28  * Sets things up for issuing error messages. This class is misnamed, and should
  29  * be called XalanMessages, or some such.
  30  *
  31  * @xsl.usage internal
  32  * @LastModified: Sep 2017
  33  */
  34 public class XSLMessages extends XPATHMessages {
  35 
  36     /**
  37      * The language specific resource object for Xalan messages.
  38      */
  39     private static ResourceBundle XSLTBundle = null;
  40     /**
  41      * The class name of the Xalan error message string table.
  42      */
  43     private static final String XSLT_ERROR_RESOURCES =
  44             "com.sun.org.apache.xalan.internal.res.XSLTErrorResources";
  45 
  46     /**
  47      * Creates a message from the specified key and replacement arguments,
  48      * localized to the given locale.
  49      *
  50      * @param msgKey The key for the message text.
  51      * @param args The arguments to be used as replacement text in the message
  52      * created.
  53      *
  54      * @return The formatted message string.
  55      */
  56     public static String createMessage(String msgKey, Object args[]) //throws Exception
  57     {
  58         if (XSLTBundle == null) {
  59             XSLTBundle = SecuritySupport.getResourceBundle(XSLT_ERROR_RESOURCES);
  60         }
  61 
  62         if (XSLTBundle != null) {
  63             return createMsg(XSLTBundle, msgKey, args);
  64         } else {
  65             return "Could not load any resource bundles.";
  66         }
  67     }
  68 
  69     /**
  70      * Creates a message from the specified key and replacement arguments,
  71      * localized to the given locale.
  72      *
  73      * @param msgKey The key for the message text.
  74      * @param args The arguments to be used as replacement text in the message
  75      * created.
  76      *
  77      * @return The formatted warning string.
  78      */
  79     public static String createWarning(String msgKey, Object args[]) //throws Exception
  80     {
  81         if (XSLTBundle == null) {
  82             XSLTBundle = SecuritySupport.getResourceBundle(XSLT_ERROR_RESOURCES);
  83         }
  84 
  85         if (XSLTBundle != null) {
  86             return createMsg(XSLTBundle, msgKey, args);
  87         } else {
  88             return "Could not load any resource bundles.";
  89         }
  90     }
  91 }