main.ss
#lang scheme

(require "c-compile.ss")
(require scheme/foreign)
(unsafe!)

; this module is bad and I feel bad >:(

(define size-cache (make-immutable-hash null))

(define (get-source-file type)
  (let ([location (build-path (find-system-path 'pref-dir) "sizeof")])
    (when (not (directory-exists? location)) (make-directory location))
    (build-path location (format "~a.c" type))))
  
(define (sizeof type . includes)
  (hash-ref 
   size-cache type
   (λ ()
     (let* ([function (format "get_sizeof_~a" type)]
            [source 
             (string-append
              (if (null? includes) ""
                  (foldl (λ (include head) 
                           (string-append head (format "#include <~a.h>\n" include))) "" includes))
              (format "unsigned int ~a(void) {\n\treturn sizeof(~a);\n}" function type))])
       (let ([location (get-source-file type)])
         (call-with-exception-handler
          (λ (e) (delete-file location) e)
          (λ ()
            (when (not (file-exists? location))
              (with-output-to-file location
                (λ () (write-bytes (string->bytes/utf-8 source)))))
            (let* ([lib (ffi-lib (compile-and-link location))]
                   [obj (get-ffi-obj function lib (_fun -> _uint))]
                   [size (obj)])
              (set! size-cache (hash-set size-cache type size))
              size))))))))

(define (pick-an-integer type-name [signed? #f] [includes null]) 
  (case (apply sizeof type-name includes)
    [(1) (if signed? _int8 _uint8)]
    [(2) (if signed? _int16 _uint16)]
    [(4) (if signed? _int32 _uint32)]
    [(8) (if signed? _int64 _uint64)]
    [else (error "No integer of size ~s" (sizeof type-name))]))

(provide sizeof pick-an-integer)