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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/printing/printer_capabilities.h"
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/containers/contains.h"
#include "base/logging.h"
#include "base/metrics/histogram_macros.h"
#include "base/strings/strcat.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/threading/scoped_blocking_call.h"
#include "base/types/optional_util.h"
#include "base/values.h"
#include "build/build_config.h"
#include "build/buildflag.h"
#include "chrome/common/printing/printing_buildflags.h"
#include "components/crash/core/common/crash_keys.h"
#include "components/device_event_log/device_event_log.h"
#include "components/printing/common/cloud_print_cdd_conversion.h"
#include "components/strings/grit/components_strings.h"
#include "printing/backend/print_backend.h"
#include "printing/backend/print_backend_consts.h"
#include "printing/mojom/print.mojom.h"
#include "printing/print_job_constants.h"
#include "ui/base/l10n/l10n_util.h"
#if BUILDFLAG(IS_WIN)
#include "base/strings/string_split.h"
#include "base/strings/utf_string_conversions.h"
#endif // BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_CHROMEOS)
#include "chrome/common/printing/ipp_l10n.h"
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(PRINT_MEDIA_L10N_ENABLED)
#include "chrome/common/printing/print_media_l10n.h"
#if BUILDFLAG(IS_MAC)
#include "printing/printing_features.h"
#endif // BUILDFLAG(IS_MAC)
#endif // BUILDFLAG(PRINT_MEDIA_L10N_ENABLED)
namespace printing {
const char kPrinter[] = "printer";
namespace {
#if BUILDFLAG(PRINT_MEDIA_L10N_ENABLED)
// Iterate on the `Papers` of a given printer `info` and set the
// `display_name` members, localizing where possible, as well as the `vendor_id`
// members. The `Papers` will be sorted in place when this function returns.
void PopulateAndSortAllPaperNames(PrinterSemanticCapsAndDefaults& info) {
MediaSizeInfo default_paper =
LocalizePaperDisplayName(info.default_paper.size_um());
info.default_paper.set_display_name(
base::UTF16ToUTF8(default_paper.display_name));
info.default_paper.set_vendor_id(default_paper.vendor_id);
// Pair the paper entries with their sort info so they can be sorted.
std::vector<PaperWithSizeInfo> size_list;
for (PrinterSemanticCapsAndDefaults::Paper& paper : info.papers) {
// Copy `paper.size_um` to avoid potentially using `paper` after calling
// std::move(paper).
gfx::Size size_um = paper.size_um();
size_list.emplace_back(LocalizePaperDisplayName(size_um), std::move(paper));
}
// Sort and recreate the list with localizations inserted.
SortPaperDisplayNames(size_list);
info.papers.clear();
for (auto& pair : size_list) {
auto& paper = info.papers.emplace_back(std::move(pair.paper));
paper.set_display_name(base::UTF16ToUTF8(pair.size_info.display_name));
paper.set_vendor_id(pair.size_info.vendor_id);
}
}
#endif // BUILDFLAG(PRINT_MEDIA_L10N_ENABLED)
#if BUILDFLAG(IS_CHROMEOS)
void PopulateMediaTypeLocalization(
PrinterSemanticCapsAndDefaults::MediaTypes& media_types) {
auto& l10n_map = CapabilityLocalizationMap();
for (auto& value : media_types) {
auto value_it =
l10n_map.find(base::StrCat({"media-type/", value.vendor_id}));
if (value_it != l10n_map.end()) {
value.display_name = l10n_util::GetStringUTF8(value_it->second);
}
}
}
void PopulateAdvancedCapsLocalization(
std::vector<AdvancedCapability>* advanced_capabilities) {
auto& l10n_map = CapabilityLocalizationMap();
for (AdvancedCapability& capability : *advanced_capabilities) {
auto capability_it = l10n_map.find(capability.name);
if (capability_it != l10n_map.end())
capability.display_name = l10n_util::GetStringUTF8(capability_it->second);
for (AdvancedCapabilityValue& value : capability.values) {
auto value_it =
l10n_map.find(base::StrCat({capability.name, "/", value.name}));
if (value_it != l10n_map.end())
value.display_name = l10n_util::GetStringUTF8(value_it->second);
}
}
}
#endif // BUILDFLAG(IS_CHROMEOS)
// Returns a dictionary representing printer capabilities as CDD, or
// a Value of type NONE if no capabilities are provided.
base::Value AssemblePrinterCapabilities(const std::string& device_name,
bool has_secure_protocol,
PrinterSemanticCapsAndDefaults* caps) {
DCHECK(!device_name.empty());
if (!caps)
return base::Value();
#if BUILDFLAG(PRINT_MEDIA_L10N_ENABLED)
bool populate_paper_names = true;
#if BUILDFLAG(IS_MAC)
// TODO(crbug.com/339188518): Is this needed on Linux?
//
// Paper display name localization and vendor ID assignment is intended for
// use with the CUPS IPP backend. If the CUPS IPP backend is not enabled,
// localization will not properly occur.
populate_paper_names =
base::FeatureList::IsEnabled(features::kCupsIppPrintingBackend);
#endif
if (populate_paper_names) {
PopulateAndSortAllPaperNames(*caps);
}
#endif // BUILDFLAG(PRINT_MEDIA_L10N_ENABLED)
#if BUILDFLAG(IS_CHROMEOS)
PopulateMediaTypeLocalization(caps->media_types);
if (!has_secure_protocol)
caps->pin_supported = false;
PopulateAdvancedCapsLocalization(&caps->advanced_capabilities);
#endif // BUILDFLAG(IS_CHROMEOS)
return cloud_print::PrinterSemanticCapsAndDefaultsToCdd(*caps);
}
} // namespace
#if BUILDFLAG(IS_WIN)
std::string GetUserFriendlyName(const std::string& printer_name) {
// `printer_name` may be a UNC path like \\printserver\printername.
if (!base::StartsWith(printer_name, "\\\\",
base::CompareCase::INSENSITIVE_ASCII)) {
return printer_name;
}
// If it is a UNC path, split the "printserver\printername" portion and
// generate a friendly name, like Windows does.
std::string printer_name_trimmed = printer_name.substr(2);
std::vector<std::string> tokens = base::SplitString(
printer_name_trimmed, "\\", base::KEEP_WHITESPACE, base::SPLIT_WANT_ALL);
if (tokens.size() != 2 || tokens[0].empty() || tokens[1].empty())
return printer_name;
return l10n_util::GetStringFUTF8(
IDS_PRINT_PREVIEW_FRIENDLY_WIN_NETWORK_PRINTER_NAME,
base::UTF8ToUTF16(tokens[1]), base::UTF8ToUTF16(tokens[0]));
}
#endif
base::Value::Dict AssemblePrinterSettings(
const std::string& device_name,
const PrinterBasicInfo& basic_info,
bool has_secure_protocol,
PrinterSemanticCapsAndDefaults* caps) {
base::Value::Dict printer_info;
printer_info.Set(kSettingDeviceName, device_name);
printer_info.Set(kSettingPrinterName, basic_info.display_name);
printer_info.Set(kSettingPrinterDescription, basic_info.printer_description);
base::Value::Dict options;
#if BUILDFLAG(IS_CHROMEOS)
printer_info.Set(
kCUPSEnterprisePrinter,
base::Contains(basic_info.options, kCUPSEnterprisePrinter) &&
basic_info.options.at(kCUPSEnterprisePrinter) == kValueTrue);
#endif // BUILDFLAG(IS_CHROMEOS)
printer_info.Set(kSettingPrinterOptions, std::move(options));
base::Value::Dict printer_info_capabilities;
printer_info_capabilities.Set(kPrinter, std::move(printer_info));
base::Value capabilities =
AssemblePrinterCapabilities(device_name, has_secure_protocol, caps);
if (capabilities.is_dict()) {
printer_info_capabilities.Set(kSettingCapabilities,
std::move(capabilities));
}
return printer_info_capabilities;
}
base::Value::Dict GetSettingsOnBlockingTaskRunner(
const std::string& device_name,
const PrinterBasicInfo& basic_info,
PrinterSemanticCapsAndDefaults::Papers user_defined_papers,
scoped_refptr<PrintBackend> print_backend) {
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
PRINTER_LOG(EVENT) << "Get printer capabilities start for " << device_name;
const std::vector<std::string> driver_info =
print_backend->GetPrinterDriverInfo(device_name);
PRINTER_LOG(EVENT) << "Driver info: " << base::JoinString(driver_info, ";");
crash_keys::ScopedPrinterInfo crash_key(device_name, driver_info);
auto caps = std::make_optional<PrinterSemanticCapsAndDefaults>();
mojom::ResultCode result =
print_backend->GetPrinterSemanticCapsAndDefaults(device_name, &*caps);
if (result == mojom::ResultCode::kSuccess) {
PRINTER_LOG(EVENT) << "Got printer capabilities for " << device_name;
caps->user_defined_papers = std::move(user_defined_papers);
} else {
// Failed to get capabilities, but proceed to assemble the settings to
// return what information we do have.
PRINTER_LOG(ERROR) << "Failed to get capabilities for " << device_name
<< ", result: " << result;
caps = std::nullopt;
}
return AssemblePrinterSettings(device_name, basic_info,
/*has_secure_protocol=*/false,
base::OptionalToPtr(caps));
}
} // namespace printing
|