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: XPATHMessages.java 468655 2006-10-28 07:12:06Z minchau $
209f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
219f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonpackage org.apache.xpath.res;
229f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
239f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport java.util.ListResourceBundle;
249f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
259f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport org.apache.xml.res.XMLMessages;
269f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
279f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson/**
289f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * A utility class for issuing XPath error messages.
299f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * @xsl.usage internal
309f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
319f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonpublic class XPATHMessages extends XMLMessages
329f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson{
339f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /** The language specific resource object for XPath messages.  */
349f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  private static ListResourceBundle XPATHBundle = new XPATHErrorResources();
359f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
369f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /** The class name of the XPath error message string table.     */
379f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  private static final String XPATH_ERROR_RESOURCES =
389f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    "org.apache.xpath.res.XPATHErrorResources";
399f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
409f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
419f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Creates a message from the specified key and replacement
429f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * arguments, localized to the given locale.
439f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
449f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param msgKey    The key for the message text.
459f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param args      The arguments to be used as replacement text
469f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *                  in the message created.
479f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
489f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return The formatted message string.
499f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
509f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public static final String createXPATHMessage(String msgKey, Object args[])  //throws Exception
519f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
529f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      // BEGIN android-changed
539f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      //     don't localize exception messages
549f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      return createXPATHMsg(XPATHBundle, msgKey, args);
559f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      // END android-changed
569f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
579f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
589f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
599f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Creates a message from the specified key and replacement
609f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * arguments, localized to the given locale.
619f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
629f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param msgKey The key for the message text.
639f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param args      The arguments to be used as replacement text
649f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *                  in the message created.
659f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
669f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return The formatted warning string.
679f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
689f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public static final String createXPATHWarning(String msgKey, Object args[])  //throws Exception
699f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
709f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      // BEGIN android-changed
719f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      //     don't localize exception messages
729f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      return createXPATHMsg(XPATHBundle, msgKey, args);
739f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      // END android-changed
749f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
759f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
769f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
779f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Creates a message from the specified key and replacement
789f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * arguments, localized to the given locale.
799f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
809f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param fResourceBundle The resource bundle to use.
819f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param msgKey  The message key to use.
829f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param args      The arguments to be used as replacement text
839f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *                  in the message created.
849f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
859f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return The formatted message string.
869f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
879f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public static final String createXPATHMsg(ListResourceBundle fResourceBundle,
889f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson                                            String msgKey, Object args[])  //throws Exception
899f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
909f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
919f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    String fmsg = null;
929f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    boolean throwex = false;
939f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    String msg = null;
949f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
959f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (msgKey != null)
969f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      msg = fResourceBundle.getString(msgKey);
979f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
989f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (msg == null)
999f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1009f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      msg = fResourceBundle.getString(XPATHErrorResources.BAD_CODE);
1019f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      throwex = true;
1029f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1039f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1049f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (args != null)
1059f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1069f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      try
1079f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      {
1089f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1099f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        // Do this to keep format from crying.
1109f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        // This is better than making a bunch of conditional
1119f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        // code all over the place.
1129f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        int n = args.length;
1139f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1149f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        for (int i = 0; i < n; i++)
1159f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        {
1169f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson          if (null == args[i])
1179f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson            args[i] = "";
1189f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        }
1199f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1209f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        fmsg = java.text.MessageFormat.format(msg, args);
1219f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      }
1229f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      catch (Exception e)
1239f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      {
1249f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        fmsg = fResourceBundle.getString(XPATHErrorResources.FORMAT_FAILED);
1259f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson        fmsg += " " + msg;
1269f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      }
1279f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1289f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    else
1299f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      fmsg = msg;
1309f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1319f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (throwex)
1329f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1339f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      throw new RuntimeException(fmsg);
1349f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1359f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1369f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    return fmsg;
1379f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
1389f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1399f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson}
140