1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/Base.cpp Thu Sep 24 10:28:50 2009 -0700
1.3 @@ -0,0 +1,66 @@
1.4 +/*
1.5 + * Base.cpp
1.6 + * Ottoman
1.7 + *
1.8 + * Created by Jens Alfke on 8/18/09.
1.9 + * Copyright 2009 Jens Alfke. All rights reserved.
1.10 + * BSD-Licensed: See the file "LICENSE.txt" for details.
1.11 + */
1.12 +
1.13 +#include "Base.h"
1.14 +#include "File.h"
1.15 +#include <assert.h>
1.16 +#include <errno.h>
1.17 +#include <CoreFoundation/CFUUID.h>
1.18 +
1.19 +namespace Mooseyard {
1.20 +
1.21 +#pragma mark -
1.22 +#pragma mark BLOB:
1.23 +
1.24 + Blob::Blob (const char *str)
1.25 + :bytes(str),
1.26 + length(str ?strlen(str) :0)
1.27 + { }
1.28 +
1.29 + /*
1.30 + struct MutableBlob :public Blob {
1.31 + MutableBlob(void *b, size_t len) :Blob(b,len) { }
1.32 + void* mutableBytes() {return (void*)bytes;}
1.33 + void freeBytes() {::free(mutableBytes()); bytes=NULL; length=0;}
1.34 + };
1.35 + MutableBlob Blob::copyBytes() const {
1.36 + MutableBlob copy( malloc(length), length);
1.37 + memcpy(copy.mutableBytes(), bytes, length);
1.38 + return copy;
1.39 + }
1.40 + */
1.41 +
1.42 +#pragma mark -
1.43 +#pragma mark UUID:
1.44 +
1.45 +#if 0
1.46 + /** Typical 128-bit universally-unique identifier. */
1.47 + class UUID {
1.48 + public:
1.49 + UUID();
1.50 + const void *bytes() const {return _bytes;}
1.51 + bool operator== (const UUID&) const;
1.52 + private:
1.53 + uint8_t _bytes[16];
1.54 + };
1.55 +
1.56 +
1.57 + UUID::UUID() {
1.58 + CFUUIDRef u = CFUUIDCreate(NULL);
1.59 + CFUUIDBytes bytes = CFUUIDGetUUIDBytes(u);
1.60 + memcpy(&_bytes, &bytes, sizeof(_bytes));
1.61 + CFRelease(u);
1.62 + }
1.63 +
1.64 + bool UUID::operator== (const UUID& u) const {
1.65 + return memcmp(_bytes, u._bytes, sizeof(_bytes)) == 0;
1.66 + }
1.67 +#endif
1.68 +
1.69 +}