/* Derived from source code of TrueCrypt 7.1a, which is Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed by the TrueCrypt License 3.0. Modifications and additions to the original source code (contained in this file) and all other portions of this file are Copyright (c) 2013-2015 IDRIX and are governed by the Apache License 2.0 the full text of which is contained in the file License.txt included in VeraCrypt binary and source code distribution packages. */ #ifndef TC_HEADER_Platform_Serializable #define TC_HEADER_Platform_Serializable #include <stdexcept> #include "PlatformBase.h" #include "ForEach.h" #include "Serializer.h" #include "SerializerFactory.h" namespace VeraCrypt { class Serializable { public: virtual ~Serializable () { } virtual void Deserialize (shared_ptr <Stream> stream) = 0; static string DeserializeHeader (shared_ptr <Stream> stream); static Serializable *DeserializeNew (shared_ptr <Stream> stream); template <class T> static shared_ptr <T> DeserializeNew (shared_ptr <Stream> stream) { shared_ptr <T> p (dynamic_cast <T *> (DeserializeNew (stream))); if (!p) throw std::runtime_error (SRC_POS); return p; } template <class T> static void DeserializeList (shared_ptr <Stream> stream, list < shared_ptr <T> > &dataList) { if (DeserializeHeader (stream) != string ("list<") + SerializerFactory::GetName (typeid (T)) + ">") throw std::runtime_error (SRC_POS); Serializer sr (stream); uint64 listSize; sr.Deserialize ("ListSize", listSize); for (size_t i = 0; i < listSize; i++) { shared_ptr <T> p (dynamic_cast <T *> (DeserializeNew (stream))); if (!p) throw std::runtime_error (SRC_POS); dataList.push_back (p); } } virtual void Serialize (shared_ptr <Stream> stream) const; template <class T> static void SerializeList (shared_ptr <Stream> stream, const list < shared_ptr <T> > &dataList) { Serializer sr (stream); SerializeHeader (sr, string ("list<") + SerializerFactory::GetName (typeid (T)) + ">"); sr.Serialize ("ListSize", (uint64) dataList.size()); foreach_ref (const T &item, dataList) item.Serialize (stream); } static void SerializeHeader (Serializer &serializer, const string &name); protected: Serializable () { } }; } #define TC_SERIALIZABLE(TYPE) \ static Serializable *GetNewSerializable () { return new TYPE(); } \ virtual void Deserialize (shared_ptr <Stream> stream); \ virtual void Serialize (shared_ptr <Stream> stream) const #endif // TC_HEADER_Platform_Serializable value=''/> <input type='submit' value='search'/> </form> </td></tr></table> <div class='path'>path: <a href='/code/VeraCrypt/tree/?h=VeraCrypt_1.24-Hotfix1&id=c5b766969ab018b76d86265e514475d1111957ea'>root</a>/<a href='/code/VeraCrypt/tree/src?h=VeraCrypt_1.24-Hotfix1&id=c5b766969ab018b76d86265e514475d1111957ea'>src</a>/<a href='/code/VeraCrypt/tree/src/Platform?h=VeraCrypt_1.24-Hotfix1&id=c5b766969ab018b76d86265e514475d1111957ea'>Platform</a>/<a href='/code/VeraCrypt/tree/src/Platform/Exception.cpp?h=VeraCrypt_1.24-Hotfix1&id=c5b766969ab018b76d86265e514475d1111957ea'>Exception.cpp</a></div><div class='content'>blob: 40739edddc9aae7dcfea2734674a7e96381d2632 (<a href='/code/VeraCrypt/plain/src/Platform/Exception.cpp?h=VeraCrypt_1.24-Hotfix1&id=c5b766969ab018b76d86265e514475d1111957ea'>plain</a>) <table summary='blob content' class='blob'> <tr><td class='linenumbers'><pre><a id='n1' href='#n1'>1</a> <a id='n2' href='#n2'>2</a> <a id='n3' href='#n3'>3</a> <a id='n4' href='#n4'>4</a> <a id='n5' href='#n5'>5</a> <a id='n6' href='#n6'>6</a> <a id='n7' href='#n7'>7</a> <a id='n8' href='#n8'>8</a> <a id='n9' href='#n9'>9</a> <a id='n10' href='#n10'>10</a> <a id='n11' href='#n11'>11</a> <a id='n12' href='#n12'>12</a> <a id='n13' href='#n13'>13</a> <a id='n14' href='#n14'>14</a> <a id='n15' href='#n15'>15</a> <a id='n16' href='#n16'>16</a> <a id='n17' href='#n17'>17</a> <a id='n18' href='#n18'>18</a> <a id='n19' href='#n19'>19</a> <a id='n20' href='#n20'>20</a> <a id='n21' href='#n21'>21</a> <a id='n22' href='#n22'>22</a> <a id='n23' href='#n23'>23</a> <a id='n24' href='#n24'>24</a> <a id='n25' href='#n25'>25</a> <a id='n26' href='#n26'>26</a> <a id='n27' href='#n27'>27</a> <a id='n28' href='#n28'>28</a> <a id='n29' href='#n29'>29</a> <a id='n30' href='#n30'>30</a> <a id='n31' href='#n31'>31</a> <a id='n32' href='#n32'>32</a> <a id='n33' href='#n33'>33</a> <a id='n34' href='#n34'>34</a> <a id='n35' href='#n35'>35</a> <a id='n36' href='#n36'>36</a> <a id='n37' href='#n37'>37</a> <a id='n38' href='#n38'>38</a> <a id='n39' href='#n39'>39</a> <a id='n40' href='#n40'>40</a> <a id='n41' href='#n41'>41</a> <a id='n42' href='#n42'>42</a> <a id='n43' href='#n43'>43</a> <a id='n44' href='#n44'>44</a> <a id='n45' href='#n45'>45</a> <a id='n46' href='#n46'>46</a> <a id='n47' href='#n47'>47</a> <a id='n48' href='#n48'>48</a> <a id='n49' href='#n49'>49</a> <a id='n50' href='#n50'>50</a> <a id='n51' href='#n51'>51</a> <a id='n52' href='#n52'>52</a> <a id='n53' href='#n53'>53</a> <a id='n54' href='#n54'>54</a> <a id='n55' href='#n55'>55</a> <a id='n56' href='#n56'>56</a> </pre></td> <td class='lines'><pre><code><style>.highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */</style><div class="highlight"><pre><span></span><span class="cm">/*</span> <span class="cm"> Derived from source code of TrueCrypt 7.1a, which is</span> <span class="cm"> Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed</span> <span class="cm"> by the TrueCrypt License 3.0.</span> <span class="cm"> Modifications and additions to the original source code (contained in this file)</span> <span class="cm"> and all other portions of this file are Copyright (c) 2013-2016 IDRIX</span> <span class="cm"> and are governed by the Apache License 2.0 the full text of which is</span> <span class="cm"> contained in the file License.txt included in VeraCrypt binary and source</span> <span class="cm"> code distribution packages.</span> <span class="cm">*/</span> <span class="cp">#include</span> <span class="cpf">"Exception.h"</span><span class="cp"></span> <span class="cp">#include</span> <span class="cpf">"SerializerFactory.h"</span><span class="cp"></span> <span class="k">namespace</span> <span class="n">VeraCrypt</span> <span class="p">{</span> <span class="kt">void</span> <span class="n">Exception</span><span class="o">::</span><span class="n">Deserialize</span> <span class="p">(</span><span class="n">shared_ptr</span> <span class="o"><</span><span class="n">Stream</span><span class="o">></span> <span class="n">stream</span><span class="p">)</span> <span class="p">{</span> <span class="n">Serializer</span> <span class="n">sr</span> <span class="p">(</span><span class="n">stream</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Deserialize</span> <span class="p">(</span><span class="s">"Message"</span><span class="p">,</span> <span class="n">Message</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Deserialize</span> <span class="p">(</span><span class="s">"Subject"</span><span class="p">,</span> <span class="n">Subject</span><span class="p">);</span> <span class="p">}</span> <span class="kt">void</span> <span class="n">Exception</span><span class="o">::</span><span class="n">Serialize</span> <span class="p">(</span><span class="n">shared_ptr</span> <span class="o"><</span><span class="n">Stream</span><span class="o">></span> <span class="n">stream</span><span class="p">)</span> <span class="k">const</span> <span class="p">{</span> <span class="n">Serializable</span><span class="o">::</span><span class="n">Serialize</span> <span class="p">(</span><span class="n">stream</span><span class="p">);</span> <span class="n">Serializer</span> <span class="nf">sr</span> <span class="p">(</span><span class="n">stream</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Serialize</span> <span class="p">(</span><span class="s">"Message"</span><span class="p">,</span> <span class="n">Message</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Serialize</span> <span class="p">(</span><span class="s">"Subject"</span><span class="p">,</span> <span class="n">Subject</span><span class="p">);</span> <span class="p">}</span> <span class="kt">void</span> <span class="n">ExecutedProcessFailed</span><span class="o">::</span><span class="n">Deserialize</span> <span class="p">(</span><span class="n">shared_ptr</span> <span class="o"><</span><span class="n">Stream</span><span class="o">></span> <span class="n">stream</span><span class="p">)</span> <span class="p">{</span> <span class="n">Exception</span><span class="o">::</span><span class="n">Deserialize</span> <span class="p">(</span><span class="n">stream</span><span class="p">);</span> <span class="n">Serializer</span> <span class="nf">sr</span> <span class="p">(</span><span class="n">stream</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Deserialize</span> <span class="p">(</span><span class="s">"Command"</span><span class="p">,</span> <span class="n">Command</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Deserialize</span> <span class="p">(</span><span class="s">"ExitCode"</span><span class="p">,</span> <span class="n">ExitCode</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Deserialize</span> <span class="p">(</span><span class="s">"ErrorOutput"</span><span class="p">,</span> <span class="n">ErrorOutput</span><span class="p">);</span> <span class="p">}</span> <span class="kt">void</span> <span class="n">ExecutedProcessFailed</span><span class="o">::</span><span class="n">Serialize</span> <span class="p">(</span><span class="n">shared_ptr</span> <span class="o"><</span><span class="n">Stream</span><span class="o">></span> <span class="n">stream</span><span class="p">)</span> <span class="k">const</span> <span class="p">{</span> <span class="n">Exception</span><span class="o">::</span><span class="n">Serialize</span> <span class="p">(</span><span class="n">stream</span><span class="p">);</span> <span class="n">Serializer</span> <span class="nf">sr</span> <span class="p">(</span><span class="n">stream</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Serialize</span> <span class="p">(</span><span class="s">"Command"</span><span class="p">,</span> <span class="n">Command</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Serialize</span> <span class="p">(</span><span class="s">"ExitCode"</span><span class="p">,</span> <span class="n">ExitCode</span><span class="p">);</span> <span class="n">sr</span><span class="p">.</span><span class="n">Serialize</span> <span class="p">(</span><span class="s">"ErrorOutput"</span><span class="p">,</span> <span class="n">ErrorOutput</span><span class="p">);</span> <span class="p">}</span> <span class="cp">#define TC_EXCEPTION(TYPE) TC_SERIALIZER_FACTORY_ADD(TYPE)</span> <span class="cp">#undef TC_EXCEPTION_NODECL</span> <span class="cp">#define TC_EXCEPTION_NODECL(TYPE) TC_SERIALIZER_FACTORY_ADD(TYPE)</span> <span class="n">TC_SERIALIZER_FACTORY_ADD_EXCEPTION_SET</span> <span class="p">(</span><span class="n">Exception</span><span class="p">);</span> <span class="p">}</span> </pre></div>