1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* ---------------------------------------------------------------------------
- Nullsoft Database Engine
- --------------------
- codename: Near Death Experience
- --------------------------------------------------------------------------- */
- /* ---------------------------------------------------------------------------
- Binary32Field Class
- Field data layout:
- [4 bytes] length
- [length bytes] binary data
- --------------------------------------------------------------------------- */
- #include "../nde.h"
- #include "Binary32Field.h"
- #include "../ndestring.h"
- //---------------------------------------------------------------------------
- Binary32Field::Binary32Field(const uint8_t *_Data, size_t len) : BinaryField(_Data, (int)len)
- {
- InitField();
- }
- //---------------------------------------------------------------------------
- void Binary32Field::InitField(void)
- {
- Type = FIELD_BINARY32;
- }
- //---------------------------------------------------------------------------
- Binary32Field::Binary32Field()
- {
- InitField();
- }
- //---------------------------------------------------------------------------
- void Binary32Field::ReadTypedData(const uint8_t *data, size_t len)
- {
- size_t pos = 0;
- CHECK_INT(len); //len-=4;
- uint32_t c = GET_INT(); pos += 4;
- if (c && c<=len)
- {
- Size = c;
- ndestring_release((wchar_t *)Data);
- Data = (uint8_t *)ndestring_malloc(c);
- GET_BINARY(Data, data, c, pos);
- }
- }
- //---------------------------------------------------------------------------
- void Binary32Field::WriteTypedData(uint8_t *data, size_t len)
- {
- uint32_t c;
- size_t pos = 0;
- CHECK_INT(len); //len-=4;
- if (Data && Size<=len)
- {
- c = (uint32_t)Size;
- PUT_INT(c); pos += 4;
- if (Data)
- PUT_BINARY(data, (unsigned char*)Data, c, pos);
- }
- else
- {
- PUT_INT(0);
- }
- }
- //---------------------------------------------------------------------------
- size_t Binary32Field::GetDataSize(void)
- {
- if (!Data) return 4;
- return Size + 4;
- }
|