Как использовать struct.unpack и преобразовать его в значение в Objective-c - PullRequest
0 голосов
/ 17 апреля 2011

Код в Python

struct.unpack ("

ДанныеЧитается из файла, затем используется чтение. Мой вопрос: как мы можем использовать, читать и struct.unpack в Objective-c

У меня есть данные в формате NSFileHandle, которые я мог читать побайтово,так что чтение сейчас не проблема.Проблема заключается в преобразовании NSData, в который я попал (int, short, float, string).

1 Ответ

1 голос
/ 17 апреля 2011

Я не знаю об Objective-C, но в простом C вы можете использовать fread():

#include <inttypes.h> /* uint32_t and PRIu32 macros */
#include <stdbool.h> /* bool type */
#include <stdio.h>

/* 
   gcc *.c && 
  python -c'import struct, sys; sys.stdout.write(struct.pack("<I", 123))' |
  ./a.out 
*/

static bool is_little_endian(void) {
  /* Find endianness of the system. */
  const int n = 1;
  return (*(char*)&n) == 1; /* 01 00 00 00 for little-endian */
}

static uint32_t reverse_byteorder(uint32_t n) {
  uint32_t i;
  char *c = (char*) &n;
  char *p = (char*) &i;
  p[0] = c[3];
  p[1] = c[2];
  p[2] = c[1];
  p[3] = c[0];
  return i;
}

int main() {
  uint32_t n; /* '<' format assumes 4-byte integer */

  if (fread(&n, sizeof(n), 1, stdin) != 1) {
    fprintf(stderr, "error while reading unsigned from stdin");
    return 1;
  }

  if (! is_little_endian()) 
    /* convert from big-endian to little-endian ('<' format) */
    n = reverse_byteorder(n);

  printf("%" PRIu32 " 0x%08x\n", n, n);
  return 0;
}

выход

123 0x0000007b
...