summaryrefslogtreecommitdiffstats
path: root/accessible/ipc/win/PlatformChild.cpp
blob: 01434a0811f2ae7b934d47a7354c5a97026bead5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "mozilla/a11y/PlatformChild.h"
#include "mozilla/mscom/EnsureMTA.h"
#include "mozilla/mscom/InterceptorLog.h"

#include "Accessible2.h"
#include "Accessible2_2.h"
#include "AccessibleHypertext2.h"
#include "AccessibleTableCell.h"

#include "AccessibleHypertext2_i.c"

namespace mozilla {
namespace a11y {

/**
 * Unfortunately the COM interceptor does not intrinsically handle array
 * outparams. Instead we manually define the relevant metadata here, and
 * register it in a call to mozilla::mscom::RegisterArrayData.
 * @see mozilla::mscom::ArrayData
 */
static const mozilla::mscom::ArrayData sPlatformChildArrayData[] = {
  {IID_IEnumVARIANT, 3, 1, VT_DISPATCH, IID_IDispatch, 2},
  {IID_IAccessible2, 30, 1, VT_UNKNOWN | VT_BYREF, IID_IAccessibleRelation, 2},
  {IID_IAccessibleRelation, 7, 1, VT_UNKNOWN | VT_BYREF, IID_IUnknown, 2},
  {IID_IAccessible2_2, 48, 2, VT_UNKNOWN | VT_BYREF, IID_IUnknown, 3,
   mozilla::mscom::ArrayData::Flag::eAllocatedByServer},
  {IID_IAccessibleTableCell, 4, 0, VT_UNKNOWN | VT_BYREF, IID_IUnknown, 1,
   mozilla::mscom::ArrayData::Flag::eAllocatedByServer},
  {IID_IAccessibleTableCell, 7, 0, VT_UNKNOWN | VT_BYREF, IID_IUnknown, 1,
   mozilla::mscom::ArrayData::Flag::eAllocatedByServer},
  {IID_IAccessibleHypertext2, 25, 0, VT_UNKNOWN | VT_BYREF, IID_IUnknown, 1,
   mozilla::mscom::ArrayData::Flag::eAllocatedByServer}
};

// Type libraries are thread-neutral, so we can register those from any
// apartment. OTOH, proxies must be registered from within the apartment where
// we intend to instantiate them. Therefore RegisterProxy() must be called
// via EnsureMTA.
PlatformChild::PlatformChild()
  : mAccTypelib(mozilla::mscom::RegisterTypelib(L"oleacc.dll",
        mozilla::mscom::RegistrationFlags::eUseSystemDirectory))
  , mMiscTypelib(mozilla::mscom::RegisterTypelib(L"Accessible.tlb"))
{
  mozilla::mscom::InterceptorLog::Init();
  mozilla::mscom::RegisterArrayData(sPlatformChildArrayData);

  UniquePtr<mozilla::mscom::RegisteredProxy> ia2Proxy;
  mozilla::mscom::EnsureMTA([&ia2Proxy]() -> void {
    ia2Proxy = Move(mozilla::mscom::RegisterProxy(L"ia2marshal.dll"));
  });
  mIA2Proxy = Move(ia2Proxy);
}

} // namespace a11y
} // namespace mozilla