Resource file found in CPB firmware archives, mostly used on older CoolPad phones and/or tablets. The only observed files are called "ResPack.cfg".
This page hosts a formal specification of ResPack using Kaitai Struct. This specification can be automatically translated into a variety of programming languages to get a parsing library.
All parsing code for C# generated by Kaitai Struct depends on the C# runtime library. You have to install it before you can parse data.
The C# runtime library is available in the NuGet Gallery. Installation instructions can also be found there.
Parse a local file and get structure in memory:
var data = Respack.FromFile("path/to/local/file.cfg");
Or parse structure from a byte array:
byte[] someArray = new byte[] { ... };
var data = new Respack(new KaitaiStream(someArray));
After that, one can get various attributes from the structure by accessing properties like:
data.Header // => get header
// This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
namespace Kaitai
{
/// <summary>
/// Resource file found in CPB firmware archives, mostly used on older CoolPad
/// phones and/or tablets. The only observed files are called "ResPack.cfg".
/// </summary>
public partial class Respack : KaitaiStruct
{
public static Respack FromFile(string fileName)
{
return new Respack(new KaitaiStream(fileName));
}
public Respack(KaitaiStream p__io, KaitaiStruct p__parent = null, Respack p__root = null) : base(p__io)
{
m_parent = p__parent;
m_root = p__root ?? this;
_read();
}
private void _read()
{
_header = new Header(m_io, this, m_root);
_json = System.Text.Encoding.GetEncoding("UTF-8").GetString(m_io.ReadBytes(Header.LenJson));
}
public partial class Header : KaitaiStruct
{
public static Header FromFile(string fileName)
{
return new Header(new KaitaiStream(fileName));
}
public Header(KaitaiStream p__io, Respack p__parent = null, Respack p__root = null) : base(p__io)
{
m_parent = p__parent;
m_root = p__root;
_read();
}
private void _read()
{
_magic = m_io.ReadBytes(2);
if (!((KaitaiStream.ByteArrayCompare(Magic, new byte[] { 82, 83 }) == 0)))
{
throw new ValidationNotEqualError(new byte[] { 82, 83 }, Magic, M_Io, "/types/header/seq/0");
}
_unknown = m_io.ReadBytes(8);
_lenJson = m_io.ReadU4le();
_md5 = System.Text.Encoding.GetEncoding("UTF-8").GetString(m_io.ReadBytes(32));
}
private byte[] _magic;
private byte[] _unknown;
private uint _lenJson;
private string _md5;
private Respack m_root;
private Respack m_parent;
public byte[] Magic { get { return _magic; } }
public byte[] Unknown { get { return _unknown; } }
public uint LenJson { get { return _lenJson; } }
/// <summary>
/// MD5 of data that follows the header
/// </summary>
public string Md5 { get { return _md5; } }
public Respack M_Root { get { return m_root; } }
public Respack M_Parent { get { return m_parent; } }
}
private Header _header;
private string _json;
private Respack m_root;
private KaitaiStruct m_parent;
public Header Header { get { return _header; } }
public string Json { get { return _json; } }
public Respack M_Root { get { return m_root; } }
public KaitaiStruct M_Parent { get { return m_parent; } }
}
}