From 788737409c76b00b8bf651920d00dea4ccd0750c Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Thu, 15 Oct 2020 13:04:55 +0200 Subject: Add Kaitai Struct mime-type For use with the Kaitai Struct visualiser, or any text/YAML editors --- data/freedesktop.org.xml.in | 5 +++ tests/mime-detection/ico.ksy | 78 ++++++++++++++++++++++++++++++++++++++++++++ tests/mime-detection/list | 1 + 3 files changed, 84 insertions(+) create mode 100644 tests/mime-detection/ico.ksy diff --git a/data/freedesktop.org.xml.in b/data/freedesktop.org.xml.in index 0db4d7c2..45d1ded8 100644 --- a/data/freedesktop.org.xml.in +++ b/data/freedesktop.org.xml.in @@ -1903,6 +1903,11 @@ command to generate the output files. + + Kaitai Struct definition file + + + Qt Markup Language file diff --git a/tests/mime-detection/ico.ksy b/tests/mime-detection/ico.ksy new file mode 100644 index 00000000..592bce82 --- /dev/null +++ b/tests/mime-detection/ico.ksy @@ -0,0 +1,78 @@ +meta: + id: ico + title: Microsoft Windows icon file + file-extension: ico + endian: le + license: CC0-1.0 +doc: | + Microsoft Windows uses specific file format to store applications + icons - ICO. This is a container that contains one or more image + files (effectively, DIB parts of BMP files or full PNG files are + contained inside). +doc-ref: https://msdn.microsoft.com/en-us/library/ms997538.aspx +seq: + - id: magic + contents: [0, 0, 1, 0] + - id: num_images + -orig-id: idCount + type: u2 + doc: Number of images contained in this file + - id: images + -orig-id: idEntries + type: icon_dir_entry + repeat: expr + repeat-expr: num_images +types: + icon_dir_entry: + -orig-id: ICONDIRENTRY + seq: + - id: width + -orig-id: bWidth + type: u1 + doc: Width of image, px + - id: height + -orig-id: bHeight + type: u1 + doc: Height of image, px + - id: num_colors + -orig-id: bColorCount + type: u1 + doc: | + Number of colors in palette of the image or 0 if image has + no palette (i.e. RGB, RGBA, etc) + - id: reserved + -orig-id: bReserved + contents: [0] + - id: num_planes + -orig-id: wPlanes + type: u2 + doc: Number of color planes + - id: bpp + -orig-id: wBitCount + type: u2 + doc: Bits per pixel in the image + - id: len_img + -orig-id: dwBytesInRes + type: u4 + doc: Size of the image data + - id: ofs_img + -orig-id: dwImageOffset + type: u4 + doc: Absolute offset of the image data start in the file + instances: + img: + pos: ofs_img + size: len_img + doc: | + Raw image data. Use `is_png` to determine whether this is an + embedded PNG file (true) or a DIB bitmap (false) and call a + relevant parser, if needed to parse image data further. + png_header: + pos: ofs_img + size: 8 + doc: | + Pre-reads first 8 bytes of the image to determine if it's an + embedded PNG file. + is_png: + value: png_header == [137, 80, 78, 71, 13, 10, 26, 10] + doc: True if this image is in PNG format. diff --git a/tests/mime-detection/list b/tests/mime-detection/list index 7ccf5d02..0744797b 100644 --- a/tests/mime-detection/list +++ b/tests/mime-detection/list @@ -262,6 +262,7 @@ helloworld.java text/x-java ox helloworld.groovy text/x-groovy ox helloworld.vbs text/vbscript ox build.gradle text/x-gradle ox +ico.ksy text/x-kaitai-struct ox # Copied from http://asurvey.net/ccsfagent/media/survey.js survey.js application/javascript ox # Copied from gecko/accessible/src/jsat/Utils.jsm in Boot2Gecko -- cgit v1.2.1