GfxMessageUtils.h 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273
  1. /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef __GFXMESSAGEUTILS_H__
  6. #define __GFXMESSAGEUTILS_H__
  7. #include "FilterSupport.h"
  8. #include "FrameMetrics.h"
  9. #include "ImageTypes.h"
  10. #include "RegionBuilder.h"
  11. #include "base/process_util.h"
  12. #include "chrome/common/ipc_message_utils.h"
  13. #include "gfxPoint.h"
  14. #include "gfxRect.h"
  15. #include "gfxTelemetry.h"
  16. #include "gfxTypes.h"
  17. #include "ipc/IPCMessageUtils.h"
  18. #include "mozilla/gfx/Matrix.h"
  19. #include "mozilla/layers/AsyncDragMetrics.h"
  20. #include "mozilla/layers/CompositorTypes.h"
  21. #include "mozilla/layers/GeckoContentController.h"
  22. #include "mozilla/layers/LayersTypes.h"
  23. #include "nsRect.h"
  24. #include "nsRegion.h"
  25. #include <stdint.h>
  26. #ifdef _MSC_VER
  27. #pragma warning( disable : 4800 )
  28. #endif
  29. namespace mozilla {
  30. typedef gfxImageFormat PixelFormat;
  31. } // namespace mozilla
  32. namespace IPC {
  33. template<>
  34. struct ParamTraits<mozilla::gfx::Matrix>
  35. {
  36. typedef mozilla::gfx::Matrix paramType;
  37. static void Write(Message* aMsg, const paramType& aParam)
  38. {
  39. WriteParam(aMsg, aParam._11);
  40. WriteParam(aMsg, aParam._12);
  41. WriteParam(aMsg, aParam._21);
  42. WriteParam(aMsg, aParam._22);
  43. WriteParam(aMsg, aParam._31);
  44. WriteParam(aMsg, aParam._32);
  45. }
  46. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  47. {
  48. if (ReadParam(aMsg, aIter, &aResult->_11) &&
  49. ReadParam(aMsg, aIter, &aResult->_12) &&
  50. ReadParam(aMsg, aIter, &aResult->_21) &&
  51. ReadParam(aMsg, aIter, &aResult->_22) &&
  52. ReadParam(aMsg, aIter, &aResult->_31) &&
  53. ReadParam(aMsg, aIter, &aResult->_32))
  54. return true;
  55. return false;
  56. }
  57. static void Log(const paramType& aParam, std::wstring* aLog)
  58. {
  59. aLog->append(StringPrintf(L"[[%g %g] [%g %g] [%g %g]]", aParam._11, aParam._12, aParam._21, aParam._22,
  60. aParam._31, aParam._32));
  61. }
  62. };
  63. template<>
  64. struct ParamTraits<mozilla::gfx::Matrix4x4>
  65. {
  66. typedef mozilla::gfx::Matrix4x4 paramType;
  67. static void Write(Message* msg, const paramType& param)
  68. {
  69. #define Wr(_f) WriteParam(msg, param. _f)
  70. Wr(_11); Wr(_12); Wr(_13); Wr(_14);
  71. Wr(_21); Wr(_22); Wr(_23); Wr(_24);
  72. Wr(_31); Wr(_32); Wr(_33); Wr(_34);
  73. Wr(_41); Wr(_42); Wr(_43); Wr(_44);
  74. #undef Wr
  75. }
  76. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  77. {
  78. #define Rd(_f) ReadParam(msg, iter, &result-> _f)
  79. return (Rd(_11) && Rd(_12) && Rd(_13) && Rd(_14) &&
  80. Rd(_21) && Rd(_22) && Rd(_23) && Rd(_24) &&
  81. Rd(_31) && Rd(_32) && Rd(_33) && Rd(_34) &&
  82. Rd(_41) && Rd(_42) && Rd(_43) && Rd(_44));
  83. #undef Rd
  84. }
  85. };
  86. template<>
  87. struct ParamTraits<mozilla::gfx::Matrix5x4>
  88. {
  89. typedef mozilla::gfx::Matrix5x4 paramType;
  90. static void Write(Message* msg, const paramType& param)
  91. {
  92. #define Wr(_f) WriteParam(msg, param. _f)
  93. Wr(_11); Wr(_12); Wr(_13); Wr(_14);
  94. Wr(_21); Wr(_22); Wr(_23); Wr(_24);
  95. Wr(_31); Wr(_32); Wr(_33); Wr(_34);
  96. Wr(_41); Wr(_42); Wr(_43); Wr(_44);
  97. Wr(_51); Wr(_52); Wr(_53); Wr(_54);
  98. #undef Wr
  99. }
  100. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  101. {
  102. #define Rd(_f) ReadParam(msg, iter, &result-> _f)
  103. return (Rd(_11) && Rd(_12) && Rd(_13) && Rd(_14) &&
  104. Rd(_21) && Rd(_22) && Rd(_23) && Rd(_24) &&
  105. Rd(_31) && Rd(_32) && Rd(_33) && Rd(_34) &&
  106. Rd(_41) && Rd(_42) && Rd(_43) && Rd(_44) &&
  107. Rd(_51) && Rd(_52) && Rd(_53) && Rd(_54));
  108. #undef Rd
  109. }
  110. };
  111. template<>
  112. struct ParamTraits<gfxPoint>
  113. {
  114. typedef gfxPoint paramType;
  115. static void Write(Message* aMsg, const paramType& aParam)
  116. {
  117. WriteParam(aMsg, aParam.x);
  118. WriteParam(aMsg, aParam.y);
  119. }
  120. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  121. {
  122. return (ReadParam(aMsg, aIter, &aResult->x) &&
  123. ReadParam(aMsg, aIter, &aResult->y));
  124. }
  125. };
  126. template<>
  127. struct ParamTraits<gfxSize>
  128. {
  129. typedef gfxSize paramType;
  130. static void Write(Message* aMsg, const paramType& aParam)
  131. {
  132. WriteParam(aMsg, aParam.width);
  133. WriteParam(aMsg, aParam.height);
  134. }
  135. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  136. {
  137. if (ReadParam(aMsg, aIter, &aResult->width) &&
  138. ReadParam(aMsg, aIter, &aResult->height))
  139. return true;
  140. return false;
  141. }
  142. };
  143. template<>
  144. struct ParamTraits<gfxRect>
  145. {
  146. typedef gfxRect paramType;
  147. static void Write(Message* aMsg, const paramType& aParam)
  148. {
  149. WriteParam(aMsg, aParam.x);
  150. WriteParam(aMsg, aParam.y);
  151. WriteParam(aMsg, aParam.width);
  152. WriteParam(aMsg, aParam.height);
  153. }
  154. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  155. {
  156. return ReadParam(aMsg, aIter, &aResult->x) &&
  157. ReadParam(aMsg, aIter, &aResult->y) &&
  158. ReadParam(aMsg, aIter, &aResult->width) &&
  159. ReadParam(aMsg, aIter, &aResult->height);
  160. }
  161. };
  162. template <>
  163. struct ParamTraits<gfxContentType>
  164. : public ContiguousEnumSerializer<
  165. gfxContentType,
  166. gfxContentType::COLOR,
  167. gfxContentType::SENTINEL>
  168. {};
  169. template <>
  170. struct ParamTraits<gfxSurfaceType>
  171. : public ContiguousEnumSerializer<
  172. gfxSurfaceType,
  173. gfxSurfaceType::Image,
  174. gfxSurfaceType::Max>
  175. {};
  176. template <>
  177. struct ParamTraits<mozilla::gfx::SamplingFilter>
  178. : public ContiguousEnumSerializer<
  179. mozilla::gfx::SamplingFilter,
  180. mozilla::gfx::SamplingFilter::GOOD,
  181. mozilla::gfx::SamplingFilter::SENTINEL>
  182. {};
  183. template <>
  184. struct ParamTraits<mozilla::layers::LayersBackend>
  185. : public ContiguousEnumSerializer<
  186. mozilla::layers::LayersBackend,
  187. mozilla::layers::LayersBackend::LAYERS_NONE,
  188. mozilla::layers::LayersBackend::LAYERS_LAST>
  189. {};
  190. template <>
  191. struct ParamTraits<mozilla::gfx::BackendType>
  192. : public ContiguousEnumSerializer<
  193. mozilla::gfx::BackendType,
  194. mozilla::gfx::BackendType::NONE,
  195. mozilla::gfx::BackendType::BACKEND_LAST>
  196. {};
  197. template <>
  198. struct ParamTraits<mozilla::gfx::FeatureStatus>
  199. : public ContiguousEnumSerializer<
  200. mozilla::gfx::FeatureStatus,
  201. mozilla::gfx::FeatureStatus::Unused,
  202. mozilla::gfx::FeatureStatus::LAST>
  203. {};
  204. template <>
  205. struct ParamTraits<mozilla::layers::ScaleMode>
  206. : public ContiguousEnumSerializer<
  207. mozilla::layers::ScaleMode,
  208. mozilla::layers::ScaleMode::SCALE_NONE,
  209. mozilla::layers::ScaleMode::SENTINEL>
  210. {};
  211. template <>
  212. struct ParamTraits<mozilla::gfx::AttributeName>
  213. : public ContiguousEnumSerializer<
  214. mozilla::gfx::AttributeName,
  215. mozilla::gfx::eBlendBlendmode,
  216. mozilla::gfx::eLastAttributeName>
  217. {};
  218. template <>
  219. struct ParamTraits<mozilla::gfx::AttributeType>
  220. : public ContiguousEnumSerializer<
  221. mozilla::gfx::AttributeType,
  222. mozilla::gfx::AttributeType::eBool,
  223. mozilla::gfx::AttributeType::Max>
  224. {};
  225. template <>
  226. struct ParamTraits<mozilla::gfx::PrimitiveType>
  227. : public ContiguousEnumSerializer<
  228. mozilla::gfx::PrimitiveType,
  229. mozilla::gfx::PrimitiveType::Empty,
  230. mozilla::gfx::PrimitiveType::Max>
  231. {};
  232. template <>
  233. struct ParamTraits<mozilla::gfx::ColorSpace>
  234. : public ContiguousEnumSerializer<
  235. mozilla::gfx::ColorSpace,
  236. mozilla::gfx::ColorSpace::SRGB,
  237. mozilla::gfx::ColorSpace::Max>
  238. {};
  239. template <>
  240. struct ParamTraits<mozilla::layers::TextureFlags>
  241. : public BitFlagsEnumSerializer<
  242. mozilla::layers::TextureFlags,
  243. mozilla::layers::TextureFlags::ALL_BITS>
  244. {};
  245. template <>
  246. struct ParamTraits<mozilla::layers::DiagnosticTypes>
  247. : public BitFlagsEnumSerializer<
  248. mozilla::layers::DiagnosticTypes,
  249. mozilla::layers::DiagnosticTypes::ALL_BITS>
  250. {};
  251. /*
  252. template <>
  253. struct ParamTraits<mozilla::PixelFormat>
  254. : public EnumSerializer<mozilla::PixelFormat,
  255. SurfaceFormat::A8R8G8B8_UINT32,
  256. SurfaceFormat::UNKNOWN>
  257. {};
  258. */
  259. template<>
  260. struct ParamTraits<mozilla::gfx::Color>
  261. {
  262. typedef mozilla::gfx::Color paramType;
  263. static void Write(Message* msg, const paramType& param)
  264. {
  265. WriteParam(msg, param.r);
  266. WriteParam(msg, param.g);
  267. WriteParam(msg, param.b);
  268. WriteParam(msg, param.a);
  269. }
  270. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  271. {
  272. return (ReadParam(msg, iter, &result->r) &&
  273. ReadParam(msg, iter, &result->g) &&
  274. ReadParam(msg, iter, &result->b) &&
  275. ReadParam(msg, iter, &result->a));
  276. }
  277. };
  278. template<>
  279. struct ParamTraits<nsPoint>
  280. {
  281. typedef nsPoint paramType;
  282. static void Write(Message* msg, const paramType& param)
  283. {
  284. WriteParam(msg, param.x);
  285. WriteParam(msg, param.y);
  286. }
  287. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  288. {
  289. return (ReadParam(msg, iter, &result->x) &&
  290. ReadParam(msg, iter, &result->y));
  291. }
  292. };
  293. template<>
  294. struct ParamTraits<nsIntPoint>
  295. {
  296. typedef nsIntPoint paramType;
  297. static void Write(Message* msg, const paramType& param)
  298. {
  299. WriteParam(msg, param.x);
  300. WriteParam(msg, param.y);
  301. }
  302. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  303. {
  304. return (ReadParam(msg, iter, &result->x) &&
  305. ReadParam(msg, iter, &result->y));
  306. }
  307. };
  308. template<typename T>
  309. struct ParamTraits<mozilla::gfx::IntSizeTyped<T> >
  310. {
  311. typedef mozilla::gfx::IntSizeTyped<T> paramType;
  312. static void Write(Message* msg, const paramType& param)
  313. {
  314. WriteParam(msg, param.width);
  315. WriteParam(msg, param.height);
  316. }
  317. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  318. {
  319. return (ReadParam(msg, iter, &result->width) &&
  320. ReadParam(msg, iter, &result->height));
  321. }
  322. };
  323. template<typename Region, typename Rect, typename Iter>
  324. struct RegionParamTraits
  325. {
  326. typedef Region paramType;
  327. static void Write(Message* msg, const paramType& param)
  328. {
  329. for (auto iter = param.RectIter(); !iter.Done(); iter.Next()) {
  330. const Rect& r = iter.Get();
  331. MOZ_RELEASE_ASSERT(!r.IsEmpty(), "GFX: rect is empty.");
  332. WriteParam(msg, r);
  333. }
  334. // empty rects are sentinel values because nsRegions will never
  335. // contain them
  336. WriteParam(msg, Rect());
  337. }
  338. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  339. {
  340. RegionBuilder<Region> builder;
  341. Rect rect;
  342. while (ReadParam(msg, iter, &rect)) {
  343. if (rect.IsEmpty()) {
  344. *result = builder.ToRegion();
  345. return true;
  346. }
  347. builder.OrWith(rect);
  348. }
  349. return false;
  350. }
  351. };
  352. template<class Units>
  353. struct ParamTraits<mozilla::gfx::IntRegionTyped<Units>>
  354. : RegionParamTraits<mozilla::gfx::IntRegionTyped<Units>,
  355. mozilla::gfx::IntRectTyped<Units>,
  356. typename mozilla::gfx::IntRegionTyped<Units>::RectIterator>
  357. {};
  358. template<>
  359. struct ParamTraits<mozilla::gfx::IntSize>
  360. {
  361. typedef mozilla::gfx::IntSize paramType;
  362. static void Write(Message* msg, const paramType& param)
  363. {
  364. WriteParam(msg, param.width);
  365. WriteParam(msg, param.height);
  366. }
  367. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  368. {
  369. return (ReadParam(msg, iter, &result->width) &&
  370. ReadParam(msg, iter, &result->height));
  371. }
  372. };
  373. template<class T>
  374. struct ParamTraits< mozilla::gfx::CoordTyped<T> >
  375. {
  376. typedef mozilla::gfx::CoordTyped<T> paramType;
  377. static void Write(Message* msg, const paramType& param)
  378. {
  379. WriteParam(msg, param.value);
  380. }
  381. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  382. {
  383. return (ReadParam(msg, iter, &result->value));
  384. }
  385. };
  386. template<class T>
  387. struct ParamTraits< mozilla::gfx::IntCoordTyped<T> >
  388. {
  389. typedef mozilla::gfx::IntCoordTyped<T> paramType;
  390. static void Write(Message* msg, const paramType& param)
  391. {
  392. WriteParam(msg, param.value);
  393. }
  394. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  395. {
  396. return (ReadParam(msg, iter, &result->value));
  397. }
  398. };
  399. template<class T, class U>
  400. struct ParamTraits< mozilla::gfx::ScaleFactor<T, U> >
  401. {
  402. typedef mozilla::gfx::ScaleFactor<T, U> paramType;
  403. static void Write(Message* msg, const paramType& param)
  404. {
  405. WriteParam(msg, param.scale);
  406. }
  407. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  408. {
  409. return (ReadParam(msg, iter, &result->scale));
  410. }
  411. };
  412. template<class T, class U>
  413. struct ParamTraits< mozilla::gfx::ScaleFactors2D<T, U> >
  414. {
  415. typedef mozilla::gfx::ScaleFactors2D<T, U> paramType;
  416. static void Write(Message* msg, const paramType& param)
  417. {
  418. WriteParam(msg, param.xScale);
  419. WriteParam(msg, param.yScale);
  420. }
  421. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  422. {
  423. return (ReadParam(msg, iter, &result->xScale) &&
  424. ReadParam(msg, iter, &result->yScale));
  425. }
  426. };
  427. template<class T>
  428. struct ParamTraits< mozilla::gfx::PointTyped<T> >
  429. {
  430. typedef mozilla::gfx::PointTyped<T> paramType;
  431. static void Write(Message* msg, const paramType& param)
  432. {
  433. WriteParam(msg, param.x);
  434. WriteParam(msg, param.y);
  435. }
  436. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  437. {
  438. return (ReadParam(msg, iter, &result->x) &&
  439. ReadParam(msg, iter, &result->y));
  440. }
  441. };
  442. template<class F, class T>
  443. struct ParamTraits< mozilla::gfx::Point3DTyped<F, T> >
  444. {
  445. typedef mozilla::gfx::Point3DTyped<F, T> paramType;
  446. static void Write(Message* msg, const paramType& param)
  447. {
  448. WriteParam(msg, param.x);
  449. WriteParam(msg, param.y);
  450. WriteParam(msg, param.z);
  451. }
  452. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  453. {
  454. return (ReadParam(msg, iter, &result->x) &&
  455. ReadParam(msg, iter, &result->y) &&
  456. ReadParam(msg, iter, &result->z));
  457. }
  458. };
  459. template<class T>
  460. struct ParamTraits< mozilla::gfx::IntPointTyped<T> >
  461. {
  462. typedef mozilla::gfx::IntPointTyped<T> paramType;
  463. static void Write(Message* msg, const paramType& param)
  464. {
  465. WriteParam(msg, param.x);
  466. WriteParam(msg, param.y);
  467. }
  468. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  469. {
  470. return (ReadParam(msg, iter, &result->x) &&
  471. ReadParam(msg, iter, &result->y));
  472. }
  473. };
  474. template<class T>
  475. struct ParamTraits< mozilla::gfx::SizeTyped<T> >
  476. {
  477. typedef mozilla::gfx::SizeTyped<T> paramType;
  478. static void Write(Message* msg, const paramType& param)
  479. {
  480. WriteParam(msg, param.width);
  481. WriteParam(msg, param.height);
  482. }
  483. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  484. {
  485. return (ReadParam(msg, iter, &result->width) &&
  486. ReadParam(msg, iter, &result->height));
  487. }
  488. };
  489. template<class T>
  490. struct ParamTraits< mozilla::gfx::RectTyped<T> >
  491. {
  492. typedef mozilla::gfx::RectTyped<T> paramType;
  493. static void Write(Message* msg, const paramType& param)
  494. {
  495. WriteParam(msg, param.x);
  496. WriteParam(msg, param.y);
  497. WriteParam(msg, param.width);
  498. WriteParam(msg, param.height);
  499. }
  500. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  501. {
  502. return (ReadParam(msg, iter, &result->x) &&
  503. ReadParam(msg, iter, &result->y) &&
  504. ReadParam(msg, iter, &result->width) &&
  505. ReadParam(msg, iter, &result->height));
  506. }
  507. };
  508. template<class T>
  509. struct ParamTraits< mozilla::gfx::IntRectTyped<T> >
  510. {
  511. typedef mozilla::gfx::IntRectTyped<T> paramType;
  512. static void Write(Message* msg, const paramType& param)
  513. {
  514. WriteParam(msg, param.x);
  515. WriteParam(msg, param.y);
  516. WriteParam(msg, param.width);
  517. WriteParam(msg, param.height);
  518. }
  519. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  520. {
  521. return (ReadParam(msg, iter, &result->x) &&
  522. ReadParam(msg, iter, &result->y) &&
  523. ReadParam(msg, iter, &result->width) &&
  524. ReadParam(msg, iter, &result->height));
  525. }
  526. };
  527. template<>
  528. struct ParamTraits<mozilla::gfx::Margin>
  529. {
  530. typedef mozilla::gfx::Margin paramType;
  531. static void Write(Message* msg, const paramType& param)
  532. {
  533. WriteParam(msg, param.top);
  534. WriteParam(msg, param.right);
  535. WriteParam(msg, param.bottom);
  536. WriteParam(msg, param.left);
  537. }
  538. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  539. {
  540. return (ReadParam(msg, iter, &result->top) &&
  541. ReadParam(msg, iter, &result->right) &&
  542. ReadParam(msg, iter, &result->bottom) &&
  543. ReadParam(msg, iter, &result->left));
  544. }
  545. };
  546. template<class T>
  547. struct ParamTraits< mozilla::gfx::MarginTyped<T> >
  548. {
  549. typedef mozilla::gfx::MarginTyped<T> paramType;
  550. static void Write(Message* msg, const paramType& param)
  551. {
  552. WriteParam(msg, param.top);
  553. WriteParam(msg, param.right);
  554. WriteParam(msg, param.bottom);
  555. WriteParam(msg, param.left);
  556. }
  557. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  558. {
  559. return (ReadParam(msg, iter, &result->top) &&
  560. ReadParam(msg, iter, &result->right) &&
  561. ReadParam(msg, iter, &result->bottom) &&
  562. ReadParam(msg, iter, &result->left));
  563. }
  564. };
  565. template<>
  566. struct ParamTraits<nsRect>
  567. {
  568. typedef nsRect paramType;
  569. static void Write(Message* msg, const paramType& param)
  570. {
  571. WriteParam(msg, param.x);
  572. WriteParam(msg, param.y);
  573. WriteParam(msg, param.width);
  574. WriteParam(msg, param.height);
  575. }
  576. static bool Read(const Message* msg, PickleIterator* iter, paramType* result)
  577. {
  578. return (ReadParam(msg, iter, &result->x) &&
  579. ReadParam(msg, iter, &result->y) &&
  580. ReadParam(msg, iter, &result->width) &&
  581. ReadParam(msg, iter, &result->height));
  582. }
  583. };
  584. template<>
  585. struct ParamTraits<nsRegion>
  586. : RegionParamTraits<nsRegion, nsRect, nsRegion::RectIterator>
  587. {};
  588. template<>
  589. struct ParamTraits<mozilla::layers::FrameMetrics::ScrollOffsetUpdateType>
  590. : public ContiguousEnumSerializer<
  591. mozilla::layers::FrameMetrics::ScrollOffsetUpdateType,
  592. mozilla::layers::FrameMetrics::ScrollOffsetUpdateType::eNone,
  593. mozilla::layers::FrameMetrics::ScrollOffsetUpdateType::eSentinel>
  594. {};
  595. // Helper class for reading bitfields.
  596. // If T has bitfields members, derive ParamTraits<T> from BitfieldHelper<T>.
  597. template <typename ParamType>
  598. struct BitfieldHelper
  599. {
  600. // We need this helper because we can't get the address of a bitfield to
  601. // pass directly to ReadParam. So instead we read it into a temporary bool
  602. // and set the bitfield using a setter function
  603. static bool ReadBoolForBitfield(const Message* aMsg, PickleIterator* aIter,
  604. ParamType* aResult, void (ParamType::*aSetter)(bool))
  605. {
  606. bool value;
  607. if (ReadParam(aMsg, aIter, &value)) {
  608. (aResult->*aSetter)(value);
  609. return true;
  610. }
  611. return false;
  612. }
  613. };
  614. template <>
  615. struct ParamTraits<mozilla::layers::FrameMetrics>
  616. : BitfieldHelper<mozilla::layers::FrameMetrics>
  617. {
  618. typedef mozilla::layers::FrameMetrics paramType;
  619. static void Write(Message* aMsg, const paramType& aParam)
  620. {
  621. WriteParam(aMsg, aParam.mScrollId);
  622. WriteParam(aMsg, aParam.mPresShellResolution);
  623. WriteParam(aMsg, aParam.mCompositionBounds);
  624. WriteParam(aMsg, aParam.mDisplayPort);
  625. WriteParam(aMsg, aParam.mCriticalDisplayPort);
  626. WriteParam(aMsg, aParam.mScrollableRect);
  627. WriteParam(aMsg, aParam.mCumulativeResolution);
  628. WriteParam(aMsg, aParam.mDevPixelsPerCSSPixel);
  629. WriteParam(aMsg, aParam.mScrollOffset);
  630. WriteParam(aMsg, aParam.mZoom);
  631. WriteParam(aMsg, aParam.mScrollGeneration);
  632. WriteParam(aMsg, aParam.mSmoothScrollOffset);
  633. WriteParam(aMsg, aParam.mRootCompositionSize);
  634. WriteParam(aMsg, aParam.mDisplayPortMargins);
  635. WriteParam(aMsg, aParam.mPresShellId);
  636. WriteParam(aMsg, aParam.mViewport);
  637. WriteParam(aMsg, aParam.mExtraResolution);
  638. WriteParam(aMsg, aParam.mPaintRequestTime);
  639. WriteParam(aMsg, aParam.mScrollUpdateType);
  640. WriteParam(aMsg, aParam.mIsRootContent);
  641. WriteParam(aMsg, aParam.mDoSmoothScroll);
  642. WriteParam(aMsg, aParam.mUseDisplayPortMargins);
  643. WriteParam(aMsg, aParam.mIsScrollInfoLayer);
  644. }
  645. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  646. {
  647. return (ReadParam(aMsg, aIter, &aResult->mScrollId) &&
  648. ReadParam(aMsg, aIter, &aResult->mPresShellResolution) &&
  649. ReadParam(aMsg, aIter, &aResult->mCompositionBounds) &&
  650. ReadParam(aMsg, aIter, &aResult->mDisplayPort) &&
  651. ReadParam(aMsg, aIter, &aResult->mCriticalDisplayPort) &&
  652. ReadParam(aMsg, aIter, &aResult->mScrollableRect) &&
  653. ReadParam(aMsg, aIter, &aResult->mCumulativeResolution) &&
  654. ReadParam(aMsg, aIter, &aResult->mDevPixelsPerCSSPixel) &&
  655. ReadParam(aMsg, aIter, &aResult->mScrollOffset) &&
  656. ReadParam(aMsg, aIter, &aResult->mZoom) &&
  657. ReadParam(aMsg, aIter, &aResult->mScrollGeneration) &&
  658. ReadParam(aMsg, aIter, &aResult->mSmoothScrollOffset) &&
  659. ReadParam(aMsg, aIter, &aResult->mRootCompositionSize) &&
  660. ReadParam(aMsg, aIter, &aResult->mDisplayPortMargins) &&
  661. ReadParam(aMsg, aIter, &aResult->mPresShellId) &&
  662. ReadParam(aMsg, aIter, &aResult->mViewport) &&
  663. ReadParam(aMsg, aIter, &aResult->mExtraResolution) &&
  664. ReadParam(aMsg, aIter, &aResult->mPaintRequestTime) &&
  665. ReadParam(aMsg, aIter, &aResult->mScrollUpdateType) &&
  666. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetIsRootContent) &&
  667. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetDoSmoothScroll) &&
  668. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetUseDisplayPortMargins) &&
  669. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetIsScrollInfoLayer));
  670. }
  671. };
  672. template <>
  673. struct ParamTraits<mozilla::layers::ScrollSnapInfo>
  674. {
  675. typedef mozilla::layers::ScrollSnapInfo paramType;
  676. static void Write(Message* aMsg, const paramType& aParam)
  677. {
  678. WriteParam(aMsg, aParam.mScrollSnapTypeX);
  679. WriteParam(aMsg, aParam.mScrollSnapTypeY);
  680. WriteParam(aMsg, aParam.mScrollSnapIntervalX);
  681. WriteParam(aMsg, aParam.mScrollSnapIntervalY);
  682. WriteParam(aMsg, aParam.mScrollSnapDestination);
  683. WriteParam(aMsg, aParam.mScrollSnapCoordinates);
  684. }
  685. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  686. {
  687. return (ReadParam(aMsg, aIter, &aResult->mScrollSnapTypeX) &&
  688. ReadParam(aMsg, aIter, &aResult->mScrollSnapTypeY) &&
  689. ReadParam(aMsg, aIter, &aResult->mScrollSnapIntervalX) &&
  690. ReadParam(aMsg, aIter, &aResult->mScrollSnapIntervalY) &&
  691. ReadParam(aMsg, aIter, &aResult->mScrollSnapDestination) &&
  692. ReadParam(aMsg, aIter, &aResult->mScrollSnapCoordinates));
  693. }
  694. };
  695. template <>
  696. struct ParamTraits<mozilla::layers::LayerClip>
  697. {
  698. typedef mozilla::layers::LayerClip paramType;
  699. static void Write(Message* aMsg, const paramType& aParam)
  700. {
  701. WriteParam(aMsg, aParam.mClipRect);
  702. WriteParam(aMsg, aParam.mMaskLayerIndex);
  703. }
  704. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  705. {
  706. return (ReadParam(aMsg, aIter, &aResult->mClipRect) &&
  707. ReadParam(aMsg, aIter, &aResult->mMaskLayerIndex));
  708. }
  709. };
  710. template <>
  711. struct ParamTraits<mozilla::layers::ScrollMetadata>
  712. : BitfieldHelper<mozilla::layers::ScrollMetadata>
  713. {
  714. typedef mozilla::layers::ScrollMetadata paramType;
  715. static void Write(Message* aMsg, const paramType& aParam)
  716. {
  717. WriteParam(aMsg, aParam.mMetrics);
  718. WriteParam(aMsg, aParam.mSnapInfo);
  719. WriteParam(aMsg, aParam.mScrollParentId);
  720. WriteParam(aMsg, aParam.mBackgroundColor);
  721. WriteParam(aMsg, aParam.GetContentDescription());
  722. WriteParam(aMsg, aParam.mLineScrollAmount);
  723. WriteParam(aMsg, aParam.mPageScrollAmount);
  724. WriteParam(aMsg, aParam.mScrollClip);
  725. WriteParam(aMsg, aParam.mHasScrollgrab);
  726. WriteParam(aMsg, aParam.mAllowVerticalScrollWithWheel);
  727. WriteParam(aMsg, aParam.mIsLayersIdRoot);
  728. WriteParam(aMsg, aParam.mUsesContainerScrolling);
  729. WriteParam(aMsg, aParam.mForceDisableApz);
  730. }
  731. static bool ReadContentDescription(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  732. {
  733. nsCString str;
  734. if (!ReadParam(aMsg, aIter, &str)) {
  735. return false;
  736. }
  737. aResult->SetContentDescription(str);
  738. return true;
  739. }
  740. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  741. {
  742. return (ReadParam(aMsg, aIter, &aResult->mMetrics) &&
  743. ReadParam(aMsg, aIter, &aResult->mSnapInfo) &&
  744. ReadParam(aMsg, aIter, &aResult->mScrollParentId) &&
  745. ReadParam(aMsg, aIter, &aResult->mBackgroundColor) &&
  746. ReadContentDescription(aMsg, aIter, aResult) &&
  747. ReadParam(aMsg, aIter, &aResult->mLineScrollAmount) &&
  748. ReadParam(aMsg, aIter, &aResult->mPageScrollAmount) &&
  749. ReadParam(aMsg, aIter, &aResult->mScrollClip) &&
  750. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetHasScrollgrab) &&
  751. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetAllowVerticalScrollWithWheel) &&
  752. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetIsLayersIdRoot) &&
  753. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetUsesContainerScrolling) &&
  754. ReadBoolForBitfield(aMsg, aIter, aResult, &paramType::SetForceDisableApz));
  755. }
  756. };
  757. template<>
  758. struct ParamTraits<GeckoProcessType>
  759. : public ContiguousEnumSerializer<
  760. GeckoProcessType,
  761. GeckoProcessType_Default,
  762. GeckoProcessType_End>
  763. {};
  764. template<>
  765. struct ParamTraits<mozilla::layers::TextureFactoryIdentifier>
  766. {
  767. typedef mozilla::layers::TextureFactoryIdentifier paramType;
  768. static void Write(Message* aMsg, const paramType& aParam)
  769. {
  770. WriteParam(aMsg, aParam.mParentBackend);
  771. WriteParam(aMsg, aParam.mParentProcessType);
  772. WriteParam(aMsg, aParam.mMaxTextureSize);
  773. WriteParam(aMsg, aParam.mSupportsTextureBlitting);
  774. WriteParam(aMsg, aParam.mSupportsPartialUploads);
  775. WriteParam(aMsg, aParam.mSupportsComponentAlpha);
  776. WriteParam(aMsg, aParam.mSyncHandle);
  777. }
  778. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  779. {
  780. bool result = ReadParam(aMsg, aIter, &aResult->mParentBackend) &&
  781. ReadParam(aMsg, aIter, &aResult->mParentProcessType) &&
  782. ReadParam(aMsg, aIter, &aResult->mMaxTextureSize) &&
  783. ReadParam(aMsg, aIter, &aResult->mSupportsTextureBlitting) &&
  784. ReadParam(aMsg, aIter, &aResult->mSupportsPartialUploads) &&
  785. ReadParam(aMsg, aIter, &aResult->mSupportsComponentAlpha) &&
  786. ReadParam(aMsg, aIter, &aResult->mSyncHandle);
  787. return result;
  788. }
  789. };
  790. template<>
  791. struct ParamTraits<mozilla::layers::TextureInfo>
  792. {
  793. typedef mozilla::layers::TextureInfo paramType;
  794. static void Write(Message* aMsg, const paramType& aParam)
  795. {
  796. WriteParam(aMsg, aParam.mCompositableType);
  797. WriteParam(aMsg, aParam.mTextureFlags);
  798. }
  799. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  800. {
  801. return ReadParam(aMsg, aIter, &aResult->mCompositableType) &&
  802. ReadParam(aMsg, aIter, &aResult->mTextureFlags);
  803. }
  804. };
  805. template <>
  806. struct ParamTraits<mozilla::layers::CompositableType>
  807. : public ContiguousEnumSerializer<
  808. mozilla::layers::CompositableType,
  809. mozilla::layers::CompositableType::UNKNOWN,
  810. mozilla::layers::CompositableType::COUNT>
  811. {};
  812. template <>
  813. struct ParamTraits<mozilla::gfx::SurfaceFormat>
  814. : public ContiguousEnumSerializer<
  815. mozilla::gfx::SurfaceFormat,
  816. mozilla::gfx::SurfaceFormat::B8G8R8A8,
  817. mozilla::gfx::SurfaceFormat::UNKNOWN>
  818. {};
  819. template <>
  820. struct ParamTraits<mozilla::StereoMode>
  821. : public ContiguousEnumSerializer<
  822. mozilla::StereoMode,
  823. mozilla::StereoMode::MONO,
  824. mozilla::StereoMode::MAX>
  825. {};
  826. template <>
  827. struct ParamTraits<mozilla::YUVColorSpace>
  828. : public ContiguousEnumSerializer<
  829. mozilla::YUVColorSpace,
  830. mozilla::YUVColorSpace::BT601,
  831. mozilla::YUVColorSpace::UNKNOWN>
  832. {};
  833. template <>
  834. struct ParamTraits<mozilla::layers::ScrollableLayerGuid>
  835. {
  836. typedef mozilla::layers::ScrollableLayerGuid paramType;
  837. static void Write(Message* aMsg, const paramType& aParam)
  838. {
  839. WriteParam(aMsg, aParam.mLayersId);
  840. WriteParam(aMsg, aParam.mPresShellId);
  841. WriteParam(aMsg, aParam.mScrollId);
  842. }
  843. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  844. {
  845. return (ReadParam(aMsg, aIter, &aResult->mLayersId) &&
  846. ReadParam(aMsg, aIter, &aResult->mPresShellId) &&
  847. ReadParam(aMsg, aIter, &aResult->mScrollId));
  848. }
  849. };
  850. template <>
  851. struct ParamTraits<mozilla::layers::ZoomConstraints>
  852. {
  853. typedef mozilla::layers::ZoomConstraints paramType;
  854. static void Write(Message* aMsg, const paramType& aParam)
  855. {
  856. WriteParam(aMsg, aParam.mAllowZoom);
  857. WriteParam(aMsg, aParam.mAllowDoubleTapZoom);
  858. WriteParam(aMsg, aParam.mMinZoom);
  859. WriteParam(aMsg, aParam.mMaxZoom);
  860. }
  861. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  862. {
  863. return (ReadParam(aMsg, aIter, &aResult->mAllowZoom) &&
  864. ReadParam(aMsg, aIter, &aResult->mAllowDoubleTapZoom) &&
  865. ReadParam(aMsg, aIter, &aResult->mMinZoom) &&
  866. ReadParam(aMsg, aIter, &aResult->mMaxZoom));
  867. }
  868. };
  869. template <>
  870. struct ParamTraits<mozilla::layers::EventRegions>
  871. {
  872. typedef mozilla::layers::EventRegions paramType;
  873. static void Write(Message* aMsg, const paramType& aParam)
  874. {
  875. WriteParam(aMsg, aParam.mHitRegion);
  876. WriteParam(aMsg, aParam.mDispatchToContentHitRegion);
  877. WriteParam(aMsg, aParam.mNoActionRegion);
  878. WriteParam(aMsg, aParam.mHorizontalPanRegion);
  879. WriteParam(aMsg, aParam.mVerticalPanRegion);
  880. }
  881. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  882. {
  883. return (ReadParam(aMsg, aIter, &aResult->mHitRegion) &&
  884. ReadParam(aMsg, aIter, &aResult->mDispatchToContentHitRegion) &&
  885. ReadParam(aMsg, aIter, &aResult->mNoActionRegion) &&
  886. ReadParam(aMsg, aIter, &aResult->mHorizontalPanRegion) &&
  887. ReadParam(aMsg, aIter, &aResult->mVerticalPanRegion));
  888. }
  889. };
  890. template <>
  891. struct ParamTraits<mozilla::gfx::AttributeMap>
  892. {
  893. typedef mozilla::gfx::AttributeMap paramType;
  894. static void Write(Message* aMsg, const paramType& aParam)
  895. {
  896. WriteParam(aMsg, aParam.Count());
  897. for (auto iter = aParam.ConstIter(); !iter.Done(); iter.Next()) {
  898. mozilla::gfx::AttributeName name =
  899. mozilla::gfx::AttributeName(iter.Key());
  900. mozilla::gfx::AttributeType type =
  901. mozilla::gfx::AttributeMap::GetType(iter.UserData());
  902. WriteParam(aMsg, type);
  903. WriteParam(aMsg, name);
  904. switch (type) {
  905. #define CASE_TYPE(typeName) \
  906. case mozilla::gfx::AttributeType::e##typeName: \
  907. WriteParam(aMsg, aParam.Get##typeName(name)); \
  908. break;
  909. CASE_TYPE(Bool)
  910. CASE_TYPE(Uint)
  911. CASE_TYPE(Float)
  912. CASE_TYPE(Size)
  913. CASE_TYPE(IntSize)
  914. CASE_TYPE(IntPoint)
  915. CASE_TYPE(Matrix)
  916. CASE_TYPE(Matrix5x4)
  917. CASE_TYPE(Point3D)
  918. CASE_TYPE(Color)
  919. CASE_TYPE(AttributeMap)
  920. CASE_TYPE(Floats)
  921. #undef CASE_TYPE
  922. default:
  923. MOZ_CRASH("GFX: unhandled attribute type");
  924. }
  925. }
  926. }
  927. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  928. {
  929. uint32_t count;
  930. if (!ReadParam(aMsg, aIter, &count)) {
  931. return false;
  932. }
  933. for (uint32_t i = 0; i < count; i++) {
  934. mozilla::gfx::AttributeType type;
  935. if (!ReadParam(aMsg, aIter, &type)) {
  936. return false;
  937. }
  938. mozilla::gfx::AttributeName name;
  939. if (!ReadParam(aMsg, aIter, &name)) {
  940. return false;
  941. }
  942. switch (type) {
  943. #define HANDLE_TYPE(type, typeName) \
  944. case mozilla::gfx::AttributeType::e##typeName: \
  945. { \
  946. type value; \
  947. if (!ReadParam(aMsg, aIter, &value)) { \
  948. return false; \
  949. } \
  950. aResult->Set(name, value); \
  951. break; \
  952. }
  953. HANDLE_TYPE(bool, Bool)
  954. HANDLE_TYPE(uint32_t, Uint)
  955. HANDLE_TYPE(float, Float)
  956. HANDLE_TYPE(mozilla::gfx::Size, Size)
  957. HANDLE_TYPE(mozilla::gfx::IntSize, IntSize)
  958. HANDLE_TYPE(mozilla::gfx::IntPoint, IntPoint)
  959. HANDLE_TYPE(mozilla::gfx::Matrix, Matrix)
  960. HANDLE_TYPE(mozilla::gfx::Matrix5x4, Matrix5x4)
  961. HANDLE_TYPE(mozilla::gfx::Point3D, Point3D)
  962. HANDLE_TYPE(mozilla::gfx::Color, Color)
  963. HANDLE_TYPE(mozilla::gfx::AttributeMap, AttributeMap)
  964. #undef HANDLE_TYPE
  965. case mozilla::gfx::AttributeType::eFloats:
  966. {
  967. nsTArray<float> value;
  968. if (!ReadParam(aMsg, aIter, &value)) {
  969. return false;
  970. }
  971. aResult->Set(name, &value[0], value.Length());
  972. break;
  973. }
  974. default:
  975. MOZ_CRASH("GFX: unhandled attribute type");
  976. }
  977. }
  978. return true;
  979. }
  980. };
  981. template <>
  982. struct ParamTraits<mozilla::gfx::FilterPrimitiveDescription>
  983. {
  984. typedef mozilla::gfx::FilterPrimitiveDescription paramType;
  985. static void Write(Message* aMsg, const paramType& aParam)
  986. {
  987. WriteParam(aMsg, aParam.Type());
  988. WriteParam(aMsg, aParam.PrimitiveSubregion());
  989. WriteParam(aMsg, aParam.FilterSpaceBounds());
  990. WriteParam(aMsg, aParam.IsTainted());
  991. WriteParam(aMsg, aParam.OutputColorSpace());
  992. WriteParam(aMsg, aParam.NumberOfInputs());
  993. for (size_t i = 0; i < aParam.NumberOfInputs(); i++) {
  994. WriteParam(aMsg, aParam.InputPrimitiveIndex(i));
  995. WriteParam(aMsg, aParam.InputColorSpace(i));
  996. }
  997. WriteParam(aMsg, aParam.Attributes());
  998. }
  999. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  1000. {
  1001. mozilla::gfx::PrimitiveType type;
  1002. mozilla::gfx::IntRect primitiveSubregion;
  1003. mozilla::gfx::IntRect filterSpaceBounds;
  1004. bool isTainted = false;
  1005. mozilla::gfx::ColorSpace outputColorSpace;
  1006. size_t numberOfInputs = 0;
  1007. if (!ReadParam(aMsg, aIter, &type) ||
  1008. !ReadParam(aMsg, aIter, &primitiveSubregion) ||
  1009. !ReadParam(aMsg, aIter, &filterSpaceBounds) ||
  1010. !ReadParam(aMsg, aIter, &isTainted) ||
  1011. !ReadParam(aMsg, aIter, &outputColorSpace) ||
  1012. !ReadParam(aMsg, aIter, &numberOfInputs)) {
  1013. return false;
  1014. }
  1015. aResult->SetType(type);
  1016. aResult->SetPrimitiveSubregion(primitiveSubregion);
  1017. aResult->SetFilterSpaceBounds(filterSpaceBounds);
  1018. aResult->SetIsTainted(isTainted);
  1019. aResult->SetOutputColorSpace(outputColorSpace);
  1020. for (size_t i = 0; i < numberOfInputs; i++) {
  1021. int32_t inputPrimitiveIndex = 0;
  1022. mozilla::gfx::ColorSpace inputColorSpace;
  1023. if (!ReadParam(aMsg, aIter, &inputPrimitiveIndex) ||
  1024. !ReadParam(aMsg, aIter, &inputColorSpace)) {
  1025. return false;
  1026. }
  1027. aResult->SetInputPrimitive(i, inputPrimitiveIndex);
  1028. aResult->SetInputColorSpace(i, inputColorSpace);
  1029. }
  1030. return ReadParam(aMsg, aIter, &aResult->Attributes());
  1031. }
  1032. };
  1033. template <>
  1034. struct ParamTraits<mozilla::gfx::FilterDescription>
  1035. {
  1036. typedef mozilla::gfx::FilterDescription paramType;
  1037. static void Write(Message* aMsg, const paramType& aParam)
  1038. {
  1039. WriteParam(aMsg, aParam.mPrimitives);
  1040. }
  1041. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  1042. {
  1043. return (ReadParam(aMsg, aIter, &aResult->mPrimitives));
  1044. }
  1045. };
  1046. typedef mozilla::layers::GeckoContentController::TapType TapType;
  1047. template <>
  1048. struct ParamTraits<TapType>
  1049. : public ContiguousEnumSerializer<
  1050. TapType,
  1051. TapType::eSingleTap,
  1052. TapType::eSentinel>
  1053. {};
  1054. typedef mozilla::layers::GeckoContentController::APZStateChange APZStateChange;
  1055. template <>
  1056. struct ParamTraits<APZStateChange>
  1057. : public ContiguousEnumSerializer<
  1058. APZStateChange,
  1059. APZStateChange::eTransformBegin,
  1060. APZStateChange::eSentinel>
  1061. {};
  1062. template<>
  1063. struct ParamTraits<mozilla::layers::EventRegionsOverride>
  1064. : public BitFlagsEnumSerializer<
  1065. mozilla::layers::EventRegionsOverride,
  1066. mozilla::layers::EventRegionsOverride::ALL_BITS>
  1067. {};
  1068. template<>
  1069. struct ParamTraits<mozilla::layers::AsyncDragMetrics::DragDirection>
  1070. : public ContiguousEnumSerializer<
  1071. mozilla::layers::AsyncDragMetrics::DragDirection,
  1072. mozilla::layers::AsyncDragMetrics::DragDirection::NONE,
  1073. mozilla::layers::AsyncDragMetrics::DragDirection::SENTINEL>
  1074. {};
  1075. template<>
  1076. struct ParamTraits<mozilla::layers::AsyncDragMetrics>
  1077. {
  1078. typedef mozilla::layers::AsyncDragMetrics paramType;
  1079. static void Write(Message* aMsg, const paramType& aParam)
  1080. {
  1081. WriteParam(aMsg, aParam.mViewId);
  1082. WriteParam(aMsg, aParam.mPresShellId);
  1083. WriteParam(aMsg, aParam.mDragStartSequenceNumber);
  1084. WriteParam(aMsg, aParam.mScrollbarDragOffset);
  1085. WriteParam(aMsg, aParam.mScrollTrack);
  1086. WriteParam(aMsg, aParam.mDirection);
  1087. }
  1088. static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
  1089. {
  1090. return (ReadParam(aMsg, aIter, &aResult->mViewId) &&
  1091. ReadParam(aMsg, aIter, &aResult->mPresShellId) &&
  1092. ReadParam(aMsg, aIter, &aResult->mDragStartSequenceNumber) &&
  1093. ReadParam(aMsg, aIter, &aResult->mScrollbarDragOffset) &&
  1094. ReadParam(aMsg, aIter, &aResult->mScrollTrack) &&
  1095. ReadParam(aMsg, aIter, &aResult->mDirection));
  1096. }
  1097. };
  1098. } /* namespace IPC */
  1099. #endif /* __GFXMESSAGEUTILS_H__ */