2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ex: set tabstop=8 softtabstop=4 shiftwidth=4 expandtab: */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsCUPSShim_h___
|
|
|
|
#define nsCUPSShim_h___
|
|
|
|
|
|
|
|
#include "prtypes.h"
|
|
|
|
|
|
|
|
/* Various CUPS data types. We don't #include cups headers to avoid
|
|
|
|
* requiring CUPS to be installed on the build host (and to avoid having
|
|
|
|
* to test for CUPS in configure).
|
|
|
|
*/
|
|
|
|
typedef struct /**** Printer Options ****/
|
|
|
|
{
|
|
|
|
char *name; /* Name of option */
|
|
|
|
char *value; /* Value of option */
|
|
|
|
} cups_option_t;
|
|
|
|
|
|
|
|
typedef struct /**** Destination ****/
|
|
|
|
{
|
|
|
|
char *name, /* Printer or class name */
|
|
|
|
*instance; /* Local instance name or NULL */
|
|
|
|
int is_default; /* Is this printer the default? */
|
|
|
|
int num_options; /* Number of options */
|
|
|
|
cups_option_t *options; /* Options */
|
|
|
|
} cups_dest_t;
|
|
|
|
|
2012-09-25 09:18:38 -07:00
|
|
|
typedef cups_dest_t* (*CupsGetDestType)(const char *printer,
|
|
|
|
const char *instance,
|
|
|
|
int num_dests,
|
|
|
|
cups_dest_t *dests);
|
|
|
|
typedef int (*CupsGetDestsType)(cups_dest_t **dests);
|
|
|
|
typedef int (*CupsFreeDestsType)(int num_dests,
|
|
|
|
cups_dest_t *dests);
|
|
|
|
typedef int (*CupsPrintFileType)(const char *printer,
|
|
|
|
const char *filename,
|
|
|
|
const char *title,
|
|
|
|
int num_options,
|
|
|
|
cups_option_t *options);
|
|
|
|
typedef int (*CupsTempFdType)(char *filename,
|
|
|
|
int length);
|
|
|
|
typedef int (*CupsAddOptionType)(const char *name,
|
|
|
|
const char *value,
|
|
|
|
int num_options,
|
|
|
|
cups_option_t **options);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
struct PRLibrary;
|
|
|
|
|
2010-12-22 16:59:41 -08:00
|
|
|
/* Note: this class relies on static initialization. */
|
2010-06-28 10:36:17 -07:00
|
|
|
class nsCUPSShim {
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Initialize this object. Attempt to load the CUPS shared
|
|
|
|
* library and find function pointers for the supported
|
|
|
|
* functions (see below).
|
2011-10-03 00:56:21 -07:00
|
|
|
* @return false if the shared library could not be loaded, or if
|
2007-03-22 10:30:00 -07:00
|
|
|
* any of the functions could not be found.
|
2011-10-03 00:56:21 -07:00
|
|
|
* true for successful initialization.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Init();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
2011-10-03 00:56:21 -07:00
|
|
|
* @return true if the object was initialized successfully.
|
|
|
|
* false otherwise.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2012-07-30 07:20:58 -07:00
|
|
|
bool IsInitialized() { return nullptr != mCupsLib; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/* Function pointers for supported functions. These are only
|
|
|
|
* valid after successful initialization.
|
|
|
|
*/
|
|
|
|
CupsAddOptionType mCupsAddOption;
|
|
|
|
CupsFreeDestsType mCupsFreeDests;
|
|
|
|
CupsGetDestType mCupsGetDest;
|
|
|
|
CupsGetDestsType mCupsGetDests;
|
|
|
|
CupsPrintFileType mCupsPrintFile;
|
|
|
|
CupsTempFdType mCupsTempFd;
|
|
|
|
|
|
|
|
private:
|
|
|
|
PRLibrary *mCupsLib;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* nsCUPSShim_h___ */
|