LEGlyphStorage.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546
  1. /*
  2. **********************************************************************
  3. * Copyright (C) 1998-2014, International Business Machines
  4. * Corporation and others. All Rights Reserved.
  5. **********************************************************************
  6. */
  7. #ifndef __LEGLYPHSTORAGE_H
  8. #define __LEGLYPHSTORAGE_H
  9. #include "LETypes.h"
  10. #include "LEInsertionList.h"
  11. /**
  12. * \file
  13. * \brief C++ API: This class encapsulates the per-glyph storage used by the ICU LayoutEngine.
  14. */
  15. U_NAMESPACE_BEGIN
  16. /**
  17. * This class encapsulates the per-glyph storage used by the ICU LayoutEngine.
  18. * For each glyph it holds the glyph ID, the index of the backing store character
  19. * which produced the glyph, the X and Y position of the glyph and an auxillary data
  20. * pointer.
  21. *
  22. * The storage is growable using the <code>LEInsertionList</code> class.
  23. *
  24. *
  25. * @see LEInsertionList.h
  26. *
  27. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  28. */
  29. class U_LAYOUT_API LEGlyphStorage : public UObject, protected LEInsertionCallback
  30. {
  31. private:
  32. /**
  33. * The number of entries in the per-glyph arrays.
  34. *
  35. * @internal
  36. */
  37. le_int32 fGlyphCount;
  38. /**
  39. * The glyph ID array.
  40. *
  41. * @internal
  42. */
  43. LEGlyphID *fGlyphs;
  44. /**
  45. * The char indices array.
  46. *
  47. * @internal
  48. */
  49. le_int32 *fCharIndices;
  50. /**
  51. * The glyph positions array.
  52. *
  53. * @internal
  54. */
  55. float *fPositions;
  56. /**
  57. * The auxillary data array.
  58. *
  59. * @internal
  60. */
  61. le_uint32 *fAuxData;
  62. /**
  63. * The insertion list, used to grow the above arrays.
  64. *
  65. * @internal
  66. */
  67. LEInsertionList *fInsertionList;
  68. /**
  69. * The source index while growing the data arrays.
  70. *
  71. * @internal
  72. */
  73. le_int32 fSrcIndex;
  74. /**
  75. * The destination index used while growing the data arrays.
  76. *
  77. * @internal
  78. */
  79. le_int32 fDestIndex;
  80. protected:
  81. /**
  82. * This implements <code>LEInsertionCallback</code>. The <code>LEInsertionList</code>
  83. * will call this method once for each insertion.
  84. *
  85. * @param atPosition the position of the insertion
  86. * @param count the number of glyphs being inserted
  87. * @param newGlyphs the address of the new glyph IDs
  88. *
  89. * @return <code>true</code> if <code>LEInsertionList</code> should stop
  90. * processing the insertion list after this insertion.
  91. *
  92. * @see LEInsertionList.h
  93. *
  94. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  95. */
  96. virtual le_bool applyInsertion(le_int32 atPosition, le_int32 count, LEGlyphID newGlyphs[]);
  97. public:
  98. /**
  99. * Allocates an empty <code>LEGlyphStorage</code> object. You must call
  100. * <code>allocateGlyphArray, allocatePositions and allocateAuxData</code>
  101. * to allocate the data.
  102. *
  103. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  104. */
  105. LEGlyphStorage();
  106. /**
  107. * The destructor. This will deallocate all of the arrays.
  108. *
  109. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  110. */
  111. ~LEGlyphStorage();
  112. /**
  113. * This method returns the number of glyphs in the glyph array.
  114. *
  115. * @return the number of glyphs in the glyph array
  116. *
  117. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  118. */
  119. inline le_int32 getGlyphCount() const;
  120. /**
  121. * This method copies the glyph array into a caller supplied array.
  122. * The caller must ensure that the array is large enough to hold all
  123. * the glyphs.
  124. *
  125. * @param glyphs - the destiniation glyph array
  126. * @param success - set to an error code if the operation fails
  127. *
  128. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  129. */
  130. void getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const;
  131. /**
  132. * This method copies the glyph array into a caller supplied array,
  133. * ORing in extra bits. (This functionality is needed by the JDK,
  134. * which uses 32 bits pre glyph idex, with the high 16 bits encoding
  135. * the composite font slot number)
  136. *
  137. * @param glyphs - the destination (32 bit) glyph array
  138. * @param extraBits - this value will be ORed with each glyph index
  139. * @param success - set to an error code if the operation fails
  140. *
  141. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  142. */
  143. void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
  144. /**
  145. * This method copies the character index array into a caller supplied array.
  146. * The caller must ensure that the array is large enough to hold a
  147. * character index for each glyph.
  148. *
  149. * @param charIndices - the destiniation character index array
  150. * @param success - set to an error code if the operation fails
  151. *
  152. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  153. */
  154. void getCharIndices(le_int32 charIndices[], LEErrorCode &success) const;
  155. /**
  156. * This method copies the character index array into a caller supplied array.
  157. * The caller must ensure that the array is large enough to hold a
  158. * character index for each glyph.
  159. *
  160. * @param charIndices - the destiniation character index array
  161. * @param indexBase - an offset which will be added to each index
  162. * @param success - set to an error code if the operation fails
  163. *
  164. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  165. */
  166. void getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success) const;
  167. /**
  168. * This method copies the position array into a caller supplied array.
  169. * The caller must ensure that the array is large enough to hold an
  170. * X and Y position for each glyph, plus an extra X and Y for the
  171. * advance of the last glyph.
  172. *
  173. * @param positions - the destiniation position array
  174. * @param success - set to an error code if the operation fails
  175. *
  176. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  177. */
  178. void getGlyphPositions(float positions[], LEErrorCode &success) const;
  179. /**
  180. * This method returns the X and Y position of the glyph at
  181. * the given index.
  182. *
  183. * Input parameters:
  184. * @param glyphIndex - the index of the glyph
  185. *
  186. * Output parameters:
  187. * @param x - the glyph's X position
  188. * @param y - the glyph's Y position
  189. * @param success - set to an error code if the operation fails
  190. *
  191. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  192. */
  193. void getGlyphPosition(le_int32 glyphIndex, float &x, float &y, LEErrorCode &success) const;
  194. /**
  195. * This method allocates the glyph array, the char indices array and the insertion list. You
  196. * must call this method before using the object. This method also initializes the char indices
  197. * array.
  198. *
  199. * @param initialGlyphCount the initial size of the glyph and char indices arrays.
  200. * @param rightToLeft <code>true</code> if the original input text is right to left.
  201. * @param success set to an error code if the storage cannot be allocated of if the initial
  202. * glyph count is not positive.
  203. *
  204. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  205. */
  206. void allocateGlyphArray(le_int32 initialGlyphCount, le_bool rightToLeft, LEErrorCode &success);
  207. /**
  208. * This method allocates the storage for the glyph positions. It allocates one extra X, Y
  209. * position pair for the position just after the last glyph.
  210. *
  211. * @param success set to an error code if the positions array cannot be allocated.
  212. *
  213. * @return the number of X, Y position pairs allocated.
  214. *
  215. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  216. */
  217. le_int32 allocatePositions(LEErrorCode &success);
  218. /**
  219. * This method allocates the storage for the auxillary glyph data.
  220. *
  221. * @param success set to an error code if the aulillary data array cannot be allocated.
  222. *
  223. * @return the size of the auxillary data array.
  224. *
  225. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  226. */
  227. le_int32 allocateAuxData(LEErrorCode &success);
  228. /**
  229. * Copy the entire auxillary data array.
  230. *
  231. * @param auxData the auxillary data array will be copied to this address
  232. * @param success set to an error code if the data cannot be copied
  233. *
  234. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  235. */
  236. void getAuxData(le_uint32 auxData[], LEErrorCode &success) const;
  237. /**
  238. * Get the glyph ID for a particular glyph.
  239. *
  240. * @param glyphIndex the index into the glyph array
  241. * @param success set to an error code if the glyph ID cannot be retrieved.
  242. *
  243. * @return the glyph ID
  244. *
  245. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  246. */
  247. LEGlyphID getGlyphID(le_int32 glyphIndex, LEErrorCode &success) const;
  248. /**
  249. * Get the char index for a particular glyph.
  250. *
  251. * @param glyphIndex the index into the glyph array
  252. * @param success set to an error code if the char index cannot be retrieved.
  253. *
  254. * @return the character index
  255. *
  256. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  257. */
  258. le_int32 getCharIndex(le_int32 glyphIndex, LEErrorCode &success) const;
  259. /**
  260. * Get the auxillary data for a particular glyph.
  261. *
  262. * @param glyphIndex the index into the glyph array
  263. * @param success set to an error code if the auxillary data cannot be retrieved.
  264. *
  265. * @return the auxillary data
  266. *
  267. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  268. */
  269. le_uint32 getAuxData(le_int32 glyphIndex, LEErrorCode &success) const;
  270. /**
  271. * This operator allows direct access to the glyph array
  272. * using the index operator.
  273. *
  274. * @param glyphIndex the index into the glyph array
  275. *
  276. * @return a reference to the given location in the glyph array
  277. *
  278. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  279. */
  280. inline LEGlyphID &operator[](le_int32 glyphIndex) const;
  281. /**
  282. * Call this method to replace a single glyph in the glyph array
  283. * with multiple glyphs. This method uses the <code>LEInsertionList</code>
  284. * to do the insertion. It returns the address of storage where the new
  285. * glyph IDs can be stored. They will not actually be inserted into the
  286. * glyph array until <code>applyInsertions</code> is called.
  287. *
  288. * @param atIndex the index of the glyph to be replaced
  289. * @param insertCount the number of glyphs to replace it with
  290. * @param success set to an error code if the auxillary data cannot be retrieved.
  291. *
  292. * @return the address at which to store the replacement glyphs.
  293. *
  294. * @see LEInsertionList.h
  295. *
  296. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  297. */
  298. LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& success);
  299. /**
  300. * Call this method to replace a single glyph in the glyph array
  301. * with multiple glyphs. This method uses the <code>LEInsertionList</code>
  302. * to do the insertion. It returns the address of storage where the new
  303. * glyph IDs can be stored. They will not actually be inserted into the
  304. * glyph array until <code>applyInsertions</code> is called.
  305. *
  306. * Note: Don't use this version, use the other version of this function which has an error code.
  307. *
  308. * @param atIndex the index of the glyph to be replaced
  309. * @param insertCount the number of glyphs to replace it with
  310. *
  311. * @return the address at which to store the replacement glyphs.
  312. *
  313. * @see LEInsertionList.h
  314. *
  315. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  316. */
  317. LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount);
  318. /**
  319. * This method is used to reposition glyphs during Indic v2 processing. It moves
  320. * all of the relevant glyph information ( glyph, indices, positions, and auxData ),
  321. * from the source position to the target position, and also allows for a marker bit
  322. * to be set in the target glyph's auxData so that it won't be reprocessed later in the
  323. * cycle.
  324. *
  325. * @param fromPosition - position of the glyph to be moved
  326. * @param toPosition - target position of the glyph
  327. * @param marker marker bit
  328. *
  329. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  330. */
  331. void moveGlyph(le_int32 fromPosition, le_int32 toPosition, le_uint32 marker);
  332. /**
  333. * This method causes all of the glyph insertions recorded by
  334. * <code>insertGlyphs</code> to be applied to the glyph array. The
  335. * new slots in the char indices and the auxillary data arrays
  336. * will be filled in with the values for the glyph being replaced.
  337. *
  338. * @return the new size of the glyph array
  339. *
  340. * @see LEInsertionList.h
  341. *
  342. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  343. */
  344. le_int32 applyInsertions();
  345. /**
  346. * Set the glyph ID for a particular glyph.
  347. *
  348. * @param glyphIndex the index of the glyph
  349. * @param glyphID the new glyph ID
  350. * @param success will be set to an error code if the glyph ID cannot be set.
  351. *
  352. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  353. */
  354. void setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success);
  355. /**
  356. * Set the char index for a particular glyph.
  357. *
  358. * @param glyphIndex the index of the glyph
  359. * @param charIndex the new char index
  360. * @param success will be set to an error code if the char index cannot be set.
  361. *
  362. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  363. */
  364. void setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success);
  365. /**
  366. * Set the X, Y position for a particular glyph.
  367. *
  368. * @param glyphIndex the index of the glyph
  369. * @param x the new X position
  370. * @param y the new Y position
  371. * @param success will be set to an error code if the position cannot be set.
  372. *
  373. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  374. */
  375. void setPosition(le_int32 glyphIndex, float x, float y, LEErrorCode &success);
  376. /**
  377. * Adjust the X, Y position for a particular glyph.
  378. *
  379. * @param glyphIndex the index of the glyph
  380. * @param xAdjust the adjustment to the glyph's X position
  381. * @param yAdjust the adjustment to the glyph's Y position
  382. * @param success will be set to an error code if the glyph's position cannot be adjusted.
  383. *
  384. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  385. */
  386. void adjustPosition(le_int32 glyphIndex, float xAdjust, float yAdjust, LEErrorCode &success);
  387. /**
  388. * Set the auxillary data for a particular glyph.
  389. *
  390. * @param glyphIndex the index of the glyph
  391. * @param auxData the new auxillary data
  392. * @param success will be set to an error code if the auxillary data cannot be set.
  393. *
  394. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  395. */
  396. void setAuxData(le_int32 glyphIndex, le_uint32 auxData, LEErrorCode &success);
  397. /**
  398. * Delete the glyph array and replace it with the one
  399. * in <code>from</code>. Set the glyph array pointer
  400. * in <code>from</code> to <code>NULL</code>.
  401. *
  402. * @param from the <code>LEGlyphStorage</code> object from which
  403. * to get the new glyph array.
  404. *
  405. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  406. */
  407. void adoptGlyphArray(LEGlyphStorage &from);
  408. /**
  409. * Delete the char indices array and replace it with the one
  410. * in <code>from</code>. Set the char indices array pointer
  411. * in <code>from</code> to <code>NULL</code>.
  412. *
  413. * @param from the <code>LEGlyphStorage</code> object from which
  414. * to get the new char indices array.
  415. *
  416. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  417. */
  418. void adoptCharIndicesArray(LEGlyphStorage &from);
  419. /**
  420. * Delete the position array and replace it with the one
  421. * in <code>from</code>. Set the position array pointer
  422. * in <code>from</code> to <code>NULL</code>.
  423. *
  424. * @param from the <code>LEGlyphStorage</code> object from which
  425. * to get the new position array.
  426. *
  427. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  428. */
  429. void adoptPositionArray(LEGlyphStorage &from);
  430. /**
  431. * Delete the auxillary data array and replace it with the one
  432. * in <code>from</code>. Set the auxillary data array pointer
  433. * in <code>from</code> to <code>NULL</code>.
  434. *
  435. * @param from the <code>LEGlyphStorage</code> object from which
  436. * to get the new auxillary data array.
  437. *
  438. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  439. */
  440. void adoptAuxDataArray(LEGlyphStorage &from);
  441. /**
  442. * Change the glyph count of this object to be the same
  443. * as the one in <code>from</code>.
  444. *
  445. * @param from the <code>LEGlyphStorage</code> object from which
  446. * to get the new glyph count.
  447. *
  448. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  449. */
  450. void adoptGlyphCount(LEGlyphStorage &from);
  451. /**
  452. * Change the glyph count of this object to the given value.
  453. *
  454. * @param newGlyphCount the new glyph count.
  455. *
  456. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  457. */
  458. void adoptGlyphCount(le_int32 newGlyphCount);
  459. /**
  460. * This method frees the glyph, character index, position and
  461. * auxillary data arrays so that the LayoutEngine can be reused
  462. * to layout a different characer array. (This method is also called
  463. * by the destructor)
  464. *
  465. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  466. */
  467. void reset();
  468. /**
  469. * ICU "poor man's RTTI", returns a UClassID for the actual class.
  470. *
  471. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  472. */
  473. virtual UClassID getDynamicClassID() const;
  474. /**
  475. * ICU "poor man's RTTI", returns a UClassID for this class.
  476. *
  477. * @deprecated ICU 54. See {@link icu::LayoutEngine}
  478. */
  479. static UClassID getStaticClassID();
  480. };
  481. inline le_int32 LEGlyphStorage::getGlyphCount() const
  482. {
  483. return fGlyphCount;
  484. }
  485. inline LEGlyphID &LEGlyphStorage::operator[](le_int32 glyphIndex) const
  486. {
  487. return fGlyphs[glyphIndex];
  488. }
  489. U_NAMESPACE_END
  490. #endif