nonogrid 0.7.3

Efficient nonogram solver
Documentation
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
use std::{any::Any, fmt, fs, io, num::ParseIntError};

use hashbrown::{HashMap, HashSet};
use log::info;

use crate::{
    block::{
        base::{
            clues_from_solution,
            color::{ColorId, ColorPalette, ColorValue},
        },
        binary::BinaryBlock,
        Block, Description,
    },
    board::Board,
    utils::{iter::FindOk, product, rc::MutRc, split_sections},
};

pub use self::{ini::MyFormat, xml::WebPbn};

#[derive(Debug)]
pub struct ParseError(pub String);

pub trait BoardParser: fmt::Debug {
    fn with_content(content: &str) -> Result<Self, ParseError>
    where
        Self: Sized;

    fn parse<B>(&self) -> Board<B>
    where
        B: Block;

    fn parse_rc<B>(&self) -> MutRc<Board<B>>
    where
        B: Block,
    {
        MutRc::new(self.parse())
    }

    fn infer_scheme(&self) -> PuzzleScheme;
}

impl From<io::Error> for ParseError {
    fn from(err: io::Error) -> Self {
        Self(format!("{:?}", err))
    }
}

pub trait LocalReader: BoardParser {
    fn read_local(file_name: &str) -> Result<Self, ParseError>
    where
        Self: Sized,
    {
        let content = Self::file_content(file_name)?;
        Self::with_content(&content)
    }
    fn file_content(file_name: &str) -> io::Result<String> {
        fs::read_to_string(file_name)
    }
}

#[cfg(feature = "web")]
impl From<reqwest::Error> for ParseError {
    fn from(err: reqwest::Error) -> Self {
        Self(format!("{:?}", err))
    }
}

pub trait NetworkReader: BoardParser {
    fn read_remote(file_name: &str) -> Result<Self, ParseError>
    where
        Self: Sized,
    {
        let content = Self::http_content(file_name)?;
        Self::with_content(&content)
    }

    #[cfg(feature = "web")]
    fn http_content(url: &str) -> Result<String, reqwest::Error> {
        info!("Requesting {} ...", url);
        let response = reqwest::blocking::get(url)?;
        response.text()
    }

    #[cfg(not(feature = "web"))]
    fn http_content(url: &str) -> Result<String, ParseError> {
        info!("Requesting {} ...", url);
        Err(ParseError(format!(
            "Cannot request url {}: no support for web client (hint: add --features=web)",
            url
        )))
    }
}

pub trait Paletted {
    fn get_colors(&self) -> Vec<(String, char, String)>;
    fn get_colors_sorted(&self) -> Vec<(String, char, String)> {
        let mut colors = self.get_colors();
        colors.sort_unstable_by(|(name1, ..), (name2, ..)| name1.cmp(name2));
        colors
    }

    fn default_palette(&self, white_name: &str, black_name: &str) -> ColorPalette {
        let mut palette = ColorPalette::with_white_and_black(white_name, black_name);

        for (name, symbol, value) in &self.get_colors_sorted() {
            let val = ColorValue::parse(value);
            palette.color_with_name_value_and_symbol(name, val, *symbol);
        }

        palette
    }
    fn get_palette(&self) -> ColorPalette;
}

#[derive(Debug, PartialEq, Clone, Copy)]
pub enum PuzzleScheme {
    BlackAndWhite,
    MultiColor,
}

#[cfg(feature = "ini")]
mod ini {
    use serde::Deserialize;

    use super::{
        Block, Board, BoardParser, ColorPalette, Description, LocalReader, Paletted, ParseError,
        PuzzleScheme,
    };

    #[derive(Debug, Deserialize)]
    struct Clues {
        rows: String,
        columns: String,
    }

    #[derive(Debug, Deserialize)]
    struct Colors {
        defs: Option<Vec<String>>,
    }

    #[derive(Debug, Deserialize)]
    pub struct MyFormat {
        clues: Clues,
        colors: Option<Colors>,
    }

    impl LocalReader for MyFormat {}

    impl From<toml::de::Error> for ParseError {
        fn from(err: toml::de::Error) -> Self {
            Self(format!("{:?}", err))
        }
    }

    impl BoardParser for MyFormat {
        fn with_content(content: &str) -> Result<Self, ParseError> {
            Ok(toml::from_str(content)?)
        }

        fn parse<B>(&self) -> Board<B>
        where
            B: Block,
        {
            let clues = &self.clues;
            let palette = self.get_palette();
            Board::with_descriptions_and_palette(
                Self::parse_clues(&clues.rows, &palette),
                Self::parse_clues(&clues.columns, &palette),
                Some(palette),
            )
        }

        fn infer_scheme(&self) -> PuzzleScheme {
            if let Some(colors) = &self.colors {
                if let Some(defs) = &colors.defs {
                    if !defs.is_empty() {
                        return PuzzleScheme::MultiColor;
                    }
                }
            }

            PuzzleScheme::BlackAndWhite
        }
    }

