/* resolve.c * Copyright (c) 2012, Peter Ohler * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * - Neither the name of Peter Ohler nor the names of its contributors may be * used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #if USE_PTHREAD_MUTEX #include #endif #include "oj.h" #include "err.h" #include "parse.h" #include "hash.h" inline static VALUE resolve_classname(VALUE mod, const char *classname, int auto_define) { VALUE clas; ID ci = rb_intern(classname); if (rb_const_defined_at(mod, ci)) { clas = rb_const_get_at(mod, ci); } else if (auto_define) { clas = rb_define_class_under(mod, classname, oj_bag_class); } else { clas = Qundef; } return clas; } static VALUE resolve_classpath(ParseInfo pi, const char *name, size_t len, int auto_define) { char class_name[1024]; VALUE clas; char *end = class_name + sizeof(class_name) - 1; char *s; const char *n = name; clas = rb_cObject; for (s = class_name; 0 < len; n++, len--) { if (':' == *n) { *s = '\0'; n++; len--; if (':' != *n) { return Qundef; } if (Qundef == (clas = resolve_classname(clas, class_name, auto_define))) { return Qundef; } s = class_name; } else if (end <= s) { return Qundef; } else { *s++ = *n; } } *s = '\0'; if (Qundef == (clas = resolve_classname(clas, class_name, auto_define))) { if (sizeof(class_name) - 1 < len) { len = sizeof(class_name) - 1; } memcpy(class_name, name, len); class_name[len] = '\0'; oj_set_error_at(pi, oj_parse_error_class, __FILE__, __LINE__, "class %s is not defined", class_name); } return clas; } VALUE oj_name2class(ParseInfo pi, const char *name, size_t len, int auto_define) { VALUE clas; VALUE *slot; if (No == pi->options.class_cache) { return resolve_classpath(pi, name, len, auto_define); } #if USE_PTHREAD_MUTEX pthread_mutex_lock(&oj_cache_mutex); #elif USE_RB_MUTEX rb_mutex_lock(oj_cache_mutex); #endif if (Qnil == (clas = oj_class_hash_get(name, len, &slot))) { if (Qundef != (clas = resolve_classpath(pi, name, len, auto_define))) { *slot = clas; } } #if USE_PTHREAD_MUTEX pthread_mutex_unlock(&oj_cache_mutex); #elif USE_RB_MUTEX rb_mutex_unlock(oj_cache_mutex); #endif return clas; } VALUE oj_name2struct(ParseInfo pi, VALUE nameVal) { size_t len = RSTRING_LEN(nameVal); const char *str = StringValuePtr(nameVal); return resolve_classpath(pi, str, len, 0); }