CmapTable.java 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. * $Id: CmapTable.java,v 1.3 2009/02/12 13:53:57 tomoke Exp $
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
  5. * Santa Clara, California 95054, U.S.A. All rights reserved.
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. package com.sun.pdfview.font.ttf;
  22. import net.sf.andpdf.pdfviewer.ByteBuffer;
  23. import java.util.Collection;
  24. import java.util.Collections;
  25. import java.util.Iterator;
  26. import java.util.SortedMap;
  27. import java.util.TreeMap;
  28. /**
  29. * Represents the TTF "cmap" table
  30. *
  31. * @author jkaplan
  32. */
  33. public class CmapTable extends TrueTypeTable {
  34. /** Holds value of property version. */
  35. private short version;
  36. /**
  37. * Holds the CMap subtables, sorted properly
  38. */
  39. private SortedMap<CmapSubtable,CMap> subtables;
  40. /** Creates a new instance of CmapTable */
  41. protected CmapTable() {
  42. super(TrueTypeTable.CMAP_TABLE);
  43. setVersion((short) 0x0);
  44. subtables = Collections.synchronizedSortedMap(new TreeMap<CmapSubtable,CMap>());
  45. }
  46. /**
  47. * Add a CMap
  48. */
  49. public void addCMap(short platformID, short platformSpecificID,
  50. CMap cMap) {
  51. CmapSubtable key = new CmapSubtable(platformID, platformSpecificID);
  52. subtables.put(key, cMap);
  53. }
  54. /**
  55. * Get a CMap by platform and specific ID
  56. */
  57. public CMap getCMap(short platformID, short platformSpecificID) {
  58. CmapSubtable key = new CmapSubtable(platformID, platformSpecificID);
  59. return (CMap) subtables.get(key);
  60. }
  61. /**
  62. * Get all CMaps
  63. */
  64. public CMap[] getCMaps() {
  65. Collection<CMap> c = subtables.values();
  66. CMap[] maps = new CMap[c.size()];
  67. c.toArray(maps);
  68. return maps;
  69. }
  70. /**
  71. * Remove a CMap
  72. */
  73. public void removeCMap(short platformID, short platformSpecificID) {
  74. CmapSubtable key = new CmapSubtable(platformID, platformSpecificID);
  75. subtables.remove(key);
  76. }
  77. @Override public void setData(ByteBuffer data) {
  78. setVersion(data.getShort());
  79. short numberSubtables = data.getShort();
  80. for (int i = 0; i < numberSubtables; i++) {
  81. short platformID = data.getShort();
  82. short platformSpecificID = data.getShort();
  83. int offset = data.getInt();
  84. data.mark();
  85. // get the position from the start of this buffer
  86. data.position(offset);
  87. ByteBuffer mapData = data.slice();
  88. data.reset();
  89. try {
  90. CMap cMap = CMap.getMap(mapData);
  91. if (cMap != null) {
  92. addCMap(platformID, platformSpecificID, cMap);
  93. }
  94. } catch (Exception ex) {
  95. System.out.println("Error reading map. PlatformID=" +
  96. platformID + ", PlatformSpecificID=" +
  97. platformSpecificID);
  98. System.out.println("Reason: " + ex);
  99. }
  100. }
  101. }
  102. @Override public ByteBuffer getData() {
  103. ByteBuffer buf = ByteBuffer.allocate(getLength());
  104. // write the table header
  105. buf.putShort(getVersion());
  106. buf.putShort((short) subtables.size());
  107. // the current offset to write to, starts at the end of the
  108. // subtables
  109. int curOffset = 4 + (subtables.size() * 8);
  110. // write the subtables
  111. for (Iterator i = subtables.keySet().iterator(); i.hasNext();) {
  112. CmapSubtable cms = (CmapSubtable) i.next();
  113. CMap map = (CMap) subtables.get(cms);
  114. buf.putShort(cms.platformID);
  115. buf.putShort(cms.platformSpecificID);
  116. buf.putInt(curOffset);
  117. curOffset += map.getLength();
  118. }
  119. // write the tables
  120. for (Iterator i = subtables.values().iterator(); i.hasNext();) {
  121. CMap map = (CMap) i.next();
  122. buf.put(map.getData());
  123. }
  124. // reset the position to the start of the buffer
  125. buf.flip();
  126. return buf;
  127. }
  128. /**
  129. * Get the size of the table, in bytes
  130. */
  131. @Override public int getLength() {
  132. // start with the size of the fixed data
  133. int length = 4;
  134. // add the size of the subtables
  135. length += subtables.size() * 8;
  136. // add the size of the dynamic data
  137. for (Iterator i = subtables.values().iterator(); i.hasNext();) {
  138. // add the size of the subtable data
  139. CMap map = (CMap) i.next();
  140. length += map.getLength();
  141. }
  142. return length;
  143. }
  144. /** Getter for property version.
  145. * @return Value of property version.
  146. *
  147. */
  148. public short getVersion() {
  149. return this.version;
  150. }
  151. /** Setter for property version.
  152. * @param version New value of property version.
  153. *
  154. */
  155. public void setVersion(short version) {
  156. this.version = version;
  157. }
  158. /**
  159. * Get the number of tables
  160. */
  161. public short getNumberSubtables() {
  162. return (short) subtables.size();
  163. }
  164. /** Print a pretty string */
  165. @Override public String toString() {
  166. StringBuffer buf = new StringBuffer();
  167. String indent = " ";
  168. buf.append(indent + "Version: " + this.getVersion() + "\n");
  169. buf.append(indent + "NumMaps: " + this.getNumberSubtables() + "\n");
  170. for (Iterator i = subtables.keySet().iterator(); i.hasNext();) {
  171. CmapSubtable key = (CmapSubtable) i.next();
  172. buf.append(indent + "Map: platformID: " + key.platformID +
  173. " PlatformSpecificID: " + key.platformSpecificID + "\n");
  174. CMap map = (CMap) subtables.get(key);
  175. buf.append(map.toString());
  176. }
  177. return buf.toString();
  178. }
  179. class CmapSubtable implements Comparable {
  180. /**
  181. * The platformID for this subtable
  182. */
  183. short platformID;
  184. /**
  185. * The platform-specific id
  186. */
  187. short platformSpecificID;
  188. /**
  189. * Create a Cmap subtable
  190. */
  191. protected CmapSubtable(short platformID, short platformSpecificID) {
  192. this.platformID = platformID;
  193. this.platformSpecificID = platformSpecificID;
  194. }
  195. /**
  196. * Compare two subtables
  197. */
  198. @Override public boolean equals(Object obj) {
  199. return (compareTo(obj) == 0);
  200. }
  201. /**
  202. * Sort ascending by platform ID and then specific ID
  203. */
  204. public int compareTo(Object obj) {
  205. if (!(obj instanceof CmapSubtable)) {
  206. return -1;
  207. }
  208. CmapSubtable cms = (CmapSubtable) obj;
  209. if (platformID < cms.platformID) {
  210. return -1;
  211. } else if (platformID > cms.platformID) {
  212. return 1;
  213. } else {
  214. if (platformSpecificID < cms.platformSpecificID) {
  215. return -1;
  216. } else if (platformSpecificID > cms.platformSpecificID) {
  217. return 1;
  218. } else {
  219. return 0;
  220. }
  221. }
  222. }
  223. }
  224. }