]> Git Repo - VerusCoin.git/blob - src/core_read.cpp
Merge pull request #5272
[VerusCoin.git] / src / core_read.cpp
1 // Copyright (c) 2009-2014 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5 #include "core_io.h"
6
7 #include "primitives/block.h"
8 #include "primitives/transaction.h"
9 #include "script/script.h"
10 #include "serialize.h"
11 #include "streams.h"
12 #include "univalue/univalue.h"
13 #include "util.h"
14 #include "utilstrencodings.h"
15 #include "version.h"
16
17 #include <boost/algorithm/string/classification.hpp>
18 #include <boost/algorithm/string/predicate.hpp>
19 #include <boost/algorithm/string/replace.hpp>
20 #include <boost/algorithm/string/split.hpp>
21 #include <boost/assign/list_of.hpp>
22
23 using namespace boost;
24 using namespace boost::algorithm;
25 using namespace std;
26
27 CScript ParseScript(std::string s)
28 {
29     CScript result;
30
31     static map<string, opcodetype> mapOpNames;
32
33     if (mapOpNames.empty())
34     {
35         for (int op = 0; op <= OP_NOP10; op++)
36         {
37             // Allow OP_RESERVED to get into mapOpNames
38             if (op < OP_NOP && op != OP_RESERVED)
39                 continue;
40
41             const char* name = GetOpName((opcodetype)op);
42             if (strcmp(name, "OP_UNKNOWN") == 0)
43                 continue;
44             string strName(name);
45             mapOpNames[strName] = (opcodetype)op;
46             // Convenience: OP_ADD and just ADD are both recognized:
47             replace_first(strName, "OP_", "");
48             mapOpNames[strName] = (opcodetype)op;
49         }
50     }
51
52     vector<string> words;
53     split(words, s, is_any_of(" \t\n"), token_compress_on);
54
55     for (std::vector<std::string>::const_iterator w = words.begin(); w != words.end(); ++w)
56     {
57         if (w->empty())
58         {
59             // Empty string, ignore. (boost::split given '' will return one word)
60         }
61         else if (all(*w, is_digit()) ||
62             (starts_with(*w, "-") && all(string(w->begin()+1, w->end()), is_digit())))
63         {
64             // Number
65             int64_t n = atoi64(*w);
66             result << n;
67         }
68         else if (starts_with(*w, "0x") && (w->begin()+2 != w->end()) && IsHex(string(w->begin()+2, w->end())))
69         {
70             // Raw hex data, inserted NOT pushed onto stack:
71             std::vector<unsigned char> raw = ParseHex(string(w->begin()+2, w->end()));
72             result.insert(result.end(), raw.begin(), raw.end());
73         }
74         else if (w->size() >= 2 && starts_with(*w, "'") && ends_with(*w, "'"))
75         {
76             // Single-quoted string, pushed as data. NOTE: this is poor-man's
77             // parsing, spaces/tabs/newlines in single-quoted strings won't work.
78             std::vector<unsigned char> value(w->begin()+1, w->end()-1);
79             result << value;
80         }
81         else if (mapOpNames.count(*w))
82         {
83             // opcode, e.g. OP_ADD or ADD:
84             result << mapOpNames[*w];
85         }
86         else
87         {
88             throw runtime_error("script parse error");
89         }
90     }
91
92     return result;
93 }
94
95 bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx)
96 {
97     if (!IsHex(strHexTx))
98         return false;
99
100     vector<unsigned char> txData(ParseHex(strHexTx));
101     CDataStream ssData(txData, SER_NETWORK, PROTOCOL_VERSION);
102     try {
103         ssData >> tx;
104     }
105     catch (const std::exception&) {
106         return false;
107     }
108
109     return true;
110 }
111
112 bool DecodeHexBlk(CBlock& block, const std::string& strHexBlk)
113 {
114     if (!IsHex(strHexBlk))
115         return false;
116
117     std::vector<unsigned char> blockData(ParseHex(strHexBlk));
118     CDataStream ssBlock(blockData, SER_NETWORK, PROTOCOL_VERSION);
119     try {
120         ssBlock >> block;
121     }
122     catch (const std::exception&) {
123         return false;
124     }
125
126     return true;
127 }
128
129 uint256 ParseHashUV(const UniValue& v, const string& strName)
130 {
131     string strHex;
132     if (v.isStr())
133         strHex = v.getValStr();
134     if (!IsHex(strHex)) // Note: IsHex("") is false
135         throw runtime_error(strName+" must be hexadecimal string (not '"+strHex+"')");
136
137     uint256 result;
138     result.SetHex(strHex);
139     return result;
140 }
141
142 vector<unsigned char> ParseHexUV(const UniValue& v, const string& strName)
143 {
144     string strHex;
145     if (v.isStr())
146         strHex = v.getValStr();
147     if (!IsHex(strHex))
148         throw runtime_error(strName+" must be hexadecimal string (not '"+strHex+"')");
149     return ParseHex(strHex);
150 }
This page took 0.030556 seconds and 4 git commands to generate.