Sha256: af09489649c8507071affc5a5455095b335d87a2ebf52f98d543132faac236d4

Contents?: true

Size: 749 Bytes

Versions: 2

Compression:

Stored size: 749 Bytes

Contents

#include "ruby.h"
#include "extconf.h"

#include "crc8_1wire.h"

VALUE Digest_CRC81Wire_update(VALUE self, VALUE data)
{
	VALUE crc_ivar_name = rb_intern("@crc");
	VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name);
	crc8_t crc = NUM2CHR(crc_ivar);

	const char *data_ptr = StringValuePtr(data);
	size_t length = RSTRING_LEN(data);

	crc = crc8_1wire_update(crc,data_ptr,length);

	rb_ivar_set(self, crc_ivar_name, UINT2NUM(crc));
	return self;
}

void Init_crc8_1wire_ext()
{
	VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
	VALUE cCRC81Wire = rb_const_get(mDigest, rb_intern("CRC8_1Wire"));

	#ifdef HAVE_RB_EXT_RACTOR_SAFE
		rb_ext_ractor_safe(true);
	#endif

	rb_define_method(cCRC81Wire, "update", Digest_CRC81Wire_update, 1);
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
digest-crc-0.7.0 ext/digest/crc8_1wire/crc8_1wire_ext.c
digest-crc-0.6.5 ext/digest/crc8_1wire/crc8_1wire_ext.c