    impl MyFormat {
        fn parse_block<B>(block: &str, palette: &ColorPalette) -> B
        where
            B: Block,
        {
            let mut as_chars = block.chars();
            let value_color_pos = as_chars.position(|c| !c.is_digit(10));
            #[allow(clippy::option_if_let_else)]
            let (value, block_color) = if let Some(pos) = value_color_pos {
                let (value, color) = block.split_at(pos);
                (value, Some(color))
            } else {
                (block, palette.get_default())
            };

            let color_id = block_color.and_then(|name| palette.id_by_name(name));
            B::from_str_and_color(value, color_id)
        }

        fn parse_line<B>(descriptions: &str, palette: &ColorPalette) -> Option<Vec<Description<B>>>
        where
            B: Block,
        {
            let descriptions = descriptions.trim();
            let non_comment: &str = descriptions
                .split(&['#', ';'][..])
                .next()
                .expect("Split returned empty");

            if non_comment.is_empty() {
                return None;
            }

            Some(
                non_comment
                    .split(',')
                    .filter_map(|row| {
                        let row = row.trim().trim_matches(&['\'', '"'][..]);
                        if row.is_empty() {
                            None
                        } else {
                            Some(Description::new(
                                row.split_whitespace()
                                    .map(|block| Self::parse_block(block, palette))
                                    .collect(),
                            ))
                        }
                    })
                    .collect(),
            )
        }

        pub(super) fn parse_clues<B>(
            descriptions: &str,
            palette: &ColorPalette,
        ) -> Vec<Description<B>>
        where
            B: Block,
        {
            descriptions
                .lines()
                .flat_map(|line| Self::parse_line(line, palette).unwrap_or_default())
                .collect()
        }

        ///```
        /// # use nonogrid::parser::MyFormat;
        ///
        /// let s = "b = (blue) *";
        /// let def = MyFormat::parse_color_def(s);
        /// assert_eq!(def, ("b".to_string(), '*', "blue".to_string()));
        /// ```
        pub fn parse_color_def(color_def: impl AsRef<str>) -> (String, char, String) {
            let parts: Vec<_> = color_def.as_ref().split('=').map(str::trim).collect();
            let name = parts[0];
            let mut desc = parts[1].to_string();
            let symbol = desc.pop().expect("Empty color description in definition");

            desc = desc.trim().trim_matches(&['(', ')'][..]).to_string();
            (name.to_string(), symbol, desc)
        }
    }

    impl Paletted for MyFormat {
        fn get_colors(&self) -> Vec<(String, char, String)> {
            if let Some(colors) = &self.colors {
                if let Some(defs) = &colors.defs {
                    return defs.iter().map(Self::parse_color_def).collect();
                }
            }

            vec![]
        }

        fn get_palette(&self) -> ColorPalette {
            self.default_palette("W", "B")
        }
    }
}

#[cfg(not(feature = "ini"))]
mod ini {
    //! dummy definitions
    use super::{Block, Board, BoardParser, ParseError, PuzzleScheme};

    #[derive(Debug, Clone, Copy)]
    pub struct MyFormat;

    impl MyFormat {
        const NO_FEATURE_ENABLED_MSG: &'static str =
            "Cannot parse TOML-based puzzles: no support for TOML (hint: add --features=ini)";
    }

    impl BoardParser for MyFormat {
        fn with_content(_content: &str) -> Result<Self, ParseError>
        where
            Self: Sized,
        {
            Err(ParseError(Self::NO_FEATURE_ENABLED_MSG.to_string()))
        }

        fn parse<B>(&self) -> Board<B>
        where
            B: Block,
        {
            unimplemented!("{}", Self::NO_FEATURE_ENABLED_MSG)
        }

        fn infer_scheme(&self) -> PuzzleScheme {
            unimplemented!("{}", Self::NO_FEATURE_ENABLED_MSG)
        }
    }
}

#[cfg(feature = "xml")]
mod xml {
    use sxd_document as xml;
    use sxd_xpath::{
        evaluate_xpath,
        nodeset::{Node, Nodeset},
        Value,
    };

    use crate::utils::rc::{mutate_ref, read_ref, InteriorMutableRef};

    use super::{
        Block, Board, BoardParser, ColorPalette, Description, LocalReader, NetworkReader, Paletted,
        ParseError, PuzzleScheme,
    };

    #[derive(Debug)]
    pub struct WebPbn {
        package: xml::Package,
        cached_colors: InteriorMutableRef<Option<Vec<(String, char, String)>>>,
        cached_palette: InteriorMutableRef<Option<ColorPalette>>,
    }

    impl LocalReader for WebPbn {}

    impl NetworkReader for WebPbn {
        fn read_remote(file_name: &str) -> Result<Self, ParseError> {
            let url = format!("{}/XMLpuz.cgi?id={}", Self::BASE_URL, file_name);

            let content = Self::http_content(&url)?;
            Self::with_content(&content)
        }
    }

    impl From<xml::parser::Error> for ParseError {
        fn from(err: xml::parser::Error) -> Self {
            Self(format!("{:?}", err))
        }
    }

