2015-06-06 01:08:05 +00:00
|
|
|
//! Module to handle colors and themes in the UI.
|
|
|
|
|
|
|
|
use std::io;
|
|
|
|
use std::io::Read;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::path::Path;
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
use backend::Backend;
|
|
|
|
|
2015-06-06 01:08:05 +00:00
|
|
|
use toml;
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
use B;
|
|
|
|
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Text effect
|
2016-06-30 00:36:20 +00:00
|
|
|
pub enum Effect {
|
2016-07-12 03:26:33 +00:00
|
|
|
/// No effect
|
2016-06-30 00:36:20 +00:00
|
|
|
Simple,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Reverses foreground and background colors
|
2016-06-30 00:36:20 +00:00
|
|
|
Reverse,
|
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
/// Possible color style for a cell.
|
|
|
|
///
|
|
|
|
/// Represents a color pair role to use when printing something.
|
|
|
|
///
|
|
|
|
/// The current theme will assign each role a foreground and background color.
|
2015-06-06 01:08:05 +00:00
|
|
|
#[derive(Clone,Copy)]
|
2016-07-01 06:38:01 +00:00
|
|
|
pub enum ColorStyle {
|
2015-06-06 01:08:05 +00:00
|
|
|
/// Application background, where no view is present.
|
|
|
|
Background,
|
|
|
|
/// Color used by view shadows. Only background matters.
|
|
|
|
Shadow,
|
|
|
|
/// Main text with default background.
|
|
|
|
Primary,
|
|
|
|
/// Secondary text color, with default background.
|
|
|
|
Secondary,
|
|
|
|
/// Tertiary text color, with default background.
|
|
|
|
Tertiary,
|
|
|
|
/// Title text color with default background.
|
|
|
|
TitlePrimary,
|
|
|
|
/// Alternative color for a title.
|
|
|
|
TitleSecondary,
|
|
|
|
/// Alternate text with highlight background.
|
|
|
|
Highlight,
|
|
|
|
/// Highlight color for inactive views (not in focus).
|
|
|
|
HighlightInactive,
|
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
impl ColorStyle {
|
2015-06-06 01:08:05 +00:00
|
|
|
/// Returns the ncurses pair ID associated with this color pair.
|
2016-07-01 06:38:01 +00:00
|
|
|
pub fn id(self) -> i16 {
|
2015-06-06 01:08:05 +00:00
|
|
|
match self {
|
2016-07-01 06:38:01 +00:00
|
|
|
ColorStyle::Background => 1,
|
|
|
|
ColorStyle::Shadow => 2,
|
|
|
|
ColorStyle::Primary => 3,
|
|
|
|
ColorStyle::Secondary => 4,
|
|
|
|
ColorStyle::Tertiary => 5,
|
|
|
|
ColorStyle::TitlePrimary => 6,
|
|
|
|
ColorStyle::TitleSecondary => 7,
|
|
|
|
ColorStyle::Highlight => 8,
|
|
|
|
ColorStyle::HighlightInactive => 9,
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents the style a Cursive application will use.
|
|
|
|
#[derive(Clone,Debug)]
|
|
|
|
pub struct Theme {
|
|
|
|
/// Wheter views in a StackView should have shadows.
|
|
|
|
pub shadow: bool,
|
|
|
|
/// How view borders should be drawn.
|
|
|
|
pub borders: BorderStyle,
|
|
|
|
/// What colors should be used through the application?
|
2016-07-01 06:38:01 +00:00
|
|
|
pub colors: Palette,
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
impl Default for Theme {
|
|
|
|
fn default() -> Self {
|
2015-06-06 01:08:05 +00:00
|
|
|
Theme {
|
|
|
|
shadow: true,
|
|
|
|
borders: BorderStyle::Simple,
|
2016-07-01 06:38:01 +00:00
|
|
|
colors: Palette {
|
|
|
|
background: Color::Blue,
|
|
|
|
shadow: Color::Black,
|
|
|
|
view: Color::White,
|
|
|
|
primary: Color::Black,
|
|
|
|
secondary: Color::Blue,
|
|
|
|
tertiary: Color::White,
|
|
|
|
title_primary: Color::Red,
|
|
|
|
title_secondary: Color::Yellow,
|
|
|
|
highlight: Color::Red,
|
|
|
|
highlight_inactive: Color::Blue,
|
2015-06-06 01:08:05 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2016-07-01 06:38:01 +00:00
|
|
|
}
|
2015-06-06 01:08:05 +00:00
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
impl Theme {
|
2015-06-06 01:08:05 +00:00
|
|
|
fn load(&mut self, table: &toml::Table) {
|
2016-06-28 05:40:11 +00:00
|
|
|
if let Some(&toml::Value::Boolean(shadow)) = table.get("shadow") {
|
|
|
|
self.shadow = shadow;
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
|
2016-06-28 05:40:11 +00:00
|
|
|
if let Some(&toml::Value::String(ref borders)) = table.get("borders") {
|
|
|
|
if let Some(borders) = BorderStyle::from(borders) {
|
|
|
|
self.borders = borders;
|
2016-06-25 23:36:22 +00:00
|
|
|
}
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
|
2016-06-28 05:40:11 +00:00
|
|
|
if let Some(&toml::Value::Table(ref table)) = table.get("colors") {
|
|
|
|
self.colors.load(table);
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
fn activate(&self) {
|
|
|
|
// Initialize each color with the backend
|
|
|
|
B::init_color_style(ColorStyle::Background,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.view,
|
|
|
|
&self.colors.background);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::Shadow,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.shadow,
|
|
|
|
&self.colors.shadow);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::Primary,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.primary,
|
|
|
|
&self.colors.view);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::Secondary,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.secondary,
|
|
|
|
&self.colors.view);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::Tertiary,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.tertiary,
|
|
|
|
&self.colors.view);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::TitlePrimary,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.title_primary,
|
|
|
|
&self.colors.view);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::TitleSecondary,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.title_secondary,
|
|
|
|
&self.colors.view);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::Highlight,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.view,
|
|
|
|
&self.colors.highlight);
|
2016-07-01 06:38:01 +00:00
|
|
|
B::init_color_style(ColorStyle::HighlightInactive,
|
2016-07-10 02:05:51 +00:00
|
|
|
&self.colors.view,
|
|
|
|
&self.colors.highlight_inactive);
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
/// Specifies how some borders should be drawn.
|
|
|
|
///
|
|
|
|
/// Borders are used around Dialogs, select popups, and panels.
|
2015-06-06 01:08:05 +00:00
|
|
|
#[derive(Clone,Copy,Debug)]
|
|
|
|
pub enum BorderStyle {
|
|
|
|
/// Don't draw any border.
|
|
|
|
NoBorder,
|
|
|
|
/// Simple borders.
|
|
|
|
Simple,
|
2016-07-01 06:38:01 +00:00
|
|
|
/// Outset borders with a simple 3d effect.
|
2015-06-06 01:08:05 +00:00
|
|
|
Outset,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BorderStyle {
|
|
|
|
fn from(s: &str) -> Option<Self> {
|
|
|
|
if s == "simple" {
|
|
|
|
Some(BorderStyle::Simple)
|
|
|
|
} else if s == "none" {
|
|
|
|
Some(BorderStyle::NoBorder)
|
|
|
|
} else if s == "outset" {
|
|
|
|
Some(BorderStyle::Outset)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
/// Color configuration for the application.
|
|
|
|
///
|
|
|
|
/// Assign each color role an actual color.
|
2015-06-06 01:08:05 +00:00
|
|
|
#[derive(Clone,Debug)]
|
2016-07-01 06:38:01 +00:00
|
|
|
pub struct Palette {
|
2015-06-06 01:08:05 +00:00
|
|
|
/// Color used for the application background.
|
|
|
|
pub background: Color,
|
|
|
|
/// Color used for View shadows.
|
|
|
|
pub shadow: Color,
|
|
|
|
/// Color used for View backgrounds.
|
|
|
|
pub view: Color,
|
|
|
|
/// Primary color used for the text.
|
|
|
|
pub primary: Color,
|
|
|
|
/// Secondary color used for the text.
|
|
|
|
pub secondary: Color,
|
|
|
|
/// Tertiary color used for the text.
|
|
|
|
pub tertiary: Color,
|
|
|
|
/// Primary color used for title text.
|
|
|
|
pub title_primary: Color,
|
|
|
|
/// Secondary color used for title text.
|
|
|
|
pub title_secondary: Color,
|
|
|
|
/// Color used for highlighting text.
|
|
|
|
pub highlight: Color,
|
|
|
|
/// Color used for highlighting inactive text.
|
|
|
|
pub highlight_inactive: Color,
|
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
impl Palette {
|
2015-06-06 01:08:05 +00:00
|
|
|
fn load(&mut self, table: &toml::Table) {
|
2016-07-01 06:38:01 +00:00
|
|
|
|
|
|
|
load_color(&mut self.background, table.get("background"));
|
|
|
|
load_color(&mut self.shadow, table.get("shadow"));
|
|
|
|
load_color(&mut self.view, table.get("view"));
|
|
|
|
load_color(&mut self.primary, table.get("primary"));
|
|
|
|
load_color(&mut self.secondary, table.get("secondary"));
|
|
|
|
load_color(&mut self.tertiary, table.get("tertiary"));
|
|
|
|
load_color(&mut self.title_primary, table.get("title_primary"));
|
|
|
|
load_color(&mut self.title_secondary, table.get("title_secondary"));
|
|
|
|
load_color(&mut self.highlight, table.get("highlight"));
|
2016-07-10 02:05:51 +00:00
|
|
|
load_color(&mut self.highlight_inactive,
|
|
|
|
table.get("highlight_inactive"));
|
2016-07-01 06:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load_color(target: &mut Color, value: Option<&toml::Value>) -> bool {
|
|
|
|
if let Some(value) = value {
|
|
|
|
match *value {
|
2016-07-10 02:05:51 +00:00
|
|
|
toml::Value::String(ref value) => {
|
|
|
|
if let Some(color) = Color::parse(value) {
|
|
|
|
*target = color;
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
toml::Value::Array(ref array) => {
|
|
|
|
array.iter().any(|item| load_color(target, Some(item)))
|
|
|
|
}
|
2016-07-01 06:38:01 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents a color used by the theme.
|
|
|
|
#[derive(Clone,Debug)]
|
2016-07-01 06:38:01 +00:00
|
|
|
pub enum Color {
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Black color
|
|
|
|
///
|
|
|
|
/// Color #0
|
2016-07-01 06:38:01 +00:00
|
|
|
Black,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Red color
|
|
|
|
///
|
|
|
|
/// Color #1
|
2016-07-01 06:38:01 +00:00
|
|
|
Red,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Green color
|
|
|
|
///
|
|
|
|
/// Color #2
|
2016-07-01 06:38:01 +00:00
|
|
|
Green,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Yellow color (Red + Green)
|
|
|
|
///
|
|
|
|
/// Color #3
|
2016-07-01 06:38:01 +00:00
|
|
|
Yellow,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Blue color
|
|
|
|
///
|
|
|
|
/// Color #4
|
2016-07-01 06:38:01 +00:00
|
|
|
Blue,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Magenta color (Red + Blue)
|
|
|
|
///
|
|
|
|
/// Color #5
|
2016-07-01 06:38:01 +00:00
|
|
|
Magenta,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Cyan color (Green + Blue)
|
|
|
|
///
|
|
|
|
/// Color #6
|
2016-07-01 06:38:01 +00:00
|
|
|
Cyan,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// White color (Red + Green + Blue)
|
|
|
|
///
|
|
|
|
/// Color #7
|
2016-07-01 06:38:01 +00:00
|
|
|
White,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// True-color, 24-bit.
|
2016-07-01 06:38:01 +00:00
|
|
|
Rgb(u8, u8, u8),
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Low-resolution
|
|
|
|
///
|
|
|
|
/// Each value should be `<= 5` (you'll get panics otherwise).
|
|
|
|
///
|
|
|
|
/// These 216 possible colors are part of the default color palette.
|
2016-07-01 06:38:01 +00:00
|
|
|
RgbLowRes(u8, u8, u8),
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
|
2016-07-10 02:05:51 +00:00
|
|
|
impl Color {}
|
2015-06-06 01:08:05 +00:00
|
|
|
|
|
|
|
/// Possible error returned when loading a theme.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
/// An error occured when reading the file.
|
2016-06-28 05:40:11 +00:00
|
|
|
Io(io::Error),
|
2015-06-06 01:08:05 +00:00
|
|
|
/// An error occured when parsing the toml content.
|
2016-06-28 05:40:11 +00:00
|
|
|
Parse,
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<io::Error> for Error {
|
|
|
|
fn from(err: io::Error) -> Self {
|
2016-06-28 05:40:11 +00:00
|
|
|
Error::Io(err)
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Color {
|
2016-07-01 06:38:01 +00:00
|
|
|
fn parse(value: &str) -> Option<Self> {
|
|
|
|
Some(match value {
|
|
|
|
"black" => Color::Black,
|
|
|
|
"red" => Color::Red,
|
|
|
|
"green" => Color::Green,
|
|
|
|
"yellow" => Color::Yellow,
|
|
|
|
"blue" => Color::Blue,
|
|
|
|
"magenta" => Color::Magenta,
|
|
|
|
"cyan" => Color::Cyan,
|
|
|
|
"white" => Color::White,
|
|
|
|
value => return Color::parse_special(value),
|
|
|
|
})
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
fn parse_special(value: &str) -> Option<Color> {
|
|
|
|
if value.starts_with('#') {
|
|
|
|
|
|
|
|
let value = &value[1..];
|
|
|
|
// Compute per-color length, and amplitude
|
|
|
|
let (l, multiplier) = match value.len() {
|
|
|
|
6 => (2, 1),
|
|
|
|
3 => (1, 17),
|
|
|
|
_ => panic!("Cannot parse color: {}", value),
|
|
|
|
};
|
|
|
|
let r = load_hex(&value[0 * l..1 * l]) * multiplier;
|
|
|
|
let g = load_hex(&value[1 * l..2 * l]) * multiplier;
|
|
|
|
let b = load_hex(&value[2 * l..3 * l]) * multiplier;
|
|
|
|
Some(Color::Rgb(r as u8, g as u8, b as u8))
|
|
|
|
} else if value.len() == 3 {
|
|
|
|
// RGB values between 0 and 5 maybe?
|
2016-07-10 02:05:51 +00:00
|
|
|
let rgb: Vec<_> =
|
|
|
|
value.chars().map(|c| c as i16 - '0' as i16).collect();
|
2016-07-01 06:38:01 +00:00
|
|
|
if rgb.iter().all(|&i| i >= 0 && i < 6) {
|
2016-07-10 02:05:51 +00:00
|
|
|
Some(Color::RgbLowRes(rgb[0] as u8,
|
|
|
|
rgb[1] as u8,
|
|
|
|
rgb[2] as u8))
|
2016-07-01 06:38:01 +00:00
|
|
|
} else {
|
|
|
|
None
|
2016-06-25 23:36:22 +00:00
|
|
|
}
|
2016-07-01 06:38:01 +00:00
|
|
|
} else {
|
|
|
|
None
|
2015-06-06 04:35:42 +00:00
|
|
|
}
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-07-11 02:11:21 +00:00
|
|
|
/// Loads a theme file, and returns its representation.
|
2015-06-06 01:08:05 +00:00
|
|
|
///
|
2016-07-11 02:11:21 +00:00
|
|
|
/// The file should be a toml file. All fields are optional.
|
|
|
|
///
|
|
|
|
/// Here are the possible entries:
|
2015-06-06 01:08:05 +00:00
|
|
|
///
|
|
|
|
/// ```text
|
|
|
|
/// # Every field in a theme file is optional.
|
2016-03-15 22:37:57 +00:00
|
|
|
///
|
2015-06-06 01:08:05 +00:00
|
|
|
/// shadow = false
|
2015-06-06 04:35:42 +00:00
|
|
|
/// borders = "simple" # Alternatives are "none" and "outset"
|
2016-03-15 22:37:57 +00:00
|
|
|
///
|
2015-06-06 01:08:05 +00:00
|
|
|
/// # Base colors are red, green, blue,
|
|
|
|
/// # cyan, magenta, yellow, white and black.
|
|
|
|
/// [colors]
|
|
|
|
/// background = "black"
|
|
|
|
/// # If the value is an array, the first valid color will be used.
|
|
|
|
/// # If the terminal doesn't support custom color,
|
|
|
|
/// # non-base colors will be skipped.
|
|
|
|
/// shadow = ["#000000", "black"]
|
|
|
|
/// view = "#d3d7cf"
|
2016-03-15 22:37:57 +00:00
|
|
|
///
|
2015-06-06 01:08:05 +00:00
|
|
|
/// # Array and simple values have the same effect.
|
|
|
|
/// primary = ["#111111"]
|
|
|
|
/// secondary = "#EEEEEE"
|
|
|
|
/// tertiary = "#444444"
|
2016-03-15 22:37:57 +00:00
|
|
|
///
|
2015-06-06 01:08:05 +00:00
|
|
|
/// # Hex values can use lower or uppercase.
|
|
|
|
/// # (base color MUST be lowercase)
|
|
|
|
/// title_primary = "#ff5555"
|
|
|
|
/// title_secondary = "#ffff55"
|
2016-03-15 22:37:57 +00:00
|
|
|
///
|
2015-06-06 01:08:05 +00:00
|
|
|
/// # Lower precision values can use only 3 digits.
|
|
|
|
/// highlight = "#F00"
|
|
|
|
/// highlight_inactive = "#5555FF"
|
|
|
|
/// ```
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
/// Loads a theme and sets it as active.
|
2016-03-15 22:37:57 +00:00
|
|
|
pub fn load_theme<P: AsRef<Path>>(filename: P) -> Result<Theme, Error> {
|
2015-06-06 01:08:05 +00:00
|
|
|
let content = {
|
|
|
|
let mut content = String::new();
|
|
|
|
let mut file = try!(File::open(filename));
|
|
|
|
try!(file.read_to_string(&mut content));
|
|
|
|
content
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut parser = toml::Parser::new(&content);
|
|
|
|
let table = match parser.parse() {
|
|
|
|
Some(value) => value,
|
2016-06-28 05:40:11 +00:00
|
|
|
None => return Err(Error::Parse),
|
2015-06-06 01:08:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut theme = Theme::default();
|
|
|
|
theme.load(&table);
|
2016-07-01 06:38:01 +00:00
|
|
|
theme.activate();
|
2015-06-06 01:08:05 +00:00
|
|
|
|
|
|
|
Ok(theme)
|
|
|
|
}
|
|
|
|
|
2015-06-06 04:35:42 +00:00
|
|
|
/// Loads the default theme, and returns its representation.
|
|
|
|
pub fn load_default() -> Theme {
|
|
|
|
let theme = Theme::default();
|
2016-07-01 06:38:01 +00:00
|
|
|
theme.activate();
|
2015-06-06 04:35:42 +00:00
|
|
|
theme
|
|
|
|
}
|
|
|
|
|
2015-06-06 01:08:05 +00:00
|
|
|
/// Loads a hexadecimal code
|
2016-07-01 06:38:01 +00:00
|
|
|
fn load_hex(s: &str) -> u16 {
|
2015-06-06 01:08:05 +00:00
|
|
|
let mut sum = 0;
|
|
|
|
for c in s.chars() {
|
|
|
|
sum *= 16;
|
|
|
|
sum += match c {
|
2016-06-25 23:36:22 +00:00
|
|
|
n @ '0'...'9' => n as i16 - '0' as i16,
|
|
|
|
n @ 'a'...'f' => n as i16 - 'a' as i16 + 10,
|
|
|
|
n @ 'A'...'F' => n as i16 - 'A' as i16 + 10,
|
2015-06-06 01:08:05 +00:00
|
|
|
_ => 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-07-01 06:38:01 +00:00
|
|
|
sum as u16
|
2015-06-06 01:08:05 +00:00
|
|
|
}
|