Alexander Afanasyev | 5ba9036 | 2013-07-15 19:58:38 -0700 | [diff] [blame] | 1 | ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | # |
| 3 | # Copyright (c) 2011-2013, Regents of the University of California |
| 4 | # Alexander Afanasyev |
| 5 | # |
| 6 | # GNU 3.0 license, See the LICENSE file for more information |
| 7 | # |
| 8 | # Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 9 | # |
| 10 | |
| 11 | # |
| 12 | # Based on PyCCN code, copyrighted and licensed as follows |
| 13 | # |
| 14 | # Copyright (c) 2011-2013, Regents of the University of California |
| 15 | # BSD license, See the COPYING file for more information |
| 16 | # Written by: Derek Kulinski <takeda@takeda.tk> |
| 17 | # Jeff Burke <jburke@ucla.edu> |
| 18 | # |
| 19 | |
| 20 | import math |
| 21 | import ndn |
| 22 | |
| 23 | class Wrapper(object): |
| 24 | def __init__(self, name, key): |
| 25 | self.name = name |
| 26 | self.key = key |
| 27 | |
| 28 | kl = ndn.KeyLocator(key) |
| 29 | self.signed_info = ndn.SignedInfo(key_locator = kl, key_digest = key.publicKeyID) |
| 30 | |
| 31 | def __call__(self, chunk, segment, segments): |
| 32 | name = self.name + ndn.Name.num2seg(segment) |
| 33 | self.signed_info.finalBlockID = ndn.Name.num2seg(segments - 1) |
| 34 | |
Alexander Afanasyev | fce5bbd | 2013-08-07 18:50:00 -0700 | [diff] [blame] | 35 | co = ndn.Data(name = name, content = chunk, signed_info = self.signed_info) |
Alexander Afanasyev | 5ba9036 | 2013-07-15 19:58:38 -0700 | [diff] [blame] | 36 | co.sign(self.key) |
| 37 | |
| 38 | return co |
| 39 | |
| 40 | def segmenter(data, wrapper = None, chunk_size = 4096): |
| 41 | segment = 0 |
| 42 | segments = math.ceil(len(data) / float(chunk_size)) |
| 43 | |
| 44 | while segment < segments: |
| 45 | start = segment * chunk_size |
| 46 | end = min(start + chunk_size, len(data)) |
| 47 | chunk = data[start : end] |
| 48 | |
| 49 | if wrapper is not None: |
| 50 | chunk = wrapper(chunk, segment, segments) |
| 51 | |
| 52 | yield chunk |
| 53 | |
| 54 | segment += 1 |
| 55 | |