https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 62e566d3efcd8db7b08fc40e7543c70b7d5acd2b authored by Mike Hommey on 02 December 2013, 21:34:21 UTC
Bug 944454 - Wrap non-prefixed freetype headers from newer freetype versions. r=ted,a=lsblakk,DONTBUILD
Tip revision: 62e566d
asencode.cpp
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/*
 * To compile, do:
 *
 *   gcc -framework ApplicationServices -l stdc++ -o asencode asencode.cpp
 */

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <libgen.h>
#include <Carbon/Carbon.h>

typedef struct ASFinderInfo
{
  FInfo ioFlFndrInfo;     /* PBGetFileInfo() or PBGetCatInfo() */
  FXInfo ioFlXFndrInfo;   /* PBGetCatInfo() (HFS only) */
} ASFinderInfo; /* ASFinderInfo */

#define EXIT_IF_FALSE(x)                                                      \
  do {                                                                        \
    if (!(x)) {                                                               \
      printf("Assertion failure: %s\n"                                        \
             "  at %s line %d\n",                                             \
             #x, __FILE__, __LINE__);                                         \
      exit(1);                                                                \
    }                                                                         \
  } while (0)

// encodes a file with data and resource forks into a single
// AppleSingle encoded file..

static void append_file(FILE* output, const char* input_name)
{
  FILE* input = fopen(input_name, "rb");
  EXIT_IF_FALSE(input != NULL);

  while (1) {
    char buffer[4096];
    size_t amount = fread(buffer, 1, sizeof(buffer), input);
    if (amount == 0) {
      EXIT_IF_FALSE(feof(input) != 0);
      break;
    }
    fwrite(buffer, 1, amount, output);
  }
  fclose(input);
}

int main(int argc, char** argv)
{
  if (argc < 3) {
    printf("usage: %s input output\n", argv[0]);
    exit(1);
  }

  const char *input_name = argv[1];

  struct stat input_st;
  if (stat(input_name, &input_st) != 0) {
    printf("%s: can't open file `%s'\n", argv[0], input_name);
    exit(2);
  }

  if ((input_st.st_mode & S_IFMT) != S_IFREG) {
    printf("%s: file `%s' not a regular file\n", argv[0], input_name);
    exit(3);
  }

  char rez_name[512];
  strcpy(rez_name, input_name);
  strcat(rez_name, "/rsrc");

  struct stat rez_st;
  EXIT_IF_FALSE(stat(rez_name, &rez_st) == 0);

  if (rez_st.st_size == 0) {
    printf("%s: no resource fork found on file `%s'\n", argv[0], argv[1]);
    exit(4);
  }

  FILE* output = fopen(argv[2], "wb");
  if (output == NULL) {
    printf("%s: can't open file `%s'\n", argv[0], argv[2]);
    exit(5);
  }

  struct header {
    int magic_number;
    int version_number;
    char filler[16];
  } header;

  header.magic_number = 0x00051600;
  header.version_number = 0x00020000;

  EXIT_IF_FALSE(fwrite(&header, sizeof(header), 1, output) == 1);

  short entry_count = 5;
  EXIT_IF_FALSE(fwrite(&entry_count, sizeof(entry_count), 1, output) == 1);

  struct entry {
    unsigned int id;
    unsigned int offset;
    unsigned int length;
  };

  struct dates
  {
    int create; /* file creation date/time */
    int modify; /* last modification date/time */
    int backup; /* last backup date/time */
    int access; /* last access date/time */
  } dates;

  char *name_buf = strdup(input_name);
  char *orig_name = basename(name_buf);
  int orig_name_len = strlen(orig_name);

  entry entries[entry_count];

  int header_end = sizeof(header) + sizeof(entry_count) + sizeof(entries);

  entries[0].id = 1; // data fork
  entries[0].offset = header_end;
  entries[0].length = input_st.st_size;

  entries[1].id = 2; // data fork
  entries[1].offset = entries[0].offset + entries[0].length;
  entries[1].length = rez_st.st_size;

  entries[2].id = 3; // file name
  entries[2].offset = entries[1].offset + entries[1].length;
  entries[2].length = orig_name_len;

  entries[3].id = 8; // file dates
  entries[3].offset = entries[2].offset + entries[2].length;
  entries[3].length = sizeof(dates);

  entries[4].id = 9; // finder info
  entries[4].offset = entries[3].offset + entries[3].length;
  entries[4].length = sizeof(ASFinderInfo);

  EXIT_IF_FALSE(fwrite(entries, sizeof(entry), entry_count, output) ==
                entry_count);

  append_file(output, input_name);
  append_file(output, rez_name);

  EXIT_IF_FALSE(fwrite(orig_name, 1, orig_name_len, output) == orig_name_len);

  // Dates in an AppleSingle encoded file should be the number of
  // seconds since (or to) 00:00:00, January 1, 2000 UTC
#define Y2K_SECONDS (946710000U)

  dates.create = input_st.st_ctime - Y2K_SECONDS;
  dates.modify = input_st.st_mtime - Y2K_SECONDS;
  dates.backup = 0x80000000; // earliest possible time
  dates.access = input_st.st_atime - Y2K_SECONDS;

  EXIT_IF_FALSE(fwrite(&dates, 1, sizeof(dates), output) == sizeof(dates));

  char abs_input_name[PATH_MAX];
  EXIT_IF_FALSE(realpath(input_name, abs_input_name) == abs_input_name);

  FSRef fsref;
  EXIT_IF_FALSE(FSPathMakeRef((unsigned char *)abs_input_name, &fsref, 0) == 0);

  FSCatalogInfo cat_info;
  memset(&cat_info, 0, sizeof(cat_info));
  EXIT_IF_FALSE(FSGetCatalogInfo(&fsref,
                                 kFSCatInfoGettableInfo,
                                 &cat_info, NULL, NULL, NULL) == 0);

  ASFinderInfo finder_info;
  memcpy(&finder_info.ioFlFndrInfo, &cat_info.finderInfo,
         sizeof(finder_info.ioFlFndrInfo));
  memcpy(&finder_info.ioFlXFndrInfo, &cat_info.extFinderInfo,
         sizeof(finder_info.ioFlXFndrInfo));

  EXIT_IF_FALSE(fwrite(&finder_info, 1, sizeof(finder_info), output) ==
                sizeof(finder_info));

  fclose(output);

  return 0;
}
back to top