diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-07-26 20:07:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-07-27 10:45:05 +0200 |
commit | 93f28ca499c6d15415f359a9e868a72bbcdc9b4b (patch) | |
tree | b9e3ea0b04b645a4e552482e50804322a69799e3 /vcl | |
parent | 8fe5a832b02ea6c5113c573f5b9c23e58049a4d2 (diff) |
tdf#149439 Update Custom values that may have changed since last printer check
keep any value the user explicitly set, but update one that was taken
from lpoptions if that changed
Change-Id: I02ed4ff575cb7b2580b777bb0948de2ff7211621
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137484
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/ppdparser.hxx | 1 | ||||
-rw-r--r-- | vcl/unx/generic/print/prtsetup.cxx | 1 | ||||
-rw-r--r-- | vcl/unx/generic/printer/cupsmgr.cxx | 85 | ||||
-rw-r--r-- | vcl/unx/generic/printer/ppdparser.cxx | 1 |
4 files changed, 55 insertions, 33 deletions
diff --git a/vcl/inc/ppdparser.hxx b/vcl/inc/ppdparser.hxx index 1222bc1704a7..be5c64feab01 100644 --- a/vcl/inc/ppdparser.hxx +++ b/vcl/inc/ppdparser.hxx @@ -48,6 +48,7 @@ struct VCL_DLLPUBLIC PPDValue //see http://www.cups.org/documentation.php/spec-ppd.html#OPTIONS //for full specs, only the basics are implemented here bool m_bCustomOption; + mutable bool m_bCustomOptionSetViaApp; mutable OUString m_aCustomOption; OUString m_aOption; OUString m_aValue; diff --git a/vcl/unx/generic/print/prtsetup.cxx b/vcl/unx/generic/print/prtsetup.cxx index 56ee475e701e..a13133d6017b 100644 --- a/vcl/unx/generic/print/prtsetup.cxx +++ b/vcl/unx/generic/print/prtsetup.cxx @@ -418,6 +418,7 @@ IMPL_LINK(RTSDevicePage, ModifyHdl, weld::Entry&, rEdit, void) // tdf#123734 Custom PPD option values are a CUPS extension to PPDs and the user-set value // needs to be prefixed with "Custom." in order to be processed properly m_pCustomValue->m_aCustomOption = "Custom." + rEdit.get_text(); + m_pCustomValue->m_bCustomOptionSetViaApp = true; } } diff --git a/vcl/unx/generic/printer/cupsmgr.cxx b/vcl/unx/generic/printer/cupsmgr.cxx index 5cb91e05df66..f03780b2886f 100644 --- a/vcl/unx/generic/printer/cupsmgr.cxx +++ b/vcl/unx/generic/printer/cupsmgr.cxx @@ -254,6 +254,45 @@ void CUPSManager::runDests() #endif } +static void SetIfCustomOption(PPDContext& rContext, const cups_option_t& rOption, rtl_TextEncoding aEncoding) +{ + if (strncmp(rOption.value, RTL_CONSTASCII_STRINGPARAM("Custom.")) == 0) + { + const PPDParser* pParser = rContext.getParser(); + if (!pParser) + { + // normal for first sight of this printer + return; + } + + const PPDKey* pKey = pParser->getKey(OStringToOUString(rOption.name, aEncoding)); + if (!pKey) + { + SAL_WARN("vcl.unx.print", "Custom key " << rOption.name << " not found"); + return; + } + + const PPDValue* pCustomValue = rContext.getValue(pKey); + if (!pCustomValue) + { + SAL_WARN("vcl.unx.print", "Value for " << rOption.name << " not found"); + return; + } + + if (!pCustomValue->m_bCustomOption) + { + SAL_WARN("vcl.unx.print", "Value for " << rOption.name << " not set to custom option"); + return; + } + + // seems sensible to keep a value the user explicitly set even if lpoptions was used to set + // another default + if (pCustomValue->m_bCustomOptionSetViaApp) + return; + pCustomValue->m_aCustomOption = OStringToOUString(rOption.value, aEncoding); + } +} + void CUPSManager::initialize() { // get normal printers, clear printer list @@ -332,16 +371,6 @@ void CUPSManager::initialize() if( pDest->is_default ) m_aDefaultPrinter = aPrinterName; - for( int k = 0; k < pDest->num_options; k++ ) - { - if(!strcmp(pDest->options[k].name, "printer-info")) - aPrinter.m_aInfo.m_aComment=OStringToOUString(pDest->options[k].value, aEncoding); - if(!strcmp(pDest->options[k].name, "printer-location")) - aPrinter.m_aInfo.m_aLocation=OStringToOUString(pDest->options[k].value, aEncoding); - if(!strcmp(pDest->options[k].name, "auth-info-required")) - aPrinter.m_aInfo.m_aAuthInfoRequired=OStringToOUString(pDest->options[k].value, aEncoding); - } - // note: the parser that goes with the PrinterInfo // is created implicitly by the JobData::operator=() // when it detects the NULL ptr m_pParser. @@ -360,6 +389,18 @@ void CUPSManager::initialize() aPrinter.m_aInfo.setDefaultBackend(bUsePDF); aPrinter.m_aInfo.m_aDriverName = "CUPS:" + aPrinterName; + for( int k = 0; k < pDest->num_options; k++ ) + { + if(!strcmp(pDest->options[k].name, "printer-info")) + aPrinter.m_aInfo.m_aComment=OStringToOUString(pDest->options[k].value, aEncoding); + if(!strcmp(pDest->options[k].name, "printer-location")) + aPrinter.m_aInfo.m_aLocation=OStringToOUString(pDest->options[k].value, aEncoding); + if(!strcmp(pDest->options[k].name, "auth-info-required")) + aPrinter.m_aInfo.m_aAuthInfoRequired=OStringToOUString(pDest->options[k].value, aEncoding); + // tdf#149439 Update Custom values that may have changed if this is not a newly discovered printer + SetIfCustomOption(aPrinter.m_aInfo.m_aContext, pDest->options[k], aEncoding); + } + m_aPrinters[ aPrinter.m_aInfo.m_aPrinterName ] = aPrinter; m_aCUPSDestMap[ aPrinter.m_aInfo.m_aPrinterName ] = nPrinter; } @@ -496,29 +537,7 @@ const PPDParser* CUPSManager::createCUPSParser( const OUString& rPrinter ) // tdf#149439 Set Custom values. for (int k = 0; k < pDest->num_options; ++k) - { - if (strncmp(pDest->options[k].value, RTL_CONSTASCII_STRINGPARAM("Custom.")) == 0) - { - const PPDKey* pKey = rContext.getParser()->getKey(OStringToOUString(pDest->options[k].name, aEncoding)); - if (!pKey) - { - SAL_WARN("vcl.unx.print", "Custom key " << pDest->options[k].name << " not found"); - continue; - } - const PPDValue* pCustomValue = rContext.getValue(pKey); - if (!pCustomValue) - { - SAL_WARN("vcl.unx.print", "Value for " << pDest->options[k].name << " not found"); - continue; - } - if (!pCustomValue->m_bCustomOption) - { - SAL_WARN("vcl.unx.print", "Value for " << pDest->options[k].name << " not set to custom option"); - continue; - } - pCustomValue->m_aCustomOption = OStringToOUString(pDest->options[k].value, aEncoding); - } - } + SetIfCustomOption(rContext, pDest->options[k], aEncoding); rInfo.m_pParser = pNewParser; rInfo.m_aContext = rContext; diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx index af27c61610c2..043d07bc2199 100644 --- a/vcl/unx/generic/printer/ppdparser.cxx +++ b/vcl/unx/generic/printer/ppdparser.cxx @@ -1628,6 +1628,7 @@ PPDValue* PPDKey::insertValue(const OUString& rOption, PPDValueType eType, bool PPDValue aValue; aValue.m_aOption = rOption; aValue.m_bCustomOption = bCustomOption; + aValue.m_bCustomOptionSetViaApp = false; aValue.m_eType = eType; m_aValues[ rOption ] = aValue; PPDValue* pValue = &m_aValues[rOption]; |