| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 | 
							- /* <!-- copyright */
 
- /*
 
-  * aria2 - The high speed download utility
 
-  *
 
-  * Copyright (C) 2010 Tatsuhiro Tsujikawa
 
-  *
 
-  * This program is free software; you can redistribute it and/or modify
 
-  * it under the terms of the GNU General Public License as published by
 
-  * the Free Software Foundation; either version 2 of the License, or
 
-  * (at your option) any later version.
 
-  *
 
-  * This program is distributed in the hope that it will be useful,
 
-  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
-  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
-  * GNU General Public License for more details.
 
-  *
 
-  * You should have received a copy of the GNU General Public License
 
-  * along with this program; if not, write to the Free Software
 
-  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
-  *
 
-  * In addition, as a special exception, the copyright holders give
 
-  * permission to link the code of portions of this program with the
 
-  * OpenSSL library under certain conditions as described in each
 
-  * individual source file, and distribute linked combinations
 
-  * including the two.
 
-  * You must obey the GNU General Public License in all respects
 
-  * for all of the code used other than OpenSSL.  If you modify
 
-  * file(s) with this exception, you may extend this exception to your
 
-  * version of the file(s), but you are not obligated to do so.  If you
 
-  * do not wish to do so, delete this exception statement from your
 
-  * version.  If you delete this exception statement from all source
 
-  * files in the program, then also delete it here.
 
-  */
 
- /* copyright --> */
 
- #include "bencode2.h"
 
- #include <fstream>
 
- #include <sstream>
 
- #include "fmt.h"
 
- #include "DlAbortEx.h"
 
- #include "error_code.h"
 
