2020-08-07 15:07:48 +03:00
|
|
|
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ex: set tabstop=8 softtabstop=2 shiftwidth=2 expandtab: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2004-09-07 21:55:27 +04:00
|
|
|
|
|
|
|
#ifndef nsCUPSShim_h___
|
|
|
|
#define nsCUPSShim_h___
|
|
|
|
|
2020-07-22 02:39:45 +03:00
|
|
|
#include <cups/cups.h>
|
2020-08-07 23:23:21 +03:00
|
|
|
#include "mozilla/Atomics.h"
|
|
|
|
#include "mozilla/Mutex.h"
|
2004-09-07 21:55:27 +04:00
|
|
|
|
2020-08-11 03:25:18 +03:00
|
|
|
// TODO: This should be a configure option, ideally.
|
|
|
|
#ifndef XP_MACOSX
|
|
|
|
# define CUPS_SHIM_RUNTIME_LINK
|
|
|
|
#endif
|
|
|
|
|
2004-09-07 21:55:27 +04:00
|
|
|
struct PRLibrary;
|
|
|
|
|
2010-06-28 21:36:17 +04:00
|
|
|
class nsCUPSShim {
|
2004-09-07 21:55:27 +04:00
|
|
|
public:
|
2020-11-04 21:56:13 +03:00
|
|
|
#ifdef CUPS_SHIM_RUNTIME_LINK
|
|
|
|
nsCUPSShim();
|
|
|
|
bool InitOkay() { return mInitOkay; }
|
|
|
|
#else
|
|
|
|
nsCUPSShim() = default;
|
|
|
|
bool InitOkay() { return true; }
|
|
|
|
#endif
|
2020-08-07 15:07:48 +03:00
|
|
|
|
2020-08-06 20:01:21 +03:00
|
|
|
/**
|
|
|
|
* Function pointers for supported functions. These are only
|
2004-09-07 21:55:27 +04:00
|
|
|
* valid after successful initialization.
|
|
|
|
*/
|
2020-08-06 20:01:21 +03:00
|
|
|
#define CUPS_SHIM_ALL_FUNCS(X) \
|
|
|
|
X(cupsAddOption) \
|
|
|
|
X(cupsCheckDestSupported) \
|
|
|
|
X(cupsConnectDest) \
|
|
|
|
X(cupsCopyDest) \
|
|
|
|
X(cupsCopyDestInfo) \
|
2020-09-03 02:49:04 +03:00
|
|
|
X(cupsDoRequest) \
|
2020-10-15 08:02:46 +03:00
|
|
|
X(cupsEnumDests) \
|
2020-09-25 05:00:46 +03:00
|
|
|
X(cupsFindDestDefault) \
|
2020-08-06 20:01:21 +03:00
|
|
|
X(cupsFreeDestInfo) \
|
|
|
|
X(cupsFreeDests) \
|
2020-08-20 09:11:08 +03:00
|
|
|
X(cupsGetDestMediaDefault) \
|
2020-08-06 20:01:21 +03:00
|
|
|
X(cupsGetDestMediaCount) \
|
|
|
|
X(cupsGetDestMediaByIndex) \
|
2020-09-25 05:00:46 +03:00
|
|
|
X(cupsGetDestMediaByName) \
|
2020-08-06 20:01:21 +03:00
|
|
|
X(cupsGetDest) \
|
|
|
|
X(cupsGetDests) \
|
2020-08-06 20:26:04 +03:00
|
|
|
X(cupsGetNamedDest) \
|
2020-08-10 22:22:27 +03:00
|
|
|
X(cupsGetOption) \
|
2020-08-06 20:01:21 +03:00
|
|
|
X(cupsLocalizeDestMedia) \
|
|
|
|
X(cupsPrintFile) \
|
|
|
|
X(cupsTempFd) \
|
2020-09-03 02:49:04 +03:00
|
|
|
X(httpClose) \
|
|
|
|
X(ippAddString) \
|
|
|
|
X(ippAddStrings) \
|
|
|
|
X(ippDelete) \
|
|
|
|
X(ippFindAttribute) \
|
|
|
|
X(ippGetCount) \
|
|
|
|
X(ippGetString) \
|
|
|
|
X(ippNewRequest)
|
2020-08-06 20:01:21 +03:00
|
|
|
|
2020-08-11 03:25:18 +03:00
|
|
|
#ifdef CUPS_SHIM_RUNTIME_LINK
|
|
|
|
// Define a single field which holds a function pointer.
|
2020-11-04 21:56:13 +03:00
|
|
|
# define CUPS_SHIM_FUNC_DECL(X) decltype(::X)* X = nullptr;
|
2020-08-11 03:25:18 +03:00
|
|
|
#else
|
|
|
|
// Define a static constexpr function pointer. GCC can sometimes optimize
|
|
|
|
// away the pointer fetch for this.
|
|
|
|
# define CUPS_SHIM_FUNC_DECL(X) static constexpr decltype(::X)* const X = ::X;
|
|
|
|
#endif
|
|
|
|
|
2020-08-06 20:01:21 +03:00
|
|
|
CUPS_SHIM_ALL_FUNCS(CUPS_SHIM_FUNC_DECL)
|
|
|
|
#undef CUPS_SHIM_FUNC_DECL
|
2004-09-07 21:55:27 +04:00
|
|
|
|
2020-11-04 05:23:47 +03:00
|
|
|
#ifdef CUPS_SHIM_RUNTIME_LINK
|
2020-11-04 21:56:13 +03:00
|
|
|
private:
|
|
|
|
bool mInitOkay = false;
|
|
|
|
PRLibrary* mCupsLib = nullptr;
|
2020-08-11 03:25:18 +03:00
|
|
|
#endif
|
2004-09-07 21:55:27 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsCUPSShim_h___ */
|