// // Canvas.cc // // Copyright (c) 2010 LearnBoost // #include "Canvas.h" #include "CanvasRenderingContext2d.h" #include #include #include #include #include #include #include "closure.h" #ifdef HAVE_JPEG #include "JPEGStream.h" #endif Persistent Canvas::constructor; /* * Initialize Canvas. */ void Canvas::Initialize(Handle target) { HandleScope scope; // Constructor #if NODE_VERSION_AT_LEAST(0, 11, 3) constructor = Persistent::New(Isolate::GetCurrent(), FunctionTemplate::New(Canvas::New)); #else constructor = Persistent::New(FunctionTemplate::New(Canvas::New)); #endif constructor->InstanceTemplate()->SetInternalFieldCount(1); constructor->SetClassName(String::NewSymbol("Canvas")); // Prototype Local proto = constructor->PrototypeTemplate(); NODE_SET_PROTOTYPE_METHOD(constructor, "toBuffer", ToBuffer); NODE_SET_PROTOTYPE_METHOD(constructor, "streamPNGSync", StreamPNGSync); #ifdef HAVE_JPEG NODE_SET_PROTOTYPE_METHOD(constructor, "streamJPEGSync", StreamJPEGSync); #endif proto->SetAccessor(String::NewSymbol("type"), GetType); proto->SetAccessor(String::NewSymbol("width"), GetWidth, SetWidth); proto->SetAccessor(String::NewSymbol("height"), GetHeight, SetHeight); target->Set(String::NewSymbol("Canvas"), constructor->GetFunction()); } /* * Initialize a Canvas with the given width and height. */ Handle Canvas::New(const Arguments &args) { HandleScope scope; int width = 0, height = 0; canvas_type_t type = CANVAS_TYPE_IMAGE; if (args[0]->IsNumber()) width = args[0]->Uint32Value(); if (args[1]->IsNumber()) height = args[1]->Uint32Value(); if (args[2]->IsString()) type = !strcmp("pdf", *String::AsciiValue(args[2])) ? CANVAS_TYPE_PDF : CANVAS_TYPE_IMAGE; Canvas *canvas = new Canvas(width, height, type); canvas->Wrap(args.This()); return args.This(); } /* * Get type string. */ Handle Canvas::GetType(Local prop, const AccessorInfo &info) { HandleScope scope; Canvas *canvas = ObjectWrap::Unwrap(info.This()); return scope.Close(String::New(canvas->isPDF() ? "pdf" : "image")); } /* * Get width. */ Handle Canvas::GetWidth(Local prop, const AccessorInfo &info) { HandleScope scope; Canvas *canvas = ObjectWrap::Unwrap(info.This()); return scope.Close(Number::New(canvas->width)); } /* * Set width. */ void Canvas::SetWidth(Local prop, Local val, const AccessorInfo &info) { if (val->IsNumber()) { Canvas *canvas = ObjectWrap::Unwrap(info.This()); canvas->width = val->Uint32Value(); canvas->resurface(info.This()); } } /* * Get height. */ Handle Canvas::GetHeight(Local prop, const AccessorInfo &info) { HandleScope scope; Canvas *canvas = ObjectWrap::Unwrap(info.This()); return scope.Close(Number::New(canvas->height)); } /* * Set height. */ void Canvas::SetHeight(Local prop, Local val, const AccessorInfo &info) { if (val->IsNumber()) { Canvas *canvas = ObjectWrap::Unwrap(info.This()); canvas->height = val->Uint32Value(); canvas->resurface(info.This()); } } /* * Canvas::ToBuffer callback. */ static cairo_status_t toBuffer(void *c, const uint8_t *data, unsigned len) { closure_t *closure = (closure_t *) c; // Olaf: grow buffer if (closure->len + len > closure->max_len) { uint8_t *data; unsigned max = closure->max_len; // round to the nearest multiple of 1024 bytes max = (closure->max_len + len + 1023) & ~1023; data = (uint8_t *) realloc(closure->data, max); if (!data) return CAIRO_STATUS_NO_MEMORY; closure->data = data; closure->max_len = max; } memcpy(closure->data + closure->len, data, len); closure->len += len; return CAIRO_STATUS_SUCCESS; } /* * EIO toBuffer callback. */ #if NODE_VERSION_AT_LEAST(0, 6, 0) void Canvas::ToBufferAsync(uv_work_t *req) { #elif NODE_VERSION_AT_LEAST(0, 5, 4) void Canvas::EIO_ToBuffer(eio_req *req) { #else int Canvas::EIO_ToBuffer(eio_req *req) { #endif closure_t *closure = (closure_t *) req->data; closure->status = cairo_surface_write_to_png_stream( closure->canvas->surface() , toBuffer , closure); #if !NODE_VERSION_AT_LEAST(0, 5, 4) return 0; #endif } /* * EIO after toBuffer callback. */ #if NODE_VERSION_AT_LEAST(0, 6, 0) void Canvas::ToBufferAsyncAfter(uv_work_t *req) { #else int Canvas::EIO_AfterToBuffer(eio_req *req) { #endif HandleScope scope; closure_t *closure = (closure_t *) req->data; #if NODE_VERSION_AT_LEAST(0, 6, 0) delete req; #else ev_unref(EV_DEFAULT_UC); #endif if (closure->status) { Local argv[1] = { Canvas::Error(closure->status) }; closure->pfn->Call(Context::GetCurrent()->Global(), 1, argv); } else { #if NODE_VERSION_AT_LEAST(0, 11, 3) Local buf = Buffer::New(closure->len); #else Buffer *buf = Buffer::New(closure->len); #endif memcpy(Buffer::Data(buf), closure->data, closure->len); #if NODE_VERSION_AT_LEAST(0, 11, 3) Local argv[2] = { Local::New(Null()), Local::New(buf) }; #else Local argv[2] = { Local::New(Null()), Local::New(buf->handle_) }; #endif closure->pfn->Call(Context::GetCurrent()->Global(), 2, argv); } closure->canvas->Unref(); closure->pfn.Dispose(); closure_destroy(closure); free(closure); #if !NODE_VERSION_AT_LEAST(0, 6, 0) return 0; #endif } /* * Convert PNG data to a node::Buffer, async when a * callback function is passed. */ Handle Canvas::ToBuffer(const Arguments &args) { HandleScope scope; cairo_status_t status; Canvas *canvas = ObjectWrap::Unwrap(args.This()); // TODO: async / move this out if (canvas->isPDF()) { cairo_surface_finish(canvas->surface()); closure_t *closure = (closure_t *) canvas->closure(); #if NODE_VERSION_AT_LEAST(0, 11, 3) Local buf = Buffer::New(closure->len); #else Buffer *buf = Buffer::New(closure->len); #endif memcpy(Buffer::Data(buf), closure->data, closure->len); #if NODE_VERSION_AT_LEAST(0, 11, 3) return buf; #else return buf->handle_; #endif } // Async if (args[0]->IsFunction()) { closure_t *closure = (closure_t *) malloc(sizeof(closure_t)); status = closure_init(closure, canvas); // ensure closure is ok if (status) { closure_destroy(closure); free(closure); return Canvas::Error(status); } // TODO: only one callback fn in closure canvas->Ref(); #if NODE_VERSION_AT_LEAST(0, 11, 3) closure->pfn = Persistent::New(Isolate::GetCurrent(), Handle::Cast(args[0])); #else closure->pfn = Persistent::New(Handle::Cast(args[0])); #endif #if NODE_VERSION_AT_LEAST(0, 6, 0) uv_work_t* req = new uv_work_t; req->data = closure; uv_queue_work(uv_default_loop(), req, ToBufferAsync, (uv_after_work_cb)ToBufferAsyncAfter); #else eio_custom(EIO_ToBuffer, EIO_PRI_DEFAULT, EIO_AfterToBuffer, closure); ev_ref(EV_DEFAULT_UC); #endif return Undefined(); // Sync } else { closure_t closure; status = closure_init(&closure, canvas); // ensure closure is ok if (status) { closure_destroy(&closure); return Canvas::Error(status); } TryCatch try_catch; status = cairo_surface_write_to_png_stream(canvas->surface(), toBuffer, &closure); if (try_catch.HasCaught()) { closure_destroy(&closure); return try_catch.ReThrow(); } else if (status) { closure_destroy(&closure); return ThrowException(Canvas::Error(status)); } else { #if NODE_VERSION_AT_LEAST(0, 11, 3) Local buf = Buffer::New(closure.len); #else Buffer *buf = Buffer::New(closure.len); #endif memcpy(Buffer::Data(buf), closure.data, closure.len); closure_destroy(&closure); #if NODE_VERSION_AT_LEAST(0, 11, 3) return buf; #else return buf->handle_; #endif } } } /* * Canvas::StreamPNG callback. */ static cairo_status_t streamPNG(void *c, const uint8_t *data, unsigned len) { HandleScope scope; closure_t *closure = (closure_t *) c; #if NODE_VERSION_AT_LEAST(0, 11, 3) Local buf = Buffer::New(len); memcpy(Buffer::Data(buf), data, len); #else Local buf = Buffer::New(len); memcpy(Buffer::Data(buf->handle_), data, len); #endif Local argv[3] = { Local::New(Null()) #if NODE_VERSION_AT_LEAST(0, 11, 3) , Local::New(buf) #else , Local::New(buf->handle_) #endif , Integer::New(len) }; closure->fn->Call(Context::GetCurrent()->Global(), 3, argv); return CAIRO_STATUS_SUCCESS; } /* * Stream PNG data synchronously. */ Handle Canvas::StreamPNGSync(const Arguments &args) { HandleScope scope; // TODO: async as well if (!args[0]->IsFunction()) return ThrowException(Exception::TypeError(String::New("callback function required"))); Canvas *canvas = ObjectWrap::Unwrap(args.This()); closure_t closure; closure.fn = Handle::Cast(args[0]); TryCatch try_catch; cairo_status_t status = cairo_surface_write_to_png_stream(canvas->surface(), streamPNG, &closure); if (try_catch.HasCaught()) { return try_catch.ReThrow(); } else if (status) { Local argv[1] = { Canvas::Error(status) }; closure.fn->Call(Context::GetCurrent()->Global(), 1, argv); } else { Local argv[3] = { Local::New(Null()) , Local::New(Null()) , Integer::New(0) }; closure.fn->Call(Context::GetCurrent()->Global(), 3, argv); } return Undefined(); } /* * Stream JPEG data synchronously. */ #ifdef HAVE_JPEG Handle Canvas::StreamJPEGSync(const Arguments &args) { HandleScope scope; // TODO: async as well if (!args[0]->IsNumber()) return ThrowException(Exception::TypeError(String::New("buffer size required"))); if (!args[1]->IsNumber()) return ThrowException(Exception::TypeError(String::New("quality setting required"))); if (!args[2]->IsFunction()) return ThrowException(Exception::TypeError(String::New("callback function required"))); Canvas *canvas = ObjectWrap::Unwrap(args.This()); closure_t closure; closure.fn = Handle::Cast(args[2]); TryCatch try_catch; write_to_jpeg_stream(canvas->surface(), args[0]->NumberValue(), args[1]->NumberValue(), &closure); if (try_catch.HasCaught()) return try_catch.ReThrow(); return Undefined(); } #endif /* * Initialize cairo surface. */ Canvas::Canvas(int w, int h, canvas_type_t t): ObjectWrap() { type = t; width = w; height = h; _surface = NULL; _closure = NULL; if (CANVAS_TYPE_PDF == t) { _closure = malloc(sizeof(closure_t)); assert(_closure); cairo_status_t status = closure_init((closure_t *) _closure, this); assert(status == CAIRO_STATUS_SUCCESS); _surface = cairo_pdf_surface_create_for_stream(toBuffer, _closure, w, h); } else { _surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, w, h); assert(_surface); V8::AdjustAmountOfExternalAllocatedMemory(4 * w * h); } } /* * Destroy cairo surface. */ Canvas::~Canvas() { switch (type) { case CANVAS_TYPE_PDF: cairo_surface_finish(_surface); closure_destroy((closure_t *) _closure); free(_closure); cairo_surface_destroy(_surface); break; case CANVAS_TYPE_IMAGE: cairo_surface_destroy(_surface); break; } } /* * Re-alloc the surface, destroying the previous. */ void Canvas::resurface(Handle canvas) { switch (type) { case CANVAS_TYPE_PDF: cairo_pdf_surface_set_size(_surface, width, height); break; case CANVAS_TYPE_IMAGE: // Re-surface int old_width = cairo_image_surface_get_width(_surface); int old_height = cairo_image_surface_get_height(_surface); cairo_surface_destroy(_surface); _surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height); V8::AdjustAmountOfExternalAllocatedMemory(4 * (width * height - old_width * old_height)); // Reset context Handle context = canvas->Get(String::New("context")); if (!context->IsUndefined()) { Context2d *context2d = ObjectWrap::Unwrap(context->ToObject()); cairo_t *prev = context2d->context(); context2d->setContext(cairo_create(surface())); cairo_destroy(prev); } break; } } /* * Construct an Error from the given cairo status. */ Local Canvas::Error(cairo_status_t status) { return Exception::Error(String::New(cairo_status_to_string(status))); }