- namespace aria2 {
 
- namespace bencode2 {
 
- namespace {
 
- SharedHandle<ValueBase> decodeiter(std::istream& ss, size_t depth);
 
- } // namespace
 
- namespace {
 
- void checkdelim(std::istream& ss, const char delim = ':')
 
- {
 
-   char d;
 
-   if(!(ss.get(d) && d == delim)) {
 
-     throw DL_ABORT_EX2
 
-       (fmt("Bencode decoding failed: Delimiter '%c' not found.",
 
-            delim),
 
-        error_code::BENCODE_PARSE_ERROR);
 
-   }
 
- }
 
- } // namespace
 
- namespace {
 
- std::string decoderawstring(std::istream& ss)
 
- {
 
-   int length;
 
-   ss >> length;
 
-   if(!ss || length < 0) {
 
-     throw DL_ABORT_EX2("Bencode decoding failed:"
 
-                        " A positive integer expected but none found.",
 
-                        error_code::BENCODE_PARSE_ERROR);
 
-   }
 
-   // TODO check length, it must be less than or equal to INT_MAX
 
-   checkdelim(ss);
 
-   char* buf = new char[length];
 
-   ss.read(buf, length);
 
-   std::string str(&buf[0], &buf[length]);
 
-   delete [] buf;
 
-   if(ss.gcount() != static_cast<int>(length)) {
 
-     throw DL_ABORT_EX2
 
-       (fmt("Bencode decoding failed:"
 
-            " Expected %lu bytes of data, but only %ld read.",
 
-            static_cast<unsigned long>(length),
 
-            static_cast<long int>(ss.gcount())),
 
-        error_code::BENCODE_PARSE_ERROR);
 
-   }
 
-   return str;
 
- }
 
- } // namespace
 
- namespace {
 
- SharedHandle<ValueBase> decodestring(std::istream& ss)
 
- {
 
-   return String::g(decoderawstring(ss));
 
- }
 
- } // namespace
 
- namespace {
 
- SharedHandle<ValueBase> decodeinteger(std::istream& ss)
 
- {
 
-   Integer::ValueType iv;
 
-   ss >> iv;
 
-   if(!ss) {
 
-     throw DL_ABORT_EX2("Bencode decoding failed:"
 
-                        " Integer expected but none found",
 
-                        error_code::BENCODE_PARSE_ERROR);
 
-   }
 
-   checkdelim(ss, 'e');
 
-   return Integer::g(iv);
 
- }
 
- } // namespace
 
- namespace {
 
- SharedHandle<ValueBase> decodedict(std::istream& ss, size_t depth)
 
- {
 
-   SharedHandle<Dict> dict = Dict::g();
 
-   char c;
 
-   while(ss.get(c)) {
 
-     if(c == 'e') {
 
-       return dict;
 
-     } else {
 
-       ss.unget();
 
-       std::string key = decoderawstring(ss);
 
-       dict->put(key, decodeiter(ss, depth));
 
-     }
 
-   }
 
-   throw DL_ABORT_EX2("Bencode decoding failed:"
 
-                      " Unexpected EOF in dict context. 'e' expected.",
 
-                      error_code::BENCODE_PARSE_ERROR);
 
- }
 
- } // namespace
 
- namespace {
 
- SharedHandle<ValueBase> decodelist(std::istream& ss, size_t depth)
 
- {
 
-   SharedHandle<List> list = List::g();
 
-   char c;
 
-   while(ss.get(c)) {
 
-     if(c == 'e') {
 
-       return list;
 
-     } else {
 
-       ss.unget();
 
-       list->append(decodeiter(ss, depth));
 
-     }
 
-   }
 
-   throw DL_ABORT_EX2("Bencode decoding failed:"
 
-                      " Unexpected EOF in list context. 'e' expected.",
 
-                      error_code::BENCODE_PARSE_ERROR);
 
- }
 
- } // namespace
 
- namespace {
 
- void checkDepth(size_t depth)
 
- {
 
-   if(depth >= MAX_STRUCTURE_DEPTH) {
 
-     throw DL_ABORT_EX2("Bencode decoding failed: Structure is too deep.",
 
-                        error_code::BENCODE_PARSE_ERROR);
 
-   }
 
- }
 
- } // namespace
 
- namespace {
 
- SharedHandle<ValueBase> decodeiter(std::istream& ss, size_t depth)
 
- {
 
-   checkDepth(depth);
 
-   char c;
 
-   if(!ss.get(c)) {
 
-     throw DL_ABORT_EX2("Bencode decoding failed:"
 
-                        " Unexpected EOF in term context."
 
-                        " 'd', 'l', 'i' or digit is expected.",
 
-                        error_code::BENCODE_PARSE_ERROR);
 
-   }
 
-   if(c == 'd') {
 
-     return decodedict(ss, depth+1);
 
-   } else if(c == 'l') {
 
-     return decodelist(ss, depth+1);
 
-   } else if(c == 'i') {
 
-     return decodeinteger(ss);
 
-   } else {
 
-     ss.unget();
 
-     return decodestring(ss);
 
-   }
 
- }
 
- } // namespace
 
- SharedHandle<ValueBase> decode(std::istream& in)
 
- {
 
-   return decodeiter(in, 0);
 
- }
 
- SharedHandle<ValueBase> decode(const std::string& s)
 
- {
 
-   size_t end;
 
-   return decode(s, end);
 
- }
 
- SharedHandle<ValueBase> decode(const std::string& s, size_t& end)
 
- {
 
-   if(s.empty()) {
 
-     return SharedHandle<ValueBase>();
 
-   }
 
-   std::istringstream ss(s);
 
-   SharedHandle<ValueBase> vlb = decodeiter(ss, 0);
 
-   end = ss.tellg();
 
-   return vlb;
 
- }
 
- SharedHandle<ValueBase> decode(const unsigned char* data, size_t length)
 
- {
 
-   return decode(std::string(&data[0], &data[length]));
 
- }
 
- SharedHandle<ValueBase> decode(const unsigned char* data, size_t length, size_t& end)
 
- {
 
-   return decode(std::string(&data[0], &data[length]), end);
 
- }
 
- SharedHandle<ValueBase> decodeFromFile(const std::string& filename)
 
- {
 
-   std::ifstream f(filename.c_str(), std::ios::binary);
 
-   if(f) {
 
-     return decode(f);
 
-   } else {
 
-     throw DL_ABORT_EX2
 
-       (fmt("Bencode decoding failed: Cannot open file '%s'.",
 
-            filename.c_str()),
 
-        error_code::BENCODE_PARSE_ERROR);
 
-   }
 
- }
 
- std::string encode(const ValueBase* vlb)
 
- {
 
-   class BencodeValueBaseVisitor:public ValueBaseVisitor {
 
-   private:
 
-     std::ostringstream out_;
 
-   public:
 
-     virtual void visit(const String& string)
 
-     {
 
-       const std::string& s = string.s();
 
-       out_ << s.size() << ":";
 
-       out_.write(s.data(), s.size());
 
-     }
 
-     virtual void visit(const Integer& integer)
 
-     {
 
-       out_ << "i" << integer.i() << "e";
 
-     }
 
-     virtual void visit(const List& list)
 
-     {
 
-       out_ << "l";
 
-       for(List::ValueType::const_iterator i = list.begin(), eoi = list.end();
 
-           i != eoi; ++i){
 
-         (*i)->accept(*this);
 
-       }
 
-       out_ << "e";
 
-     }
 
-     virtual void visit(const Dict& dict)
 
-     {
 
-       out_ << "d";
 
-       for(Dict::ValueType::const_iterator i = dict.begin(), eoi = dict.end();
 
-           i != eoi; ++i){
 
-         const std::string& key = (*i).first;
 
-         out_ << key.size() << ":";
 
-         out_.write(key.data(), key.size());
 
-         (*i).second->accept(*this);
 
-       }
 
-       out_ << "e";
 
-     }
 
-     std::string getResult() const
 
-     {
 
-       return out_.str();
 
-     }
 
-   };
 
-   BencodeValueBaseVisitor visitor;
 
-   vlb->accept(visitor);
 
-   return visitor.getResult();
 
- }
 
- std::string encode(const SharedHandle<ValueBase>& vlb)
 
- {
 
-   return encode(vlb.get());
 
- }
 
- } // namespace bencode2
 
- } // namespace aria2
 
 
  |