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
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* These authors would like to acknowledge the Spanish Ministry of Industry,
* Tourism and Trade, for the support in the project TSI020301-2008-2
* "PIRAmIDE: Personalizable Interactions with Resources on AmI-enabled
* Mobile Dynamic Environments", led by Treelogic
* ( http://www.treelogic.com/ ):
*
* http://www.piramidepse.com/
*/
// package com.google.zxing.client.result;
// import java.util.Map;
// import java.util.Objects;
use std::collections::HashMap;
use super::{ParsedRXingResult, ParsedRXingResultType};
/**
* Represents a parsed result that encodes extended product information as encoded
* by the RSS format, like weight, price, dates, etc.
*
* @author Antonio Manuel Benjumea Conde, Servinform, S.A.
* @author Agustín Delgado, Servinform, S.A.
*/
#[derive(PartialEq, Eq, Debug)]
pub struct ExpandedProductParsedRXingResult {
rawText: String,
productID: String,
sscc: String,
lotNumber: String,
productionDate: String,
packagingDate: String,
bestBeforeDate: String,
expirationDate: String,
weight: String,
weightType: String,
weightIncrement: String,
price: String,
priceIncrement: String,
priceCurrency: String,
// For AIS that not exist in this object
uncommonAIs: HashMap<String, String>,
}
impl ParsedRXingResult for ExpandedProductParsedRXingResult {
fn getType(&self) -> super::ParsedRXingResultType {
ParsedRXingResultType::PRODUCT
}
fn getDisplayRXingResult(&self) -> String {
self.rawText.clone()
}
}
impl ExpandedProductParsedRXingResult {
pub const KILOGRAM: &'static str = "KG";
pub const POUND: &'static str = "LB";
#[allow(clippy::too_many_arguments)]
pub fn new(
rawText: String,
productID: String,
sscc: String,
lotNumber: String,
productionDate: String,
packagingDate: String,
bestBeforeDate: String,
expirationDate: String,
weight: String,
weightType: String,
weightIncrement: String,
price: String,
priceIncrement: String,
priceCurrency: String,
uncommonAIs: HashMap<String, String>,
) -> Self {
Self {
rawText,
productID,
sscc,
lotNumber,
productionDate,
packagingDate,
bestBeforeDate,
expirationDate,
weight,
weightType,
weightIncrement,
price,
priceIncrement,
priceCurrency,
uncommonAIs,
}
}
pub fn getRawText(&self) -> &str {
&self.rawText
}
pub fn getProductID(&self) -> &str {
&self.productID
}
pub fn getSscc(&self) -> &str {
&self.sscc
}
pub fn getLotNumber(&self) -> &str {
&self.lotNumber
}
pub fn getProductionDate(&self) -> &str {
&self.productionDate
}
pub fn getPackagingDate(&self) -> &str {
&self.packagingDate
}
pub fn getBestBeforeDate(&self) -> &str {
&self.bestBeforeDate
}
pub fn getExpirationDate(&self) -> &str {
&self.expirationDate
}
pub fn getWeight(&self) -> &str {
&self.weight
}
pub fn getWeightType(&self) -> &str {
&self.weightType
}
pub fn getWeightIncrement(&self) -> &str {
&self.weightIncrement
}
pub fn getPrice(&self) -> &str {
&self.price
}
pub fn getPriceIncrement(&self) -> &str {
&self.priceIncrement
}
pub fn getPriceCurrency(&self) -> &str {
&self.priceCurrency
}
pub fn getUncommonAIs(&self) -> &HashMap<String, String> {
&self.uncommonAIs
}
}