/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA */ #include "common.h" #include "bitmap.h" #include "simdb.h" #include "record.h" #include #include void usage(int exitcode) { fprintf(stderr, "Usage: simdb-query \n" " -b Path to database\n" " -t Maximum difference pct (0 - 50, default: 10%%)\n" ); fprintf(stderr, " -B Show bitmap for this sample\n" " -C , Show difference percent for this samples\n" " -D , Show difference bitmap for this samples\n" " -S Search for images similar ot this sample\n" " -U Show db usage map, entries per column\n" " Special case - 0, output will be single line\n" " -W , Show usage map starting from , but no more\n" " than entries (limit)\n" ); exit(exitcode); } int search_similar(simdb_t *db, uint64_t number, float maxdiff) { int ret = 0, i = 0; simdb_rec_t sample; simdb_match_t *matches = NULL; simdb_search_t search; memset(&sample, 0x0, sizeof(simdb_rec_t)); memset(&search, 0x0, sizeof(simdb_search_t)); search.maxdiff_ratio = 0.2; /* 20% */ search.maxdiff_bitmap = maxdiff; sample.num = number; if ((ret = simdb_search(db, &sample, &search, &matches)) < 0) { fprintf(stderr, "%s\n", simdb_error(ret)); return 1; } for (i = 0; i < ret; i++) { printf("%llu -- %.1f (bitmap), %.1f (ratio)\n", matches[i].num, matches[i].diff_bitmap * 100, matches[i].diff_ratio * 100); } FREE(matches); return 0; } int db_usage_map(simdb_t *db, unsigned short int cols) { char *map = NULL; char *m = NULL; char row[256]; uint64_t records, pos; uint8_t rest = 0; memset(row, 0x0, sizeof(char) * 256); if ((records = simdb_usage_map(db, &map)) == 0) { fprintf(stderr, "database usage: can't get database map\n"); FREE(map); return 1; } if (cols == 0) { putchar(CHAR_NONE); /* zero */ puts(map); FREE(map); return 0; } m = map; while (records) { rest = (records > cols) ? cols : records; memcpy(row, m, rest); pos = m - map + 1; printf("%7llu : %s\n", pos, row); m += rest; records -= rest; } FREE(map); return 0; } int db_usage_slice(simdb_t *db, uint64_t offset, uint16_t limit) { char *map = NULL; limit = simdb_usage_slice(db, &map, offset, limit); puts(map); FREE(map); return 0; } int rec_bitmap(simdb_t *db, uint64_t number) { simdb_rec_t rec; simdb_urec_t *r; assert(db != NULL); memset(&rec, 0x0, sizeof(simdb_rec_t)); rec.num = number; if (simdb_record_read(db, &rec) < 1) { fprintf(stderr, "bitmap: %s\n", "sample not found"); return 1; } r = (simdb_urec_t *) rec.data; simdb_bitmap_print(r->bitmap); return 0; } int rec_diff(simdb_t *db, uint64_t a, uint64_t b, unsigned short int showmap) { simdb_rec_t rec; simdb_urec_t *r; float diff = 0.0; unsigned char one[SIMDB_BITMAP_SIZE]; unsigned char two[SIMDB_BITMAP_SIZE]; unsigned char map[SIMDB_BITMAP_SIZE]; assert(db != NULL); memset(&rec, 0x0, sizeof(rec)); memset(one, 0x0, sizeof(one)); memset(two, 0x0, sizeof(two)); rec.num = a; if (simdb_record_read(db, &rec) < 1) { fprintf(stderr, "record diff: first sample not exists\n"); return 1; } r = (simdb_urec_t *) rec.data; memcpy(one, r->bitmap, sizeof(one)); rec.num = b; if (simdb_record_read(db, &rec) < 1) { fprintf(stderr, "record diff: second sample not exists\n"); return 1; } r = (simdb_urec_t *) rec.data; memcpy(two, r->bitmap, sizeof(two)); if (showmap) { simdb_bitmap_diffmap(one, two, map); simdb_bitmap_print(map); return 0; } diff = (float) simdb_bitmap_compare(one, two); printf("%.2f%%\n", (diff / SIMDB_BITMAP_BITS) * 100); return 0; } int main(int argc, char **argv) { enum { undef, search, bitmap, usage_map, usage_slice, diff } mode = undef; const char *db_path = NULL; float maxdiff = 0.10; unsigned short int cols = 64, map = 0, ret = 0; simdb_t *db = NULL; uint64_t a = 0, b = 0; char *c = NULL; int err; char opt = '\0'; if (argc < 3) usage(EXIT_FAILURE); while ((opt = getopt(argc, argv, "b:t:B:C:D:S:U:W:")) != -1) { switch (opt) { case 'b' : db_path = optarg; break; case 't' : maxdiff = atoi(optarg); if (maxdiff > 50 || maxdiff < 0) { fprintf(stderr, "maxdiff out of bounds (0%% - 50%%), using default - 10%%\n"); maxdiff = 10; } maxdiff /= 100; break; case 'B' : mode = bitmap; a = atoll(optarg); break; case 'D' : map = 1; case 'C' : mode = diff; if ((c = strchr(optarg, ',')) == NULL) usage(EXIT_FAILURE); a = atoll(optarg); b = atoll(c + 1); break; case 'S' : mode = search; a = atoll(optarg); break; case 'U' : mode = usage_map; cols = atoi(optarg); if (cols >= 256) cols = 100; break; case 'W' : mode = usage_slice; if ((c = strchr(optarg, ',')) == NULL) usage(EXIT_FAILURE); a = atoll(optarg); b = atoll(c + 1); break; default : usage(EXIT_FAILURE); break; } } if (db_path == NULL) { fprintf(stderr, "database path not set\n"); exit(EXIT_FAILURE); } if ((db = simdb_open(db_path, 0, &err)) == NULL) { fprintf(stderr, "database open: %d\n", err); exit(EXIT_FAILURE); } switch (mode) { case search : if (a <= 0) { fprintf(stderr, "can't parse number\n"); usage(EXIT_FAILURE); } ret = search_similar(db, a, maxdiff); break; case bitmap : if (a <= 0) { fprintf(stderr, "can't parse number\n"); usage(EXIT_FAILURE); } ret = rec_bitmap(db, a); break; case usage_map : ret = db_usage_map(db, cols); break; case usage_slice : ret = db_usage_slice(db, a, b); break; case diff : if (a <= 0 || b <= 0) { fprintf(stderr, "both numbers must be set\n"); exit(EXIT_FAILURE); } ret = rec_diff(db, a, b, map); break; default : usage(EXIT_SUCCESS); break; } simdb_close(db); return ret; }