summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/addrbook/src/nsMapiAddressBook.cpp
blob: bd6e080443c9e0c433fa5c61244e966b5e1ee50c (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 "nsMapiAddressBook.h"

#include "mozilla/Logging.h"
#include "mozilla/DebugOnly.h"

#define PRINT_TO_CONSOLE 0
#if PRINT_TO_CONSOLE
#  define PRINTF(args) printf args
#else
static mozilla::LazyLogModule gMapiAddressBookLog("MAPIAddressBook");
#  define PRINTF(args) \
    MOZ_LOG(gMapiAddressBookLog, mozilla::LogLevel::Debug, args)
#endif

using namespace mozilla;

HMODULE nsMapiAddressBook::mLibrary = NULL;
int32_t nsMapiAddressBook::mLibUsage = 0;
LPMAPIINITIALIZE nsMapiAddressBook::mMAPIInitialize = NULL;
LPMAPIUNINITIALIZE nsMapiAddressBook::mMAPIUninitialize = NULL;
LPMAPIALLOCATEBUFFER nsMapiAddressBook::mMAPIAllocateBuffer = NULL;
LPMAPIFREEBUFFER nsMapiAddressBook::mMAPIFreeBuffer = NULL;
LPMAPILOGONEX nsMapiAddressBook::mMAPILogonEx = NULL;

BOOL nsMapiAddressBook::mInitialized = FALSE;
BOOL nsMapiAddressBook::mLogonDone = FALSE;
LPMAPISESSION nsMapiAddressBook::mRootSession = NULL;
LPADRBOOK nsMapiAddressBook::mRootBook = NULL;

BOOL nsMapiAddressBook::LoadMapiLibrary(void) {
  if (mLibrary) {
    ++mLibUsage;
    return TRUE;
  }
  HMODULE libraryHandle = LoadLibraryW(L"MAPI32.DLL");

  if (!libraryHandle) {
    return FALSE;
  }
  FARPROC entryPoint = GetProcAddress(libraryHandle, "MAPIGetNetscapeVersion");

  if (entryPoint) {
    FreeLibrary(libraryHandle);
    libraryHandle = LoadLibraryW(L"MAPI32BAK.DLL");
    if (!libraryHandle) {
      return FALSE;
    }
  }
  mLibrary = libraryHandle;
  ++mLibUsage;
  mMAPIInitialize = reinterpret_cast<LPMAPIINITIALIZE>(
      GetProcAddress(mLibrary, "MAPIInitialize"));
  if (!mMAPIInitialize) {
    return FALSE;
  }
  mMAPIUninitialize = reinterpret_cast<LPMAPIUNINITIALIZE>(
      GetProcAddress(mLibrary, "MAPIUninitialize"));
  if (!mMAPIUninitialize) {
    return FALSE;
  }
  mMAPIAllocateBuffer = reinterpret_cast<LPMAPIALLOCATEBUFFER>(
      GetProcAddress(mLibrary, "MAPIAllocateBuffer"));
  if (!mMAPIAllocateBuffer) {
    return FALSE;
  }
  mMAPIFreeBuffer = reinterpret_cast<LPMAPIFREEBUFFER>(
      GetProcAddress(mLibrary, "MAPIFreeBuffer"));
  if (!mMAPIFreeBuffer) {
    return FALSE;
  }
  mMAPILogonEx =
      reinterpret_cast<LPMAPILOGONEX>(GetProcAddress(mLibrary, "MAPILogonEx"));
  if (!mMAPILogonEx) {
    return FALSE;
  }
  MAPIINIT_0 mapiInit = {MAPI_INIT_VERSION, MAPI_MULTITHREAD_NOTIFICATIONS};
  HRESULT retCode = mMAPIInitialize(&mapiInit);

  if (HR_FAILED(retCode)) {
    PRINTF(("Cannot initialize MAPI %08lx.\n", retCode));
    return FALSE;
  }
  mInitialized = TRUE;
  retCode = mMAPILogonEx(
      0, NULL, NULL,
      MAPI_NO_MAIL | MAPI_USE_DEFAULT | MAPI_EXTENDED | MAPI_NEW_SESSION,
      &mRootSession);
  if (HR_FAILED(retCode)) {
    PRINTF(("Cannot logon to MAPI %08lx.\n", retCode));
    return FALSE;
  }
  mLogonDone = TRUE;
  retCode = mRootSession->OpenAddressBook(0, NULL, 0, &mRootBook);
  if (HR_FAILED(retCode)) {
    PRINTF(("Cannot open MAPI address book %08lx.\n", retCode));
  }
  return HR_SUCCEEDED(retCode);
}

void nsMapiAddressBook::FreeMapiLibrary(void) {
  if (mLibrary) {
    if (--mLibUsage == 0) {
      {
        if (mRootBook) {
          mRootBook->Release();
        }
        if (mRootSession) {
          if (mLogonDone) {
            mRootSession->Logoff(NULL, 0, 0);
            mLogonDone = FALSE;
          }
          mRootSession->Release();
        }
        if (mInitialized) {
          mMAPIUninitialize();
          mInitialized = FALSE;
        }
      }
      FreeLibrary(mLibrary);
      mLibrary = NULL;
    }
  }
}

nsMapiAddressBook::nsMapiAddressBook(void) : nsAbWinHelper() {
  mozilla::DebugOnly<BOOL> result = Initialize();

  NS_ASSERTION(result == TRUE, "Couldn't initialize Mapi Helper");
  MOZ_COUNT_CTOR(nsMapiAddressBook);
}

nsMapiAddressBook::~nsMapiAddressBook(void) {
  StaticMutexAutoLock guard(sMutex);

  FreeMapiLibrary();
  MOZ_COUNT_DTOR(nsMapiAddressBook);
}

BOOL nsMapiAddressBook::Initialize(void) {
  if (mAddressBook) {
    return TRUE;
  }
  StaticMutexAutoLock guard(sMutex);

  if (!LoadMapiLibrary()) {
    PRINTF(("Cannot load library.\n"));
    return FALSE;
  }
  mAddressBook = mRootBook;
  mAddressSession = mRootSession;
  mAddressFreeBuffer = mMAPIFreeBuffer;
  return TRUE;
}

void nsMapiAddressBook::AllocateBuffer(ULONG aByteCount, LPVOID* aBuffer) {
  mMAPIAllocateBuffer(aByteCount, aBuffer);
}

void nsMapiAddressBook::FreeBuffer(LPVOID aBuffer) { mMAPIFreeBuffer(aBuffer); }