src/java.desktop/unix/classes/sun/awt/X11/genhash.awk
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 25859 jdk/src/java.desktop/unix/classes/sun/awt/X11/genhash.awk@3317bb8137f4
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 450
diff changeset
     1
# Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 450
diff changeset
     6
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 450
diff changeset
     8
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 450
diff changeset
    20
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 450
diff changeset
    21
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 450
diff changeset
    22
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#  With this script one can generate a new version XKeysym.java file out
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#  of keysym2ucs.h prototype and UnicodeData.txt database.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#  Latter file should be fetched from a unicode.org site, most
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#  probably http://www.unicode.org/Public/UNIDATA/UnicodeData.txt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
BEGIN {   FS=";";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
          while((getline < "UnicodeData.txt")){
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
              unic[$1]=$2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
          FS=" ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
          print("// This is a generated file: do not edit! Edit keysym2ucs.h if necessary.\n");          
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/^0x/{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
         if( $1 != "0x0000" ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
             ndx =  toupper($1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
             sub(/0X/, "", ndx);
450
be95c1c0efcf 6627324: Alt Graph doesnot generate any key event when pressing in German locale
yan
parents: 2
diff changeset
    41
             printf("        keysym2UCSHash.put( (long)%s, (char)%s); // %s -->%s\n",
be95c1c0efcf 6627324: Alt Graph doesnot generate any key event when pressing in German locale
yan
parents: 2
diff changeset
    42
                        $4, $1, $3, (unic[ndx]=="" ? "" : " " unic[ndx]));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
/tojava/ { sub(/tojava /, ""); sub(/tojava$/, ""); print}