19f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson/*
29f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * Licensed to the Apache Software Foundation (ASF) under one
39f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * or more contributor license agreements. See the NOTICE file
49f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * distributed with this work for additional information
59f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * regarding copyright ownership. The ASF licenses this file
69f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * to you under the Apache License, Version 2.0 (the  "License");
79f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * you may not use this file except in compliance with the License.
89f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * You may obtain a copy of the License at
99f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson *
109f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson *     http://www.apache.org/licenses/LICENSE-2.0
119f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson *
129f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * Unless required by applicable law or agreed to in writing, software
139f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * distributed under the License is distributed on an "AS IS" BASIS,
149f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
159f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * See the License for the specific language governing permissions and
169f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * limitations under the License.
179f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
189f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson/*
199f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * $Id: XMLMessages.java 468653 2006-10-28 07:07:05Z minchau $
209f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
219f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonpackage org.apache.xml.res;
229f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
239f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport java.util.ListResourceBundle;
249f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport java.util.Locale;
259f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport java.util.MissingResourceException;
269f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport java.util.ResourceBundle;
279f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
289f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson/**
299f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * A utility class for issuing XML error messages.
309f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * @xsl.usage internal
319f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
329f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonpublic class XMLMessages
339f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson{
349f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
359f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /** The local object to use.  */
369f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  protected Locale fLocale = Locale.getDefault();
379f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
389f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /** The language specific resource object for XML messages.  */
399f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  private static ListResourceBundle XMLBundle = new XMLErrorResources(); // android-changed
409f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
419f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /** String to use if a bad message code is used. */
429f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  protected static final String BAD_CODE = "BAD_CODE";
439f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
449f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /** String to use if the message format operation failed.  */
459f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  protected static final String FORMAT_FAILED = "FORMAT_FAILED";
469f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
479f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
489f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Set the Locale object to use.
499f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
509f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param locale non-null reference to Locale object.
519f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
529f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   public void setLocale(Locale locale)
539f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
549f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    fLocale = locale;
559f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
569f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
579f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
589f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Get the Locale object that is being used.
599f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
609f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return non-null reference to Locale object.
619f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
629f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public Locale getLocale()
639f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
649f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    return fLocale;
659f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
669f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
679f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
689f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Creates a message from the specified key and replacement
699f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * arguments, localized to the given locale.
709f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
719f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param msgKey    The key for the message text.
729f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param args      The arguments to be used as replacement text
739f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *                  in the message created.
749f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
759f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return The formatted message string.
769f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
779f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public static final String createXMLMessage(String msgKey, Object args[])
789f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
799f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      // BEGIN android-changed
809f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      //     don't localize exceptions
819f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      return createMsg(XMLBundle, msgKey, args);
829f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      // END android-changed
839f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
849f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
859f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
869f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Creates a message from the specified key and replacement
879f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * arguments, localized to the given locale.
889f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
899f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param fResourceBundle The resource bundle to use.
909f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param msgKey  The message key to use.
919f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param args      The arguments to be used as replacement text
929f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *                  in the message created.
939f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
949f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return The formatted message string.
959f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
969f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public static final String createMsg(ListResourceBundle fResourceBundle,
979f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson	String msgKey, Object args[])  //throws Exception
989f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
999f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1009f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    String fmsg = null;
1019f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    boolean throwex = false;
1029f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    String msg = null;
1039f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1049f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (msgKey != null)
1059f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      msg = fResourceBundle.getString(msgKey);
1069f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1079f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (msg == null)
1089f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1099f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      msg = fResourceBundle.getString(BAD_CODE);
1109f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      throwex = true;
1119f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1129f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1139f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (args != null)
1149f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1159f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      try
1169f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      {
1179f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1189f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        // Do this to keep format from crying.
1199f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        // This is better than making a bunch of conditional
1209f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        // code all over the place.
1219f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        int n = args.length;
1229f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1239f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        for (int i = 0; i < n; i++)
1249f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        {
1259f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson          if (null == args[i])
1269f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson            args[i] = "";
1279f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        }
1289f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1299f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        fmsg = java.text.MessageFormat.format(msg, args);
1309f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      }
1319f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      catch (Exception e)
1329f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      {
1339f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        fmsg = fResourceBundle.getString(FORMAT_FAILED);
1349f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        fmsg += " " + msg;
1359f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      }
1369f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1379f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    else
1389f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      fmsg = msg;
1399f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1409f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (throwex)
1419f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1429f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      throw new RuntimeException(fmsg);
1439f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1449f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1459f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    return fmsg;
1469f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
1479f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson}
148