Sfoglia il codice sorgente

* Don't try to guess the file format in cacaserver, instead feed the data

to cucul_import_memory() and try again later if it says "not enough data".
tags/v0.99.beta14
Sam Hocevar sam 18 anni fa
parent
commit
6dc69f3ace
1 ha cambiato i file con 31 aggiunte e 18 eliminazioni
  1. +31
    -18
      src/cacaserver.c

+ 31
- 18
src/cacaserver.c Vedi File

@@ -195,36 +195,49 @@ int main(void)
/* Main loop */ /* Main loop */
for(;;) for(;;)
{ {
uint8_t *buf = server->input; restart:
uint32_t control_size, data_size;
unsigned int size;

/* Manage new connections as this function will be called sometimes /* Manage new connections as this function will be called sometimes
* more often than display */ * more often than display */
manage_connections(server); manage_connections(server);


/* Read data from stdin */ /* Read data from stdin */
read(0, buf, 12); if(server->read < 12)
{
read(0, server->input + server->read, 12 - server->read);
server->read = 12;
}


while(buf[0] != 0xca || buf[1] != 0xca while(cucul_import_memory(server->canvas, server->input,
|| buf[2] != 'C' || buf[3] != 'V') server->read, "caca") < 0)
{ {
memmove(buf, buf + 1, 11); memmove(server->input, server->input + 1, server->read - 1);
read(0, buf + 11, 1); read(0, server->input + server->read - 1, 1);
} }


control_size = ((uint32_t)buf[4] << 24) | ((uint32_t)buf[5] << 16) for(;;)
| ((uint32_t)buf[6] << 8) | (uint32_t)buf[7]; {
data_size = ((uint32_t)buf[8] << 24) | ((uint32_t)buf[9] << 16) long int needed;
| ((uint32_t)buf[10] << 8) | (uint32_t)buf[11]; ssize_t wanted;


size = 4 + control_size + data_size; needed = cucul_import_memory(server->canvas, server->input,
buf = server->input = realloc(server->input, size); server->read, "caca");
read(0, buf + 12, size - 12); if(needed < 0)
goto restart;


if(cucul_import_memory(server->canvas, buf, size, "caca") < 0) if(needed > 0)
continue; /* Load error */ {
server->read -= needed;
memmove(server->input, server->input + needed, server->read);
break;
}


server->input = realloc(server->input, server->read + 128);
wanted = read(0, server->input + server->read, 128);
if(wanted < 0)
goto restart;
server->read += wanted;
}
/* Free the previous export buffer, if any */ /* Free the previous export buffer, if any */
if(server->buffer) if(server->buffer)
{ {


||||||
x
 
000:0
Caricamento…
Annulla
Salva