author | bpb |
Mon, 15 Sep 2014 13:25:08 -0700 | |
changeset 26627 | 534c5a51e93e |
parent 25859 | 3317bb8137f4 |
child 27565 | 729f9700483a |
permissions | -rw-r--r-- |
12892 | 1 |
# |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
21805
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. |
12892 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
GENSRC_CHARSETCODER := |
|
27 |
||
14231 | 28 |
GENSRC_CHARSETCODER_TMP := $(JDK_OUTPUTDIR)/gensrc |
25859 | 29 |
GENSRC_CHARSETCODER_DST := $(JDK_OUTPUTDIR)/gensrc/java.base/java/nio/charset |
12892 | 30 |
|
25859 | 31 |
GENSRC_CHARSETCODER_SRC := $(JDK_TOPDIR)/src/java.base/share/classes/java/nio |
12892 | 32 |
|
33 |
GENSRC_CHARSETCODER_TEMPLATE := $(GENSRC_CHARSETCODER_SRC)/charset/Charset-X-Coder.java.template |
|
34 |
||
35 |
### |
|
36 |
||
20547 | 37 |
$(GENSRC_CHARSETCODER_DST)/CharsetDecoder.java: $(GENSRC_CHARSETCODER_TEMPLATE) |
12892 | 38 |
$(MKDIR) -p $(@D) |
13702 | 39 |
-$(RM) $@.tmp |
40 |
$(TOOL_SPP) < $< >$@.tmp \ |
|
20547 | 41 |
-Kdecoder \ |
42 |
-DA='A' \ |
|
43 |
-Da='a' \ |
|
44 |
-DCode='Decode' \ |
|
45 |
-Dcode='decode' \ |
|
46 |
-DitypesPhrase='bytes in a specific charset' \ |
|
47 |
-DotypesPhrase='sixteen-bit Unicode characters' \ |
|
48 |
-Ditype='byte' \ |
|
49 |
-Dotype='character' \ |
|
50 |
-DItype='Byte' \ |
|
51 |
-DOtype='Char' \ |
|
52 |
-Dcoder='decoder' \ |
|
53 |
-DCoder='Decoder' \ |
|
54 |
-Dcoding='decoding' \ |
|
55 |
-DOtherCoder='Encoder' \ |
|
56 |
-DreplTypeName='string' \ |
|
57 |
-DdefaultRepl='"\\uFFFD"' \ |
|
58 |
-DdefaultReplName='<tt>"\\uFFFD"<\/tt>' \ |
|
59 |
-DreplType='String' \ |
|
60 |
-DreplFQType='java.lang.String' \ |
|
61 |
-DreplLength='length()' \ |
|
62 |
-DItypesPerOtype='CharsPerByte' \ |
|
63 |
-DnotLegal='not legal for this charset' \ |
|
64 |
-Dotypes-per-itype='chars-per-byte' \ |
|
65 |
-DoutSequence='Unicode character' |
|
13702 | 66 |
$(MV) $@.tmp $@ |
12892 | 67 |
|
68 |
GENSRC_CHARSETCODER += $(GENSRC_CHARSETCODER_DST)/CharsetDecoder.java |
|
69 |
||
70 |
### |
|
71 |
||
20547 | 72 |
$(GENSRC_CHARSETCODER_DST)/CharsetEncoder.java: $(GENSRC_CHARSETCODER_TEMPLATE) |
12892 | 73 |
$(MKDIR) -p $(@D) |
13702 | 74 |
-$(RM) $@.tmp |
75 |
$(TOOL_SPP) < $< >$@.tmp \ |
|
20547 | 76 |
-Kencoder \ |
77 |
-DA='An' \ |
|
78 |
-Da='an' \ |
|
79 |
-DCode='Encode' \ |
|
80 |
-Dcode='encode' \ |
|
81 |
-DitypesPhrase='sixteen-bit Unicode characters' \ |
|
82 |
-DotypesPhrase='bytes in a specific charset' \ |
|
83 |
-Ditype='character' \ |
|
84 |
-Dotype='byte' \ |
|
85 |
-DItype='Char' \ |
|
86 |
-DOtype='Byte' \ |
|
87 |
-Dcoder='encoder' \ |
|
88 |
-DCoder='Encoder' \ |
|
89 |
-Dcoding='encoding' \ |
|
90 |
-DOtherCoder='Decoder' \ |
|
91 |
-DreplTypeName='byte array' \ |
|
92 |
-DdefaultRepl='new byte[] { (byte)'"'"\\?"'"' }' \ |
|
93 |
-DdefaultReplName='<tt>{<\/tt>\ <tt>(byte)'"'"\\?"'"'<\/tt>\ <tt>}<\/tt>' \ |
|
94 |
-DreplType='byte[]' \ |
|
95 |
-DreplFQType='byte[]' \ |
|
96 |
-DreplLength='length' \ |
|
97 |
-DItypesPerOtype='BytesPerChar' \ |
|
98 |
-DnotLegal='not a legal sixteen-bit Unicode sequence' \ |
|
99 |
-Dotypes-per-itype='bytes-per-char' \ |
|
100 |
-DoutSequence='byte sequence in the given charset' |
|
13702 | 101 |
$(MV) $@.tmp $@ |
12892 | 102 |
|
103 |
GENSRC_CHARSETCODER += $(GENSRC_CHARSETCODER_DST)/CharsetEncoder.java |
|
25859 | 104 |
GENSRC_JAVA_BASE += $(GENSRC_CHARSETCODER) |
12892 | 105 |
|
106 |
### |
|
107 |
||
25859 | 108 |
$(GENSRC_CHARSETCODER): $(BUILD_TOOLS_JDK) |