    impl BoardParser for WebPbn {
        fn with_content(content: &str) -> Result<Self, ParseError> {
            let package = xml::parser::parse(content)?;

            Ok(Self {
                package,
                cached_colors: InteriorMutableRef::new(None),
                cached_palette: InteriorMutableRef::new(None),
            })
        }

        fn parse<B>(&self) -> Board<B>
        where
            B: Block,
        {
            Board::with_descriptions_and_palette(
                self.parse_clues("rows"),
                self.parse_clues("columns"),
                Some(self.get_palette()),
            )
        }

        fn infer_scheme(&self) -> PuzzleScheme {
            let colors = self.get_colors_sorted();
            let names: Vec<_> = colors.iter().map(|(name, ..)| name).collect();
            if names.is_empty() || names == ["black", "white"] {
                return PuzzleScheme::BlackAndWhite;
            }

            PuzzleScheme::MultiColor
        }
    }

    impl WebPbn {
        const BASE_URL: &'static str = "http://webpbn.com";

        fn parse_block<B>(block: &Node<'_>, palette: &ColorPalette) -> B
        where
            B: Block,
        {
            let value = block.string_value();

            let block_color = if let Node::Element(e) = block {
                e.attribute("color")
                    .map(|color| color.value())
                    .or_else(|| palette.get_default())
            } else {
                None
            };

            let color_id = block_color.and_then(|name| palette.id_by_name(name));
            B::from_str_and_color(&value, color_id)
        }

        fn parse_line<B>(description: &Node<'_>, palette: &ColorPalette) -> Description<B>
        where
            B: Block,
        {
            Description::new(
                description
                    .children()
                    .iter()
                    .filter_map(|child| {
                        if let Node::Text(_text) = child {
                            // ignore newlines and whitespaces
                            None
                        } else {
                            Some(Self::parse_block(child, palette))
                        }
                    })
                    .collect(),
            )
        }

        fn get_clues<B>(descriptions: &Nodeset<'_>, palette: &ColorPalette) -> Vec<Description<B>>
        where
            B: Block,
        {
            descriptions
                .document_order()
                .iter()
                .map(|line_node| Self::parse_line(line_node, palette))
                .collect()
        }

        fn parse_clues<B>(&self, type_: &str) -> Vec<Description<B>>
        where
            B: Block,
        {
            let document = self.package.as_document();
            let value = evaluate_xpath(&document, &format!(".//clues[@type='{}']/line", type_))
                .expect("XPath evaluation failed");

            if let Value::Nodeset(ns) = value {
                Self::get_clues(&ns, &self.get_palette())
            } else {
                vec![]
            }
        }
    }

    impl WebPbn {
        fn _get_colors(&self) -> Vec<(String, char, String)> {
            let document = self.package.as_document();
            let value = evaluate_xpath(&document, ".//color").expect("XPath evaluation failed");

            if let Value::Nodeset(ns) = value {
                ns.iter()
                    .filter_map(|color_node| {
                        let value = color_node.string_value();
                        if let Node::Element(e) = color_node {
                            let name = e
                                .attribute("name")
                                .expect("Not found 'name' attribute in the 'color' element")
                                .value();
                            let symbol = e
                                .attribute("char")
                                .expect("Not found 'char' attribute in the 'color' element")
                                .value();
                            let symbol: char = symbol.as_bytes()[0] as char;
                            Some((name.to_string(), symbol, value))
                        } else {
                            None
                        }
                    })
                    .collect()
            } else {
                vec![]
            }
        }

        fn get_default_color(&self) -> Option<String> {
            let document = self.package.as_document();
            let value = evaluate_xpath(&document, ".//puzzle[@type='grid']")
                .expect("XPath evaluation failed");
            if let Value::Nodeset(ns) = value {
                let first_node = ns.iter().next();
                if let Some(Node::Element(e)) = first_node {
                    return e
                        .attribute("defaultcolor")
                        .map(|color| color.value().to_string());
                }
            }
            None
        }

        fn _get_palette(&self) -> ColorPalette {
            let mut palette = self.default_palette("white", "black");

            if let Some(default_color) = self.get_default_color() {
                palette.set_default(&default_color).unwrap();
            }
            palette
        }
    }

    impl Paletted for WebPbn {
        fn get_colors(&self) -> Vec<(String, char, String)> {
            if let Some(colors) = read_ref(&self.cached_colors).as_ref() {
                return colors.clone();
            }

            let result = self._get_colors();
            let mut cache = mutate_ref(&self.cached_colors);
            *cache = Some(result.clone());
            result
        }

        fn get_palette(&self) -> ColorPalette {
            if let Some(palette) = read_ref(&self.cached_palette).as_ref() {
                return palette.clone();
            }

            let result = self._get_palette();
            let mut cache = mutate_ref(&self.cached_palette);
            *cache = Some(result.clone());
            result
        }
    }
}

#[cfg(not(feature = "xml"))]
mod xml {
    //! dummy definitions
    use super::{Block, Board, BoardParser, NetworkReader, ParseError, PuzzleScheme};

    #[derive(Debug, Clone, Copy)]
    pub struct WebPbn;

    impl WebPbn {
        const NO_FEATURE_ENABLED_MSG: &'static str =
            "Cannot parse XML-based puzzles: no support for XML (hint: add --features=xml)";
    }

    impl BoardParser for WebPbn {
        fn with_content(_content: &str) -> Result<Self, ParseError>
        where
            Self: Sized,
        {
            Err(ParseError(Self::NO_FEATURE_ENABLED_MSG.to_string()))
        }

        fn parse<B>(&self) -> Board<B>
        where
            B: Block,
        {
            unimplemented!("{}", Self::NO_FEATURE_ENABLED_MSG)
        }

        fn infer_scheme(&self) -> PuzzleScheme {
            unimplemented!("{}", Self::NO_FEATURE_ENABLED_MSG)
        }
    }

    impl NetworkReader for WebPbn {}
}

type EncodedInt = u16;

#[derive(Debug)]
pub struct NonogramsOrg {
    encoded: Vec<Vec<EncodedInt>>,
}

impl NonogramsOrg {
    const URLS: [&'static str; 2] = ["http://www.nonograms.ru/", "http://www.nonograms.org/"];
    const PATHS: [(PuzzleScheme, &'static str); 2] = [
        (PuzzleScheme::BlackAndWhite, "nonograms"),
        (PuzzleScheme::MultiColor, "nonograms2"),
    ];
    const CYPHER_PREFIX: &'static str = r"var d=";
    const CYPHER_SUFFIX: char = ';';

    fn extract_encoded_json(html: &str) -> Option<&str> {
        #[allow(unused_imports)]
        use crate::utils::Stripper; // for Rust<1.45

        html.lines().find_map(|line| {
            line.strip_prefix(Self::CYPHER_PREFIX)
                .map(|line| line.trim_end_matches(Self::CYPHER_SUFFIX))
        })
    }

    fn parse_line(line: &str) -> Vec<EncodedInt> {
        line.split(',')
            .map(|x| x.parse().expect("The items should be positive integers"))
            .collect()
    }

    fn parse_json(array: &str) -> Vec<Vec<EncodedInt>> {
        array
            .trim_start_matches('[')
            .trim_end_matches(']')
            .split("],[")
            .map(Self::parse_line)
            .collect()
    }

    /// Reverse engineered version of the part of the script
    /// <http://www.nonograms.org/js/nonogram.min.059.js>
    /// that produces a nonogram solution for the given cyphered solution
    /// (it can be found in puzzle HTML in the form 'var d=[...]').
    #[allow(clippy::shadow_unrelated)]
    #[allow(unknown_lints)]
    #[allow(clippy::no_effect_underscore_binding)]
    pub fn decipher(&self) -> (Vec<String>, Vec<Vec<ColorId>>) {
        let cyphered = self.encoded();

        let x = &cyphered[1];
        let width = (x[0] % x[3] + x[1] % x[3] - x[2] % x[3]) as usize;

        let x = &cyphered[2];
        let height = (x[0] % x[3] + x[1] % x[3] - x[2] % x[3]) as usize;

        let x = &cyphered[3];
        let colors_number = (x[0] % x[3] + x[1] % x[3] - x[2] % x[3]) as usize;

        let x = &cyphered[4];
        let colors: Vec<_> = (0..colors_number)
            .map(|c| {
                let color_x = &cyphered[c + 5];
                let a = color_x[0] - x[1];
                let b = u32::from(color_x[1] - x[0]);
                let c = u32::from(color_x[2] - x[3]);
                let _unknown_flag = color_x[3] - a - x[2];
                let a = &format!("{:x}", a + 256)[1..];
                let b = &format!("{:x}", ((b + 256) << 8) + c)[1..];
                a.to_string() + b
            })
            .collect();

        let mut solution = vec![vec![0; width]; height];
        let z = colors_number + 5;
        let x = &cyphered[z];
        let solution_size = (x[0] % x[3] * (x[0] % x[3]) + x[1] % x[3] * 2 + x[2] % x[3]) as usize;

        let x = &cyphered[z + 1];
        for i in 0..solution_size {
            let y = &cyphered[z + 2 + i];
            let vv = y[0] - x[0] - 1;

            for j in 0..(y[1] - x[1]) {
                let v = (j + vv) as usize;
                let xx = y[3] - x[3] - 1;
                solution[xx as usize][v] = ColorId::from(y[2] - x[2]);
            }
        }

        (colors, solution)
    }

    pub fn encoded(&self) -> &[Vec<EncodedInt>] {
        &self.encoded
    }

    fn get_solution_matrix(&self) -> Vec<Vec<ColorId>> {
        let (_colors, solution_matrix) = self.decipher();
        let palette = self.get_palette();

        let mut mapping_cache = HashMap::new();
        solution_matrix
            .iter()
            .map(|row| {
                row.iter()
                    .map(|&item| {
                        *mapping_cache.entry(item).or_insert_with(|| {
                            palette
                                .id_by_name(&Self::color_name_by_id(item))
                                .unwrap_or(0)
                        })
                    })
                    .collect()
            })
            .collect()
    }

    fn color_name_by_id(id: ColorId) -> String {
        format!("color-{}", id)
    }
}

impl LocalReader for NonogramsOrg {}

impl Default for ParseError {
    fn default() -> Self {
        Self("Unknown parser error".to_string())
    }
}

impl NetworkReader for NonogramsOrg {
    fn read_remote(file_name: &str) -> Result<Self, ParseError> {
        product(&Self::URLS, &Self::PATHS)
            .iter()
            .first_ok(|(base_url, (_scheme, path))| {
                let url = format!("{}{}/i/{}", base_url, path, file_name);
                let content = Self::http_content(&url)?;
                Self::with_content(&content)
            })
    }
}

impl BoardParser for NonogramsOrg {
    fn with_content(content: &str) -> Result<Self, ParseError> {
        let json = Self::extract_encoded_json(content)
            .ok_or_else(|| ParseError("Not found cypher in HTML content".to_string()))?;

        Ok(Self {
            encoded: Self::parse_json(json),
        })
    }

    fn parse<B>(&self) -> Board<B>
    where
        B: Block,
    {
        let solution_matrix = self.get_solution_matrix();
        let (columns, rows) = clues_from_solution(&solution_matrix, 0);

        Board::with_descriptions_and_palette(rows, columns, Some(self.get_palette()))
    }

    fn infer_scheme(&self) -> PuzzleScheme {
        let (colors, _solution) = self.decipher();
        if colors.len() == 1 {
            assert_eq!(colors, ["000000"]);
            return PuzzleScheme::BlackAndWhite;
        }

        PuzzleScheme::MultiColor
    }
}

impl Paletted for NonogramsOrg {
    #[allow(clippy::cast_possible_truncation)]
    fn get_colors(&self) -> Vec<(String, char, String)> {
        let (colors, _solution) = self.decipher();
        colors
            .into_iter()
            .enumerate()
            // enumerating starts with 1
            .map(|(i, rgb)| (Self::color_name_by_id((i + 1) as ColorId), '?', rgb))
            .collect()
    }

    fn get_palette(&self) -> ColorPalette {
        let mut palette = ColorPalette::with_white("W");

        for (name, _dumb_symbol, value) in &self.get_colors() {
            let val = ColorValue::parse(value);
            palette.color_with_name_and_value(name, val);
        }

        palette
    }
}

#[derive(Debug)]
enum ParserKind {
    Toml,
    WebPbn,
    NonogramsOrg,
    Olsak,
    Simple,
}

pub struct DetectedParser {
    parser_kind: ParserKind,
    inner: Box<dyn Any>,
}

impl DetectedParser {
    fn cast<T>(&self) -> &T
    where
        T: BoardParser + 'static,
    {
        let expect_msg = format!("Parser should be created with {:?}", self.parser_kind);
        self.inner.downcast_ref::<T>().expect(&expect_msg)
    }
}

impl BoardParser for DetectedParser {
    fn with_content(content: &str) -> Result<Self, ParseError> {
        let trim_content = content.trim();
        Ok(if trim_content.starts_with("<?xml") {
            Self {
                parser_kind: ParserKind::WebPbn,
                inner: Box::new(WebPbn::with_content(content)?),
            }
        } else if ["<!DOCTYPE HTML", "<html", NonogramsOrg::CYPHER_PREFIX]
            .iter()
            .any(|&prefix| trim_content.starts_with(prefix))
        {
            Self {
                parser_kind: ParserKind::NonogramsOrg,
                inner: Box::new(NonogramsOrg::with_content(content)?),
            }
        } else {
            let lines: Vec<_> = trim_content.lines().map(str::trim).collect();
            if lines.contains(&"[clues]") {
                Self {
                    parser_kind: ParserKind::Toml,
                    inner: Box::new(MyFormat::with_content(content)?),
                }
            } else if lines.contains(&": rows") {
                Self {
                    parser_kind: ParserKind::Olsak,
                    inner: Box::new(OlsakParser::with_content(content)?),
                }
            } else {
                Self {
                    parser_kind: ParserKind::Simple,
                    inner: Box::new(SimpleParser::with_content(content)?),
                }
            }
        })
    }

    //noinspection RsTypeCheck
    fn parse<B>(&self) -> Board<B>
    where
        B: Block,
    {
        match self.parser_kind {
            ParserKind::Toml => self.cast::<MyFormat>().parse::<B>(),
            ParserKind::WebPbn => self.cast::<WebPbn>().parse::<B>(),
            ParserKind::NonogramsOrg => self.cast::<NonogramsOrg>().parse::<B>(),
            ParserKind::Olsak => self.cast::<OlsakParser>().parse::<B>(),
            ParserKind::Simple => self.cast::<SimpleParser>().parse::<B>(),
        }
    }

    fn infer_scheme(&self) -> PuzzleScheme {
        match self.parser_kind {
            ParserKind::Toml => self.cast::<MyFormat>().infer_scheme(),
            ParserKind::WebPbn => self.cast::<WebPbn>().infer_scheme(),
            ParserKind::NonogramsOrg => self.cast::<NonogramsOrg>().infer_scheme(),
            ParserKind::Olsak => self.cast::<OlsakParser>().infer_scheme(),
            ParserKind::Simple => self.cast::<SimpleParser>().infer_scheme(),
        }
    }
}

impl fmt::Debug for DetectedParser {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
        let inner = match self.parser_kind {
            ParserKind::Toml => format!("{:?}", self.cast::<MyFormat>()),
            ParserKind::WebPbn => format!("{:?}", self.cast::<WebPbn>()),
            ParserKind::NonogramsOrg => format!("{:?}", self.cast::<NonogramsOrg>()),
            ParserKind::Olsak => format!("{:?}", self.cast::<OlsakParser>()),
            ParserKind::Simple => format!("{:?}", self.cast::<SimpleParser>()),
        };

        f.debug_struct("DetectedParser")
            .field("parser_kind", &self.parser_kind)
            .field("inner", &inner)
            .finish()
    }
}

#[derive(Debug, PartialEq)]
pub struct OlsakColor {
    pub block_name: String,
    pub symbol: char,
    pub rgb: String,
    pub name: String,
}

impl OlsakColor {
    ///```
    /// # use nonogrid::parser::OlsakColor;
    ///
    /// let s = "0:   #FFFFFF   white";
    /// let color = OlsakColor::parse(s);
    /// assert_eq!(color.block_name, "0");
    /// assert_eq!(color.symbol, ' ');
    /// assert_eq!(color.rgb, "#FFFFFF");
    /// assert_eq!(color.name, "white");
    ///
    /// let s = "n:%  #00B000   green";
    /// let color = OlsakColor::parse(s);
    /// assert_eq!(color.block_name, "n");
    /// assert_eq!(color.symbol, '%');
    /// assert_eq!(color.rgb, "#00B000");
    /// assert_eq!(color.name, "green");
    /// ```
    pub fn parse(color_def: &str) -> Self {
        let parts: Vec<_> = color_def.split_whitespace().collect();
        let block_name_and_symbol: Vec<_> = parts[0].split(':').collect();

        let block_name = block_name_and_symbol[0];
        let symbol = block_name_and_symbol[1].chars().next().unwrap_or(' ');

        Self {
            block_name: block_name.to_string(),
            symbol,
            rgb: parts[1].to_string(),
            name: parts[2].to_string(),
        }
    }
}

#[derive(Debug)]
struct OlsakParser {
    rows: Vec<Vec<String>>,
    columns: Vec<Vec<String>>,
    colors: HashMap<String, OlsakColor>,
}

impl From<String> for ParseError {
    fn from(err: String) -> Self {
        Self(err)
    }
}

impl BoardParser for OlsakParser {
    fn with_content(content: &str) -> Result<Self, ParseError>
    where
        Self: Sized,
    {
        let names = [": rows", ": columns", "#d"];
        let mut sections = split_sections(content, &names, false, None)?;
        let mut splitted: HashMap<_, _> = sections
            .iter()
            .map(|(&name, lines)| {
                (
                    name,
                    lines
                        .iter()
                        .map(|&line| line.split_whitespace().map(ToString::to_string).collect())
                        .collect(),
                )
            })
            .collect();

        let colors = sections.remove(names[2]).unwrap_or_default();

        Ok(Self {
            rows: splitted.remove(names[0]).expect("Rows section not found"),
            columns: splitted
                .remove(names[1])
                .expect("Columns section not found"),
            colors: colors
                .into_iter()
                .map(|line| {
                    let color = OlsakColor::parse(line);
                    (color.block_name.clone(), color)
                })
                .collect(),
        })
    }

    fn parse<B>(&self) -> Board<B>
    where
        B: Block,
    {
        let palette = self.get_palette();
        Board::with_descriptions_and_palette(
            self.parse_clues(&self.rows, &palette),
            self.parse_clues(&self.columns, &palette),
            Some(palette),
        )
    }

    fn infer_scheme(&self) -> PuzzleScheme {
        if !self.colors.is_empty() {
            let mut names: Vec<_> = self.colors.values().map(|x| &x.name).collect();
            names.sort_unstable();

            if names != ["black", "white"] {
                return PuzzleScheme::MultiColor;
            }
        }

        PuzzleScheme::BlackAndWhite
    }
}

impl OlsakParser {
    fn parse_block<B>(&self, block: &str, palette: &ColorPalette) -> B
    where
        B: Block,
    {
        let mut as_chars = block.chars();
        let value_color_pos = as_chars.position(|c| !c.is_digit(10));

        #[allow(clippy::option_if_let_else)]
        let (value, block_color) = if let Some(pos) = value_color_pos {
            let (value, color) = block.split_at(pos);
            (value, Some(color))
        } else {
            (block, None)
        };

        let color_name = block_color
            .and_then(|block_color| self.colors.get(block_color))
            .map(|color| &color.name);

        let color_id = color_name.and_then(|name| palette.id_by_name(name));
        B::from_str_and_color(value, color_id)
    }

    fn parse_line<B>(&self, descriptions: &[String], palette: &ColorPalette) -> Description<B>
    where
        B: Block,
    {
        Description::new(
            descriptions
                .iter()
                .map(|block| self.parse_block(block, palette))
                .collect(),
        )
    }

    fn parse_clues<B>(
        &self,
        descriptions: &[Vec<String>],
        palette: &ColorPalette,
    ) -> Vec<Description<B>>
    where
        B: Block,
    {
        descriptions
            .iter()
            .map(|line| self.parse_line(line, palette))
            .collect()
    }
}

impl Paletted for OlsakParser {
    fn get_colors(&self) -> Vec<(String, char, String)> {
        self.colors
            .values()
            .map(|x| (x.name.clone(), x.symbol, x.rgb.clone()))
            .collect()
    }

    fn get_palette(&self) -> ColorPalette {
        self.default_palette("white", "black")
    }
}

#[derive(Debug)]
/// This kind of parser only valid for Black-and-White puzzles.
/// See the full list of formats here <https://webpbn.com/export.cgi>.
struct SimpleParser {
    rows: Vec<Vec<String>>,
    columns: Vec<Vec<String>>,
}

impl From<ParseIntError> for ParseError {
    fn from(err: ParseIntError) -> Self {
        Self(format!("{}", err))
    }
}

impl SimpleParser {
    fn parse_clues<B>(descriptions: &[Vec<String>]) -> Vec<Description<B>>
    where
        B: Block,
    {
        descriptions
            .iter()
            .map(|line| {
                Description::new(
                    line.iter()
                        .filter_map(|block| {
                            let block = block.trim();
                            if block.is_empty() {
                                None
                            } else {
                                Some(B::from_str_and_color(block, None))
                            }
                        })
                        .collect(),
                )
            })
            .collect()
    }

    fn split_into_blocks(lines: &[&str]) -> Vec<Vec<String>> {
        lines
            .iter()
            .filter_map(|&line| {
                if line.is_empty() {
                    None
                } else {
                    Some(
                        // 'ish' and 'ss' has comma-separated blocks
                        line.split(&[' ', ','][..])
                            .map(ToString::to_string)
                            .collect(),
                    )
                }
            })
            .collect()
    }

    fn remove_comments(text: &str) -> String {
        let lines: Vec<_> = text
            .lines()
            .map(|line| {
                // 'ish', 'mk' and 'syro' can have '#' comments
                // 'makhorin' has a '*' comments and '&' rows-columns delimiter
                if line.starts_with(&['#', '*'][..]) || line == "&" {
                    ""
                } else {
                    // every line in 'syro' terminated with '0' block
                    line.trim_end_matches(" 0")
                }
            })
            .collect();
        lines.join("\n").trim().to_string()
    }
}

impl BoardParser for SimpleParser {
    fn with_content(content: &str) -> Result<Self, ParseError>
    where
        Self: Sized,
    {
        let symbols: HashSet<_> = content
            .lines()
            .flat_map(|line| line.trim().chars())
            .collect();
        let solution_matrix_chars = ['0', '1'].iter().copied().collect();

        // only '1' and '0' as the solution matrix
        if symbols == solution_matrix_chars {
            let solution_matrix: Vec<_> = content
                .lines()
                .map(|line| {
                    line.chars()
                        .map(|ch| ch.to_digit(10).expect("not a decimal digit"))
                        .collect()
                })
                .collect();
            let (columns, rows) = clues_from_solution(&solution_matrix, 0);
            return Ok(Self {
                rows: rows
                    .into_iter()
                    .map(|d| d.vec.iter().map(BinaryBlock::to_string).collect())
                    .collect(),
                columns: columns
                    .into_iter()
                    .map(|d| d.vec.iter().map(BinaryBlock::to_string).collect())
                    .collect(),
            });
        }

        let content = Self::remove_comments(content);

        let (rows, columns) = {
            // 'faase' and 'ss' formats
            let names = ["rows", "columns"];

            let mut sections = split_sections(&content, &names, false, None);
            if let Ok(sections) = sections.as_mut() {
                (
                    sections.remove(names[0]).expect("Cannot find rows"),
                    sections.remove(names[1]).expect("Cannot find rows"),
                )
            } else {
                // try to find two blocks separated by empty line
                // 'ish', 'keen', 'makhorin', 'syro' formats
                let rows_section = "rows go first";
                let columns_section = [""];
                let mut sections =
                    split_sections(&content, &columns_section, true, Some(rows_section));

                if let Ok(sections) = sections.as_mut() {
                    (
                        sections.remove(rows_section).expect("Cannot find rows"),
                        sections
                            .remove(columns_section[0])
                            .expect("Cannot find columns"),
                    )
                } else {
                    // no empty lines, 'nin' format
                    let mut content_iter = content.lines();
                    let dimensions: Result<Vec<usize>, _> = content_iter
                        .next()
                        .expect("Empty content")
                        .split_whitespace()
                        .map(str::parse)
                        .collect();

                    let dimensions = dimensions?;
                    if dimensions.len() == 2 {
                        let (width, height) = (dimensions[0], dimensions[1]);
                        let rows = content_iter.by_ref().take(height).collect();
                        let columns = content_iter.take(width).collect();
                        (rows, columns)
                    } else {
                        unimplemented!("This puzzle format is not supported")
                    }
                }
            }
        };

        Ok(Self {
            rows: Self::split_into_blocks(&rows),
            columns: Self::split_into_blocks(&columns),
        })
    }

    fn parse<B>(&self) -> Board<B>
    where
        B: Block,
    {
        let palette = self.get_palette();
        Board::with_descriptions_and_palette(
            Self::parse_clues(&self.rows),
            Self::parse_clues(&self.columns),
            Some(palette),
        )
    }

    fn infer_scheme(&self) -> PuzzleScheme {
        PuzzleScheme::BlackAndWhite
    }
}

impl Paletted for SimpleParser {
    fn get_colors(&self) -> Vec<(String, char, String)> {
        vec![]
    }

    fn get_palette(&self) -> ColorPalette {
        self.default_palette("white", "black")
    }
}

#[cfg(test)]
#[cfg(feature = "ini")]
mod tests {
    use crate::block::{base::color::ColorPalette, binary::BinaryBlock, Description};

    use super::{BoardParser, MyFormat, Paletted, PuzzleScheme};

    const fn block(n: usize) -> BinaryBlock {
        BinaryBlock(n)
    }

    fn palette() -> ColorPalette {
        ColorPalette::with_white_and_black("W", "B")
    }

    #[test]
    fn parse_single() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1"), &palette()),
            vec![Description::new(vec![block(1)])]
        )
    }

    #[test]
    fn parse_two_lines() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1\n2"), &palette()),
            vec![
                Description::new(vec![block(1)]),
                Description::new(vec![block(2)])
            ]
        )
    }

