1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /* <!-- copyright */
- /*
- * aria2 - The high speed download utility
- *
- * Copyright (C) 2006 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 "ShaVisitor.h"
- #include "Util.h"
- ShaVisitor::ShaVisitor():
- ctx(DIGEST_ALGO_SHA1) {
- ctx.digestInit();
- }
- ShaVisitor::~ShaVisitor() {}
- void ShaVisitor::visit(const Data* d) {
- if(d->isNumber()) {
- ctx.digestUpdate("i", 1);
- } else {
- string lenStr = Util::llitos(d->getLen());
- ctx.digestUpdate(lenStr.c_str(), lenStr.size());
- ctx.digestUpdate(":", 1);
- }
- ctx.digestUpdate(d->getData(), d->getLen());
- if(d->isNumber()) {
- ctx.digestUpdate("e", 1);
- }
- }
- void ShaVisitor::visit(const Dictionary* d) {
- ctx.digestUpdate("d", 1);
- const Order& v = d->getOrder();
- for(Order::const_iterator itr = v.begin(); itr != v.end(); itr++) {
- string lenStr = Util::llitos(itr->size());
- ctx.digestUpdate(lenStr.c_str(), lenStr.size());
- ctx.digestUpdate(":", 1);
- ctx.digestUpdate(itr->c_str(), itr->size());
- const MetaEntry* e = d->get(*itr);
- this->visit(e);
- }
- ctx.digestUpdate("e", 1);
- }
- void ShaVisitor::visit(const List* l) {
- ctx.digestUpdate("l", 1);
- for(MetaList::const_iterator itr = l->getList().begin(); itr != l->getList().end(); itr++) {
- this->visit(*itr);
- }
- ctx.digestUpdate("e", 1);
- }
- void ShaVisitor::visit(const MetaEntry* e) {
- if(dynamic_cast<const Data*>(e) != NULL) {
- visit((const Data*)e);
- } else if(dynamic_cast<const Dictionary*>(e) != NULL) {
- visit((const Dictionary*)e);
- } else if(dynamic_cast<const List*>(e) != NULL) {
- visit((const List*)e);
- }
- }
- void ShaVisitor::getHash(unsigned char* hashValue, int& len) {
- len = ctx.digestLength();
- ctx.digestFinal(hashValue);
- }
|