/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim:set ts=2 sw=2 sts=2 et cindent: */ /* 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 "EventLog.h" #include #include "mozilla/UniquePtr.h" // This is an easy way to expose `MOZ_APP_DISPLAYNAME` to Rust code. const wchar_t* gWinEventLogSourceName = L"" MOZ_APP_DISPLAYNAME " Default Browser Agent"; static void WriteEventLogErrorBuffer(const wchar_t* buffer, DWORD eventId) { HANDLE source = RegisterEventSourceW(nullptr, gWinEventLogSourceName); if (!source) { // Not much we can do about this. return; } const wchar_t* stringsArray[] = {buffer}; ReportEventW(source, EVENTLOG_ERROR_TYPE, 0, eventId, nullptr, 1, 0, stringsArray, nullptr); DeregisterEventSource(source); } void WriteEventLogHresult(HRESULT hr, const char* sourceFile, int sourceLine) { const wchar_t* format = L"0x%X in %S:%d"; int bufferSize = _scwprintf(format, hr, sourceFile, sourceLine); ++bufferSize; // Extra character for terminating null mozilla::UniquePtr errorStr = mozilla::MakeUnique(bufferSize); _snwprintf_s(errorStr.get(), bufferSize, _TRUNCATE, format, hr, sourceFile, sourceLine); WriteEventLogErrorBuffer(errorStr.get(), hr); } void WriteEventLogErrorMessage(const wchar_t* messageFormat, const char* sourceFile, int sourceLine, ...) { // First assemble the passed message va_list ap; va_start(ap, sourceLine); int bufferSize = _vscwprintf(messageFormat, ap); ++bufferSize; // Extra character for terminating null va_end(ap); mozilla::UniquePtr message = mozilla::MakeUnique(bufferSize); va_start(ap, sourceLine); vswprintf(message.get(), bufferSize, messageFormat, ap); va_end(ap); // Next, assemble the complete error message to print const wchar_t* errorFormat = L"Error: %s (%S:%d)"; bufferSize = _scwprintf(errorFormat, message.get(), sourceFile, sourceLine); ++bufferSize; // Extra character for terminating null mozilla::UniquePtr errorStr = mozilla::MakeUnique(bufferSize); _snwprintf_s(errorStr.get(), bufferSize, _TRUNCATE, errorFormat, message.get(), sourceFile, sourceLine); WriteEventLogErrorBuffer(errorStr.get(), 0); }