0
votes
1answer
29 views

Serialization/Deserialization in C/C++ for union arrays

What is the best way to serialize / deserialize union arrays with strings and basic integer? For example, we want to serialize: union val_u { int i; char *s; } void serialize(void *buffer, const ...
0
votes
1answer
36 views

Serialization of structure with OPENSSL Signatures

I am doing serialization of a structure in C but I am having a problem which I can figure it out:s The code is a bit long but I think it is ok to understand. This is the top level structure I am ...
0
votes
0answers
43 views

Serializing array of structs containing struct containing array of strings with tpl

I've got some code written in C with some fairly substantial structs used to hold data. I wanted to use tpl for serialization/deserialization of struct data for saving and loading the program's data ...
0
votes
0answers
128 views

Sending a 2d integer array over TCP socket in C

I want to send a 2d integer array to a server for matrix multiplication. But the problem is that i receive a 2d array of zeros in the server. here is my attempt Client: int a[2][2] = ...
1
vote
1answer
44 views

Strange Typecasting errors

So, I have this function, and I am getting some really weird errors that I can't figure out. void serialize_helper(huff *h, bits *history, char** a) { switch (h->tag) { case LEAF: char ...
0
votes
1answer
126 views

How do I unpack and extract data properly using msgpack-c?

I'm currently trying to use msgpack in a project written in C. I'm using msgpack for the purpose of serializing the contents of a struct, which is then to be sent over the network, and deserialized ...
1
vote
5answers
398 views

Converting a Binary Tree into an Array (and later save) in C

So, I'm doing this customer application where you can create/Modify/Search/List Customers. Later on this expands to linking customers to products with an order and so on, but my focus right now is ...
3
votes
3answers
231 views

Data through Sockets in C++

I am currently working on a project that uses the network. I have to send a struct struct Header { uint32_t magic; uint32_t checksum; uint32_t timestamp; uint16_t ...
1
vote
2answers
106 views

use sprintf with char *

Im trying to use this but when I run it with valgrind I have some memory problems. For expample char *serialize_file(t_file_package *pack) { char *payLoad = ...
1
vote
1answer
157 views

C/C++: Conversion of char[] to int fails, unsigned char[] to int works, why?

I haven't found a question answering this exact behaviour, and somehow I just don't understand what is going on: I read the contents of a Windows Bitmap File (bmp) into a array and use this array ...
0
votes
0answers
53 views

C structure serialization that will work on windows kernel

I'm developing a driver that suppose to receive several complex IOCTLs (including large data structures), I was wondering whether there is a good way to serialize the data and pass it to the driver ...
0
votes
0answers
46 views

Serialization of packages issue

im trying to make my own Serialization library but I have some problems with the following. I have a package wich I serialize to a t_stream and then I need to serialize the t_stream to a char * ...
2
votes
3answers
378 views

Correct way to serialize binary data in C++

After having read the following 1 and 2 Q/As and having used the technique discussed below for many years on x86 architectures with GCC and MSVC and not seeing a problems, I'm now very confused as to ...
0
votes
2answers
160 views

Trouble with packing and sending binary data over socket -Serialization

I have for several hours tried, debugged and cried in hope to get my program to send/pack and receive/unpack my data correctly. My only hope is some good help! To pack/unpack data i have implemented ...
2
votes
2answers
75 views

serialize data into a consecutive array

I have objects that I like to be able to serialize as a consecutive stream of bytes. Two questions: 1) Is an array of char appropriate for this task? If not what are better options? 2) What is the ...
1
vote
3answers
166 views

How to efficiently serialize 64-bit floats so that the byte arrays preserve natural numeric order?

The project I'm working on requires me to store javascript numbers(which are doubles) as BLOB primary keys in a database table(can't use the database native float data type). So basically I need to ...
1
vote
2answers
185 views

how to write tree data to file in C?

I was looking at the similar questions but didn't find a solution . I have a structure similar to a tree with more than 2 nodes. I also have a pointer to the root. typedef struct tree { char ...
1
vote
3answers
873 views

