Line data Source code
1 : /* 2 : * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #include "base/proto.h" 6 : 7 : #include <boost/bind/bind.hpp> 8 : 9 : using namespace std; 10 : using namespace boost::placeholders; 11 : 12 : namespace detail { 13 : bool debug_ = false; 14 : } 15 : 16 : struct ParseContext::StackFrame { 17 2661567 : StackFrame() : offset(0), lensize(0), size(-1), total_size(-1) { 18 2661475 : } 19 : int offset; // offset of the data pointer at present 20 : int lensize; //size of the length of the current element being parsed 21 : size_t size; 22 : size_t total_size; 23 : std::unique_ptr<ParseObject> data; 24 : }; 25 : 26 199763 : ParseContext::ParseContext() 27 199763 : : offset_(0) { 28 199761 : } 29 : 30 : struct deleter { 31 : template <typename T> 32 200133 : void operator()(T *ptr) { 33 200133 : delete ptr; 34 200140 : } 35 : }; 36 : 37 199744 : ParseContext::~ParseContext() { 38 199744 : for_each(stack_.begin(), stack_.end(), deleter()); 39 199747 : stack_.clear(); 40 199747 : } 41 : 42 192213 : ParseObject *ParseContext::release() { 43 192213 : if (stack_.empty()) { 44 0 : return NULL; 45 : } 46 192210 : StackFrame *current = stack_.back(); 47 192209 : return current->data.release(); 48 : } 49 : 50 2661515 : void ParseContext::Push(ParseObject *data) { 51 2661515 : StackFrame *frame = new StackFrame(); 52 2661477 : frame->data.reset(data); 53 2661381 : stack_.push_back(frame); 54 2661420 : } 55 : 56 2653540 : ParseObject *ParseContext::Pop() { 57 2653540 : if (stack_.size() <= 1) { 58 192205 : return NULL; 59 : } 60 2461322 : StackFrame *frame = stack_.back(); 61 2461309 : ParseObject *obj = frame->data.release(); 62 2461296 : stack_.pop_back(); 63 2461301 : delete frame; 64 2461343 : return obj; 65 : } 66 : 67 664063 : void ParseContext::ReleaseData() { 68 664063 : if (!stack_.empty()) { 69 664056 : StackFrame *frame = stack_.back(); 70 664052 : frame->data.release(); 71 : } 72 664041 : } 73 1295038 : void ParseContext::SwapData(ParseObject *obj) { 74 1295038 : if (!stack_.empty() && obj) { 75 1295019 : StackFrame *frame = stack_.back(); 76 1295012 : frame->data.reset(obj); 77 : } else { 78 5 : delete obj; 79 : } 80 1294989 : } 81 : 82 0 : ParseObject *ParseContext::data() { 83 0 : if (stack_.empty()) { 84 0 : return NULL; 85 : } 86 0 : StackFrame *current = stack_.back(); 87 0 : return current->data.get(); 88 : } 89 : 90 9280403 : void ParseContext::advance(int delta) { 91 9280403 : if (!stack_.empty()) { 92 8689513 : stack_.back()->offset += delta; 93 : } 94 9279317 : offset_ += delta; 95 9279317 : } 96 : 97 2159633 : void ParseContext::set_lensize(int length) { 98 2159633 : if (!stack_.empty()) { 99 2159610 : StackFrame *current = stack_.back(); 100 2159588 : current->lensize = length; 101 : } 102 2159588 : } 103 : 104 3287659 : int ParseContext::lensize() const { 105 3287659 : if (stack_.empty()) { 106 0 : return -1; 107 : } 108 3287679 : StackFrame *current = stack_.back(); 109 3287665 : return current->lensize; 110 : } 111 : 112 7283694 : void ParseContext::set_size(size_t length) { 113 7283694 : if (!stack_.empty()) { 114 6889087 : StackFrame *current = stack_.back(); 115 6888975 : current->size = length; 116 : } 117 7283326 : } 118 : 119 23626522 : size_t ParseContext::size() const { 120 23626522 : if (stack_.empty()) { 121 989025 : return -1; 122 : } 123 22634205 : StackFrame *current = stack_.back(); 124 22633543 : return current->size; 125 : } 126 : 127 2793457 : void ParseContext::set_total_size() { 128 2793457 : if (!stack_.empty()) { 129 2793438 : StackFrame *current = stack_.back(); 130 2793423 : current->total_size = current->size; 131 : } 132 2793423 : } 133 : 134 87594 : size_t ParseContext::total_size() const { 135 87594 : if (stack_.empty()) { 136 0 : return -1; 137 : } 138 87597 : StackFrame *current = stack_.back(); 139 87594 : return current->total_size >= 0 ? current->total_size : current->size; 140 : } 141 : 142 7840 : void ParseContext::SetError(int error, int subcode, std::string type, 143 : const uint8_t *data, int data_size) { 144 7840 : if (error_context_.error_code) { 145 : // Error already set. Ignore this one. 146 300 : return; 147 : } 148 7540 : error_context_.error_code = error; 149 7540 : error_context_.error_subcode = subcode; 150 7540 : error_context_.type_name = type; 151 7540 : error_context_.data = data; 152 7540 : error_context_.data_size = data_size; 153 : } 154 : 155 : struct EncodeContext::StackFrame { 156 : typedef boost::function<void(EncodeContext *)> CallbackFn; 157 : typedef std::vector<CallbackFn>::iterator CallbackIterator; 158 5112195 : StackFrame() : offset(0) { 159 5111839 : } 160 : int offset; 161 : std::vector<CallbackFn> callbacks; 162 : }; 163 : 164 279369 : EncodeContext::EncodeContext() { 165 279443 : } 166 : 167 279457 : EncodeContext::~EncodeContext() { 168 279457 : } 169 : 170 5111807 : void EncodeContext::Push() { 171 5111807 : StackFrame *frame = new StackFrame(); 172 5111793 : stack_.push_back(frame); 173 5110099 : } 174 : 175 5110681 : void EncodeContext::Pop(bool callback) { 176 5110681 : StackFrame *frame = &stack_.back(); 177 5110091 : if (callback) { 178 5109948 : for (StackFrame::CallbackIterator iter = 179 12673241 : frame->callbacks.begin(); iter != frame->callbacks.end(); ++iter) { 180 2453299 : StackFrame::CallbackFn cb = *iter; 181 2453341 : (cb)(this); 182 2453042 : } 183 : } 184 : 185 5110314 : int p_offset = frame->offset; 186 5110314 : stack_.pop_back(); // deletes frame 187 5110232 : if (!stack_.empty()) { 188 4830728 : StackFrame *top = &(stack_.back()); 189 4829830 : top->offset += p_offset; 190 : } 191 5108735 : } 192 : 193 8651301 : void EncodeContext::advance(int delta) { 194 8651301 : if (stack_.empty()) { 195 0 : return; 196 : } 197 8649329 : StackFrame *frame = &stack_.back(); 198 8646183 : frame->offset += delta; 199 : } 200 : 201 2216378 : int EncodeContext::length() const { 202 2216378 : const StackFrame *frame = &stack_.back(); 203 2216136 : return frame->offset; 204 : }; 205 : 206 2454003 : void EncodeContext::AddCallback(CallbackType cb, uint8_t *data, 207 : int element_size) { 208 2454003 : StackFrame *top = &(stack_.back()); 209 2453739 : top->callbacks.push_back( 210 4906811 : boost::bind(cb, _1, data, top->offset, element_size)); 211 2452954 : } 212 : 213 580936 : void EncodeOffsets::SaveOffset(std::string key, int offset) { 214 : std::pair<std::map<std::string, int>::iterator, bool > result = 215 580936 : offsets_.insert(make_pair(key, offset)); 216 581054 : if (!result.second) { 217 4 : PROTO_DEBUG("Offset for " << key << " already set"); 218 : } 219 581054 : } 220 : 221 580892 : void EncodeContext::SaveOffset(std::string key) { 222 580892 : int length = 0; 223 580892 : for (boost::ptr_vector<StackFrame>::iterator it = stack_.begin(); 224 2238060 : it != stack_.end(); ++it) { 225 1657181 : length += it->offset; 226 : } 227 580809 : PROTO_DEBUG("Saving Offset for " << key << " at " << length); 228 580809 : offsets_.SaveOffset(key, length); 229 581051 : } 230 : 231 188114 : int EncodeOffsets::FindOffset(const char *key) { 232 188114 : std::map<std::string, int>::iterator it = offsets_.find(std::string(key)); 233 188104 : if (it == offsets_.end()) 234 0 : return -1; 235 188107 : return it->second; 236 : }