#include #include #include #include #include #include #include #include #include #include #include #include #include "wallpapers.h" void add_dir_recursive(const char *path, sqlite_uint64 parent) { int pathlen = strlen(path); GDir *dir; const char *filename; sqlite_uint64 dir_temp; sqlite_uint64 dirid; char *filepath; struct stat st; GdkPixbuf *pixbuf; GError *error; dirid = db_get_directory(path); if(dirid == 0) { dirid = db_add_directory(path, parent); if(dirid == 0) return; } dir = g_dir_open(path, 0, NULL); if(!dir) return; while((filename = g_dir_read_name(dir)) != NULL) { filepath = g_strdup_printf("%s/%s", path, filename); if(db_get_wallpaper(filepath) != 0) { continue; } if(g_access(filepath, R_OK) == -1) { fprintf(stderr, "Can't read %s: \n", filepath, strerror(errno)); g_free(filepath); continue; } if(g_stat(filepath, &st) == -1) { fprintf(stderr, "Failed to stat file %s\n", filepath); g_free(filepath); continue; } switch(st.st_mode & S_IFMT) { case S_IFDIR: if(strcmp(filepath, ".") == 0 || strcmp(filepath, "..") == 0) { g_free(filepath); continue; } printf("Directory: %s\n", filepath); add_dir_recursive(filepath, dirid); g_free(filepath); continue; case S_IFLNK: case S_IFREG: break; default: printf("Skipping %s\n", filepath); g_free(filepath); continue; } pixbuf = gdk_pixbuf_new_from_file(filepath, &error); if(!pixbuf) { g_warning("%s", error->message); continue; } printf("%s loaded: %dx%d\n", filepath, gdk_pixbuf_get_width(pixbuf), gdk_pixbuf_get_height(pixbuf)); if(db_add_wallpaper(filepath, dirid, st.st_size, gdk_pixbuf_get_width(pixbuf), gdk_pixbuf_get_height(pixbuf))) printf("added\n"); else printf("failed to add\n"); g_object_unref(pixbuf); g_free(filepath); } g_dir_close(dir); }