Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4107980

DataHandler shouldn't cache default command map

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.0.1fcs
    • alpha
    • other-libs
    • None
    • 1.0.1fcs
    • generic
    • solaris_2.6
    • Verified

      DataHandler should not cache a default command map in currentCommandMap.
      The reason is that if the client has never called
      DataHandler.setCommandMap, or has called setCommandMap(null), then there's
      no semantically defined point at which a default commmand map is cached,
      and hence calling CommandMap.setDefaultCommandMap will no longer affect a
      particular DataHandler instance.

      Suggested fix: Instead of calling private synchronized void
      initDefaultCommandMap(), and then access currentCommandMap, use this
      whereever a CommandMap is needed:

      private synchronized CommandMap getCommandMap() {
      if (currentCommandMap != null)
      return currentCommandMap;
      else
      return CommandMap.getDefaultCommandMap();

      }

      There's really no performance penalty for not caching it, since if no
      changes have been made, it's been cached by CommandMap anyway. The issue is ensuring consistancy of behavior between DataHandler instances when the default commmand map has been swapped.

            bshannon Bill Shannon (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: