1tcl::transform::crc32(n)Reflected/virtual channel supporttcl::transform::crc32(n)
2
3
4
5______________________________________________________________________________
6
8 tcl::transform::crc32 - Crc32 transformation
9
11 package require Tcl 8.6
12
13 package require tcl::transform::core ?1?
14
15 package require tcl::transform::crc32 ?1?
16
17 ::tcl::transform::crc32 chan -option value...
18
19______________________________________________________________________________
20
22 The tcl::transform::crc32 package provides a command creating a channel
23 transformation which passes the read and written bytes through un‐
24 changed (like tcl::transform::identity), but additionally continuously
25 computes the crc32 checksums of the data it has seen for each direction
26 and stores them in Tcl variables specified at construction time. The
27 checksum in question is zlib's crc32.
28
29 Related transformations in this module are tcl::transform::adler32,
30 tcl::transform::counter, tcl::transform::identity, and tcl::trans‐
31 form::observe.
32
33 The internal TclOO class implementing the transform handler is a sub-
34 class of the tcl::transform::core framework.
35
37 ::tcl::transform::crc32 chan -option value...
38 This command creates a crc32 checksumming transformation on top
39 of the channel chan and returns its handle. The accepted options
40 are
41
42 -read-variable varname
43 The value of the option is the name of a global or names‐
44 paced variable, the location where the transformation has
45 to store the crc32 checksum of the data read from the
46 channel.
47
48 If not specified, or the empty string, the checksum of
49 the read direction is not saved.
50
51 -write-variable varname
52 The value of the option is the name of a global or names‐
53 paced variable, the location where the transformation has
54 to store the crc32 checksum of the data written to the
55 channel.
56
57 If not specified, or the empty string, the checksum of
58 the write direction is not saved.
59
61 This document, and the package it describes, will undoubtedly contain
62 bugs and other problems. Please report such in the category virtchan‐
63 nel of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist].
64 Please also report any ideas for enhancements you may have for either
65 package and/or documentation.
66
67 When proposing code changes, please provide unified diffs, i.e the out‐
68 put of diff -u.
69
70 Note further that attachments are strongly preferred over inlined
71 patches. Attachments can be made by going to the Edit form of the
72 ticket immediately after its creation, and then using the left-most
73 button in the secondary navigation bar.
74
76 channel transformation, checksum, crc32, reflected channel, tip 230,
77 transformation, virtual channel
78
80 Channels
81
83 Copyright (c) 2009 Andreas Kupries <andreas_kupries@users.sourceforge.net>
84
85
86
87
88tcllib 1 tcl::transform::crc32(n)