Convert Bytes to Int / uint in C

I have a unsigned char array[248]; filled with bytes. Like 2F AF FF 00 EB AB CD EF ..... This Array is my Byte Stream which I store my Data from the UART (RS232) as a Buffer. Now I want to convert ...
0
votes
1answer
98 views

Serialization of packages with C

Im new here and Ill love your help. Im trying to serialize and deserialize a package (to use it in sockets) and the results are not the ones that I expect but I cant find the mistake. Here“s the code. ...
1
vote
3answers
113 views

Sending the contents of a union in C over a network connection

I'm trying to understand and use a union in C in a Linux environment. Suppose I have the following union union test { int one; long two; } t1; If I'm going to write t1.one to a network ...
-3
votes
3answers
486 views

Binary serialization in pure C/C++

I'd like to implement the binary serialization on my own, without using Boost or any other third-party library. In C++ the simpliest way to achieve it is to use ofstream and then send a binary file ...
1
vote
1answer
95 views

AIX equivalent of ieee754.h

I wrote some C code that serializes certain values into a file that is subsequently deserialized (using custom code) in Java on another machine. Among values I'm serializing are 64-bit double ...
0
votes
2answers
321 views

Serializing Int values to char* buffer in ANSI C

I tried to serialize a structure field (int) to a char* buffer but I think I am doing things wrong. This is what I am using to copy this field. memcpy(payload + offset, ...
1
vote
2answers
383 views

Serializing and De serializing problems in ANSI C

here is something I have been working on for quite a while and can't solve why it is not working properly, hope you can help me work something out!. I'll try to be as descriptive as possible. The ...
11
votes
1answer
296 views

Example of writing CSV using StrTk String Toolkit Library

I just started to learn the String Toolkit Library. I've read the CodeProject article, but it seemed focused on parsing and tokenization. Can someone point me to an example of using it to serialize ...
1
vote
2answers
235 views

How to send structure from a C application to an Java Application with UDP

I actually want to send a structure over UDP from a C application to a java application. The struct looking like that : typedef struct { type1 liste1; type2 liste2; type3 liste3; type4 liste4; ...
2
votes
4answers
250 views

Serializing strings in C

I'm serializing structs into byte-streams. My method is simple: pack all ints in little endian order and copy strings including the null terminator. The other side has to statically know how to unpack ...
3
votes
1answer
305 views

Binary serialization of variable length data and zero length arrays, is it safe?

I did some research but cannot find a definite approval or disapproval. What I want is, a fixed size structure + variable length part, so that serialization can be expressed in simple and less error ...
1
vote
1answer
1k views

converting struct into char array

im lil bit confusing on how to convert struct to char[] in c. my cdma modem doesn't support to send variables, it only understands ascii characters, so i need to do the conversion operation. let's ...
2
votes
1answer
309 views

decode a java serialized .dat file in C

Is it possible to decode a java serialized .dat file in C? I have a file in a java project which I read as follows in java project: FileInputStream in = new FileInputStream(.dat file path); ...
0
votes
2answers
414 views

c code serialization of double and floats with a exponent base 10

I need a fast solution to serialize float (4 bytes) and double (8 bytes) into binary representation to send them over the network. The problem is the format I have to use : mantissa * 10^exponent ...
1
vote
1answer
509 views

Transmission of audio file using c sockets

I am trying to send audio file from one computer to other using socket programming in c. When I send simple string without any framing information such as header or tailer it gets sent perfectly. But ...
0
votes
1answer
334 views

Socket server with epoll gives unknown bytes at disconnect

I have a socket server in C++ and I am using epoll. I am sending to the server a char that contains a HeaderPacket and the NormalPacket. First I am reading the HeaderPacket and after that I am reading ...
8
votes
2answers
442 views

Write binary data with Haskell to be read by C?

I have a file containing a [Double] serialized by Data.Binary that I'd like to read with C. That is, I want to write a C program that reads that data into memory as double[]. I'm planning on writing a ...
1
vote
2answers
145 views

How to do serialization of float numbers on network?

I found a piece of code to do the serialization of float numbers on network. uint32_t htonf(float f) { uint32_t p; uint32_t sign; if (f < 0) { sign = 1; f = -f; } else { sign = ...
4
votes
5answers
293 views

Why Serialization when a class object in memory is already binary (C/C++)?

My guess is that data is scattered in physical memory (even the data of a class object is sequential in virtual memory), so in order to send the data correctly it needs to be reassembled, and to be ...
3
votes
4answers
785 views

How to read UDP packet with variable length in C

I'm sending a C struct over UDP struct packet{ int numInt; int* intList; //malloc'ed as (sizeof(int)*numInt) } It will be serialized as [numInt][intList[0]]...[intList[numInt-1]]. My ...
3
votes
3answers
218 views

serialize 64bit width integer

I have a an issue where I can't serialize a 64bit integer (32bit works) Code is as follows: uint64_t t = (uint64_t) 0; uint8_t buffer[8]; buffer[0] = 0x12; buffer[1] = 0x34; buffer[2] = 0x56; ...
4
votes
2answers
334 views

Parsing a user defined protocol from C and Python

I need to define a binary protocol and use it from both C and Python written application. My question is, what is the right tool for the job so I won't need to implement the protocol parsing and ...
1
vote
2answers
136 views

efficient disk storage of decimal numbers in C (C89)

I am writing functions that serialize/deserialize a large data structure for efficient reloading later on. There is a particular set of decimal numbers for which precision is not a huge deal, and I ...
0
votes
1answer
224 views

sending nested struct over UDP api that accept string

I am using a UDP api that basically accept string parameter to be send only. send_udp(str data, ip_address dest); so the thing is that I have a struct below typedef struct { int bmw_red; ...
7
votes
1answer
236 views

A minimalistic human-readable serialisation format parser for an embedded system

By "human-readable serialisation format" I mean YAML, JSON, INI or like. Please note, XML is too verbose and too inconvenient for my purposes, so let's leave it alone as the last resort. The format ...
0
votes
2answers
267 views

C tree XML serialization

I'm currently trying to recursively loop through a tree structure and serialize it to a string using (the language) C. I'm a real novice when it comes to C (Coming from a Java, C#, action-script ...
0
votes
2answers
211 views

Binary serialization of JSON or any plain-text using C

I'd like to take plain ASCII text, such as JSON, and serialize it to be transferred over the wire in binary. I'd like to add an unsigned 4-byte header to this binary that will have the size of the ...
4
votes
3answers
762 views

C Structure to Java objects over UDP

I am fairly new to programming in both Java and C and need some help. So I have a C application that sends out structures over UDP : #include <sys/socket.h> #include <netinet/in.h> ...
1
vote
3answers
349 views

Save and load data using ANSI C on any platform

Say I have 1 million structs, each containing integers, doubles, strings, and other structs, something like: struct s1 { int f1; long f2; char* f3; }; struct s2 { struct s1* f1; ...
16
votes
6answers
968 views

Good examples, articles and books on marshalling [closed]

While working on a software protection library for smart card based dongle I realized I need to transfer some tree-like data structures back and forth between client application and code inside the ...
2
votes
1answer
536 views

Serialize and syncronize data structures over network in C

Is there a C library that serializes and/or synchronizes data structures on two distinct nodes. It would be ideal if synchronizing is not intertwined with serialization. To summarize, what i want ...
5
votes
3answers
1k views

C - serialization techniques

I'm writing some code to serialize some data to send it over the network. Currently, I use this primitive procedure: create a void* buffer apply any byte ordering operations such as the hton family ...
1
vote
1answer
1k views

How to send(MPI_Send) nested structure having pointer fields in MPI using C

I have a structure : struct vertex { double a; double b; } struct polygon { int numofVertex; vertex *v; } How to send this nested structure in MPI ...

1 2