Sha256: 48d2bb6026ce8b807b4739e33f111a2523b817a08c2b045ede8c2095293265e8

Contents?: true

Size: 783 Bytes

Versions: 2

Compression:

Stored size: 783 Bytes

Contents

#include <ruby.h>
#include "../compat/ruby.h"

#include "extconf.h"
#include "crc16.h"

VALUE Digest_CRC16_update(VALUE self, VALUE data)
{
	VALUE crc_ivar_name = rb_intern("@crc");
	VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name);
	crc16_t crc = NUM2USHORT(crc_ivar);

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

	crc = crc16_update(crc,data_ptr,length);

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

void Init_crc16_ext()
{
	VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
	VALUE cCRC16 = rb_const_get(mDigest, rb_intern("CRC16"));

	#ifdef HAVE_RB_EXT_RACTOR_SAFE
		rb_ext_ractor_safe(true);
	#endif

	rb_undef_method(cCRC16, "update");
	rb_define_method(cCRC16, "update", Digest_CRC16_update, 1);
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
digest-crc-0.7.0 ext/digest/crc16/crc16_ext.c
digest-crc-0.6.5 ext/digest/crc16/crc16_ext.c