    #[test]
    fn parse_two_rows_same_line() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1, 2"), &palette()),
            vec![
                Description::new(vec![block(1)]),
                Description::new(vec![block(2)])
            ]
        )
    }

    #[test]
    fn parse_two_rows_with_commas() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1, 2,\n3"), &palette()),
            vec![
                Description::new(vec![block(1)]),
                Description::new(vec![block(2)]),
                Description::new(vec![block(3)]),
            ]
        )
    }

    #[test]
    fn parse_two_blocks() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1 2"), &palette()),
            vec![Description::new(vec![block(1), block(2)]),]
        )
    }

    #[test]
    fn parse_quotes() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("'1 2'"), &palette()),
            vec![Description::new(vec![block(1), block(2)]),]
        )
    }

    #[test]
    fn parse_double_quotes() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1 2\n\"3 4\"\n"), &palette()),
            vec![
                Description::new(vec![block(1), block(2)]),
                Description::new(vec![block(3), block(4)]),
            ]
        )
    }

    #[test]
    fn parse_comment_end_of_line() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1 2  # the comment"), &palette()),
            vec![Description::new(vec![block(1), block(2)]),]
        )
    }

    #[test]
    fn parse_comment_semicolon() {
        assert_eq!(
            MyFormat::parse_clues(&String::from("1 2  ; another comment"), &palette()),
            vec![Description::new(vec![block(1), block(2)]),]
        )
    }

    #[test]
    fn parse_comments_in_the_middle() {
        assert_eq!(
            MyFormat::parse_clues(
                &String::from("1 2 \n # the multi-line \n # comment \n 3, 4"),
                &palette(),
            ),
            vec![
                Description::new(vec![block(1), block(2)]),
                Description::new(vec![block(3)]),
                Description::new(vec![block(4)]),
            ]
        )
    }

    #[test]
    fn infer_black_and_white_no_colors_section() {
        let s = r"
        [clues]
        rows = '1'
        columns = '1'
        ";

        assert_eq!(
            MyFormat::with_content(s).unwrap().infer_scheme(),
            PuzzleScheme::BlackAndWhite
        )
    }

    #[test]
    fn infer_black_and_white_empty_colors_section() {
        let s = r"
        [clues]
        rows = '1'
        columns = '1'

        [colors]
        ";

        assert_eq!(
            MyFormat::with_content(s).unwrap().infer_scheme(),
            PuzzleScheme::BlackAndWhite
        )
    }

    #[test]
    fn infer_black_and_white_empty_defs_in_colors_section() {
        let s = r"
        [clues]
        rows = '1'
        columns = '1'

        [colors]
        defs = []
        ";

        assert_eq!(
            MyFormat::with_content(s).unwrap().infer_scheme(),
            PuzzleScheme::BlackAndWhite
        )
    }

    #[test]
    fn infer_multi_color() {
        let s = r"
        [clues]
        rows = '1'
        columns = '1'

        [colors]
        defs = ['g=(0, 204, 0) %']
        ";

        assert_eq!(
            MyFormat::with_content(s).unwrap().infer_scheme(),
            PuzzleScheme::MultiColor
        )
    }

    #[test]
    fn parse_colors() {
        let s = r"
        [clues]
        rows = '1'
        columns = '1g'

        [colors]
        defs = ['g=(0, 204, 0) %']
        ";

        let f = MyFormat::with_content(s).unwrap();
        let colors = vec![("g".to_string(), '%', "0, 204, 0".to_string())];
        assert_eq!(f.get_colors(), colors)
    }
}