Sha256: 9b094fc844db2858f1705819f1a210261f8bc954299f9065e1df6e50cc4b8ec9
Contents?: true
Size: 1.92 KB
Versions: 12
Compression:
Stored size: 1.92 KB
Contents
#include "validate_id.h" #include "ruby.h" #include <stdbool.h> #include <string.h> #include <stddef.h> #include "salesforce_id_ext.h" #include "charmap.h" const char VALID_CHARMAP[VALID_CHARMAP_SIZE] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }; static bool is_valid_insensitive_id(char* cId); static bool is_valid_sensitive_id(char* cId); static bool is_valid_char_for_id(char idChar); // rb_sId MUST be a string bool is_id_valid(VALUE rb_sId) { unsigned long id_size = 0; VALUE id = rb_sId; char* cId = NULL; id_size = RSTRING_LEN(id); if (id_size != SALESFORCE_ID_SENSITIVE_LENGTH && id_size != SALESFORCE_ID_INSENSITIVE_LENGTH) return false; // XXX: Careful, cId is NOT NULL TERMINATED! // Useful because it saves various allocations cId = StringValuePtr(rb_sId); if (!is_valid_sensitive_id(cId)) return false; if (id_size == SALESFORCE_ID_INSENSITIVE_LENGTH && !is_valid_insensitive_id(cId)) return false; return true; } bool is_valid_insensitive_id(char* cId) { const unsigned long insensitive_size = SALESFORCE_ID_INSENSITIVE_LENGTH; unsigned long index = 0; for (index = SALESFORCE_ID_SENSITIVE_LENGTH; index < insensitive_size; ++index) if (charmap_index(cId[index]) < 0) return false; return true; } bool is_valid_sensitive_id(char* cId) { for (unsigned long index = 0; index < SALESFORCE_ID_SENSITIVE_LENGTH; ++index) if (!is_valid_char_for_id(cId[index])) return false; return true; } bool is_valid_char_for_id(char idChar) { for (int index = 0; index < VALID_CHARMAP_SIZE; ++index) if (VALID_CHARMAP[index] == idChar) return true; return false; }
Version data entries
12 entries across 12 versions & 1 rubygems