Overview
Comment: | More work towards parsing directory entries |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
85bda525b9e4daa1b2c559df62df1a13 |
User & Date: | rkeene on 2014-09-08 07:17:08 |
Other Links: | manifest | tags |
Context
2014-09-08
| ||
19:59 | Added script to create simple appfs directory tree for serving check-in: edd156adcd user: rkeene tags: trunk | |
07:17 | More work towards parsing directory entries check-in: 85bda525b9 user: rkeene tags: trunk | |
06:48 | More work towards reading package data check-in: e37bc482a9 user: rkeene tags: trunk | |
Changes
Modified appfs.c from [e4290f9d3b] to [4d722642c3].
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 | APPFS_CPU_ALL, APPFS_CPU_AMD64, APPFS_CPU_I386, APPFS_CPU_ARM } appfs_cpuArch_t; struct appfs_package { char name[128]; char version[64]; char sha1[41]; appfs_os_t os; appfs_cpuArch_t cpuArch; int isLatest; | > > > < < < < | | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | APPFS_CPU_ALL, APPFS_CPU_AMD64, APPFS_CPU_I386, APPFS_CPU_ARM } appfs_cpuArch_t; struct appfs_package { struct appfs_package *_next; int counter; char name[128]; char version[64]; char sha1[41]; appfs_os_t os; appfs_cpuArch_t cpuArch; int isLatest; }; struct appfs_site { struct appfs_site *_next; int counter; char name[256]; }; static appfs_os_t appfs_convert_os_fromString(const char *os) { if (strcasecmp(os, "Linux") == 0) { return(APPFS_OS_LINUX); } |
︙ | ︙ | |||
154 155 156 157 158 159 160 161 162 163 164 165 166 167 | retval = Tcl_EvalObjv(interp, objc, objv, 0); ckfree((void *) objv); return(retval); } static int appfs_getsites_cb(void *_head, int columns, char **values, char **names) { struct appfs_site **head_p, *obj; head_p = _head; obj = (void *) ckalloc(sizeof(*obj)); | > > > > > > > > > > > > | 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | retval = Tcl_EvalObjv(interp, objc, objv, 0); ckfree((void *) objv); return(retval); } #define appfs_free_list_type(id, type) static void appfs_free_list_ ## id(type *head) { \ type *obj, *next; \ for (obj = head; obj; obj = next) { \ next = obj->_next; \ ckfree((void *) obj); \ } \ } appfs_free_list_type(site, struct appfs_site) appfs_free_list_type(package, struct appfs_package) static int appfs_getsites_cb(void *_head, int columns, char **values, char **names) { struct appfs_site **head_p, *obj; head_p = _head; obj = (void *) ckalloc(sizeof(*obj)); |
︙ | ︙ | |||
274 275 276 277 278 279 280 | return(0); } static int appfs_getmanifest(const char *hostname, const char *sha1) { return(0); } | > | < < < < > > > > > > > > > > > > > > > > > > > | 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 | return(0); } static int appfs_getmanifest(const char *hostname, const char *sha1) { return(0); } #if 0 static int appfs_parse_path(const char *_path, struct appfs_path *pathinfo) { char *path; if (_path == NULL) { return(-ENOENT); } if (_path[0] != '/') { return(-ENOENT); } if (_path[1] == '\0') { /* Request for the root directory */ } path = strdup(_path); hostname = path + 1; package = strchr(hostname, '/'); if (package == NULL) { /* Request for a single hostname */ } } #else static int appfs_parse_path(const char *_path) { return(0); } #endif static int appfs_fuse_getattr(const char *path, struct stat *stbuf) { int res = 0; APPFS_DEBUG("Enter (path = %s, ...)", path); res = appfs_parse_path(path); memset(stbuf, 0, sizeof(struct stat)); stbuf->st_mode = S_IFDIR | 0755; stbuf->st_nlink = 2; return res; } |
︙ | ︙ | |||
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | int packages_count = 0, sites_count = 0; sites = appfs_getsites(&sites_count); printf("Sites:\n"); for (site = sites; site; site = site->_next) { printf("\tname = %s\n", site->name); } packages = appfs_getindex("rkeene.org", &packages_count); if (packages == NULL || packages_count == 0) { fprintf(stderr, "Unable to fetch package index from rkeene.org.\n"); return(1); } for (package = packages; package; package = package->_next) { printf("Package:\n\tname = %s\n\tversion = %s\n\tsha1 = %s\n\tos = %s\n\tcpuArch = %s\n", package->name, package->version, package->sha1, appfs_convert_os_toString(package->os), appfs_convert_cpuArch_toString(package->cpuArch) ); } return(0); } #else static struct fuse_operations appfs_oper = { .getattr = appfs_fuse_getattr, .readdir = appfs_fuse_readdir, | > > > > | 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | int packages_count = 0, sites_count = 0; sites = appfs_getsites(&sites_count); printf("Sites:\n"); for (site = sites; site; site = site->_next) { printf("\tname = %s\n", site->name); } appfs_free_list_site(sites); packages = appfs_getindex("rkeene.org", &packages_count); if (packages == NULL || packages_count == 0) { fprintf(stderr, "Unable to fetch package index from rkeene.org.\n"); return(1); } for (package = packages; package; package = package->_next) { printf("Package:\n\tname = %s\n\tversion = %s\n\tsha1 = %s\n\tos = %s\n\tcpuArch = %s\n", package->name, package->version, package->sha1, appfs_convert_os_toString(package->os), appfs_convert_cpuArch_toString(package->cpuArch) ); } appfs_free_list_package(packages); return(0); } #else static struct fuse_operations appfs_oper = { .getattr = appfs_fuse_getattr, .readdir = appfs_fuse_readdir, |
︙ | ︙ |