src/hg/utils/tdbQuery/tdbQuery.c 1.1
1.1 2009/12/02 01:29:58 kent
Initial commit of tdbQuery. Still has clones of some files from raSqlQuery that will eventually end up in library when more stable.
Index: src/hg/utils/tdbQuery/tdbQuery.c
===================================================================
RCS file: src/hg/utils/tdbQuery/tdbQuery.c
diff -N src/hg/utils/tdbQuery/tdbQuery.c
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/utils/tdbQuery/tdbQuery.c 2 Dec 2009 01:29:58 -0000 1.1
@@ -0,0 +1,245 @@
+/* tdbQuery - Query the trackDb system using SQL syntax.. */
+#include "common.h"
+#include "linefile.h"
+#include "hash.h"
+#include "options.h"
+#include "localmem.h"
+#include "obscure.h"
+#include "portable.h"
+#include "tdbRecord.h"
+#include "rql.h"
+
+static char const rcsid[] = "$Id$";
+
+static char *clRoot = "~/kent/src/hg/makeDb/trackDb"; /* Root dir of trackDb system. */
+static char *clFile = NULL; /* a .ra file to use instead of trackDb system. */
+static boolean clCheck = FALSE; /* If set perform lots of checks on input. */
+static boolean clStrict = FALSE; /* If set only return tracks with actual tables. */
+
+void usage()
+/* Explain usage and exit. */
+{
+errAbort(
+"tdbQuery - Query the trackDb system using SQL syntax.\n"
+"Usage:\n"
+" tdbQuery sqlStatement\n"
+"Where the SQL statement is enclosed in quotations to avoid the shell interpreting it.\n"
+"Only a very restricted subset of a single SQL statement (select) is supported. Examples:\n"
+" tdbQuery \"select count(*) from hg18\"\n"
+"counts all of the tracks in hg18 and prints the results to stdout\n"
+" tdbQuery \"select count(*) from *\"\n"
+"counts all tracks in all databases.\n"
+" tdbQuery \"select track,shortLabel from hg18 where type like 'bigWig%%'\"\n"
+"prints to stdout a a two field .ra file containing just the track and shortLabels of bigWig \n"
+"type tracks in the hg18 version of trackDb.\n"
+" tdbQuery \"select * from hg18 where track='knownGene' or track='ensGene'\"\n"
+"prints the hg18 knownGene and ensGene track's information to stdout.\n"
+" tdbQuery \"select *Label from mm9\"\n"
+"prints all fields that end in 'Label' from the mm9 trackDb.\n"
+"OPTIONS:\n"
+" -root=/path/to/trackDb/root/dir\n"
+"Sets the root directory of the trackDb.ra directory hierarchy to be given path.\n"
+" -file=someFile.ra\n"
+"The file option makes the system use the given .ra file instead of the trackDb.ra directory \n"
+"hierarchy\n"
+" -check\n"
+"Check that trackDb is internally consistent. Prints diagnostic output to stderr and aborts if \n"
+"there's problems.\n"
+" -strict\n"
+"Mimic -strict option on hgTrackDb. Suppresses tracks where corresponding table does not exist."
+);
+}
+
+
+static struct optionSpec options[] = {
+ {"root", OPTION_STRING},
+ {"file", OPTION_STRING},
+ {"check", OPTION_BOOLEAN},
+ {"strict", OPTION_BOOLEAN},
+ {NULL, 0},
+};
+
+struct dbPath
+/* A database directory and path. */
+ {
+ struct dbPath *next;
+ char *db;
+ char *dir;
+ };
+
+static struct dbPath *getDbPathList(char *rootDir)
+/* Get list of all "database" directories with any trackDb.ra files two under us. */
+{
+char *root = simplifyPathToDir(rootDir);
+struct dbPath *pathList = NULL, *path;
+struct fileInfo *org, *orgList = listDirX(root, "*", TRUE);
+for (org = orgList; org != NULL; org = org->next)
+ {
+ if (org->isDir)
+ {
+ struct fileInfo *db, *dbList = listDirX(org->name, "*", TRUE);
+ for (db = dbList; db != NULL; db = db->next)
+ {
+ if (db->isDir)
+ {
+ char trackDbPath[PATH_LEN];
+ safef(trackDbPath, sizeof(trackDbPath), "%s/trackDb.ra", db->name);
+ if (fileExists(trackDbPath))
+ {
+ AllocVar(path);
+ path->dir = cloneString(db->name);
+ char *s = strrchr(db->name, '/');
+ assert(s != NULL);
+ path->db = cloneString(s+1);
+ slAddHead(&pathList, path);
+ }
+ }
+ }
+ slFreeList(&dbList);
+ }
+ }
+slFreeList(&orgList);
+slReverse(&pathList);
+freez(&root);
+return pathList;
+}
+
+
+static struct slName *dbPathToFiles(struct dbPath *p)
+/* Convert dbPath to a list of files. */
+{
+struct slName *pathList = NULL;
+char *dbDir = p->dir;
+char *relPaths = "../../trackDb.ra ../trackDb.ra trackDb.ra";
+char *buf = cloneString(relPaths);
+char *line = buf, *word;
+while ((word = nextWord(&line)) != NULL)
+ {
+ char relDir[PATH_LEN], relFile[PATH_LEN], relSuffix[PATH_LEN];
+ splitPath(word, relDir, relFile, relSuffix);
+ char dir[PATH_LEN];
+ safef(dir, sizeof(dir), "%s/%s", dbDir, relDir);
+ char *path = simplifyPathToDir(dir);
+ char pattern[PATH_LEN];
+ safef(pattern, sizeof(pattern), "%s%s", relFile, relSuffix);
+ struct fileInfo *fi, *fiList = listDirX(path, pattern, TRUE);
+ for (fi = fiList; fi != NULL; fi = fi->next)
+ slNameAddHead(&pathList, fi->name);
+ freeMem(path);
+ slFreeList(&fiList);
+ }
+freeMem(buf);
+slReverse(&pathList);
+return pathList;
+}
+
+struct dbPath *dbPathFind(struct dbPath *list, char *db)
+/* Return element on list corresponding to db, or NULL if it doesn't exist. */
+{
+struct dbPath *p;
+for (p=list; p != NULL; p = p->next)
+ if (sameString(p->db, db))
+ break;
+return p;
+}
+
+struct tdbRecord *readStartingFromFile(char *fileName, struct lm *lm)
+/* Read in records from file and any files included from it. */
+{
+struct tdbRecord *recordList = NULL, *record;
+struct lineFile *lfStack = NULL, *lf;
+struct hash *circularHash = hashNew(0);
+hashAdd(circularHash, fileName, NULL);
+lf = lineFileOpen(fileName, TRUE);
+uglyf("readStartingFrom %s %p\n", fileName, lm);
+while (lf != NULL)
+ {
+ while ((record = tdbRecordReadOne(lf, "track", lm)) != NULL)
+ {
+ struct tdbField *firstField = record->fieldList;
+ if (sameString(firstField->name, "include"))
+ {
+ char *includeName = firstField->val;
+ if (hashLookup(circularHash, includeName))
+ {
+ errAbort("Including file %s in an infinite loop line %d of %s",
+ includeName, lf->lineIx, lf->fileName);
+ }
+ slAddHead(&lfStack, lf);
+ uglyf("opening include %s\n", includeName);
+ lf = lineFileOpen(includeName, TRUE);
+ hashAdd(circularHash, includeName, NULL);
+ }
+ else
+ {
+ slAddHead(&recordList, record);
+ }
+ }
+ uglyf("done with %s\n", lf->fileName);
+ lineFileClose(&lf);
+ lf = lfStack;
+ if (lfStack != NULL)
+ lfStack = lfStack->next;
+ }
+hashFree(&circularHash);
+slReverse(&recordList);
+return recordList;
+}
+
+void tdbQuery(char *sql)
+/* tdbQuery - Query the trackDb system using SQL syntax.. */
+{
+/* Parse out sql statement. */
+struct lineFile *lf = lineFileOnString("query", TRUE, cloneString(sql));
+struct rqlStatement *rql = rqlStatementParse(lf);
+lineFileClose(&lf);
+
+/* Figure out list of databases to work on. */
+struct slRef *dbOrderList = NULL, *dbOrder;
+struct dbPath *db, *dbList = getDbPathList(clRoot);
+struct slName *t;
+for (t = rql->tableList; t != NULL; t = t->next)
+ {
+ for (db = dbList; db!= NULL; db = db->next)
+ {
+ if (wildMatch(t->name, db->db))
+ refAdd(&dbOrderList, db);
+ }
+ }
+uglyf("%d databases in from clause\n", slCount(dbOrderList));
+
+for (dbOrder = dbOrderList; dbOrder != NULL; dbOrder = dbOrder->next)
+ {
+ struct lm *lm = lmInit(0);
+ struct dbPath *p = dbOrder->val;
+ struct slName *fileLevelList = dbPathToFiles(p);
+
+ char *fileName = fileLevelList->name; /* Loop soon */
+ struct tdbRecord *recordList = readStartingFromFile(fileName, lm);
+ uglyf("Read %d records starting from %s\n", slCount(recordList), fileName);
+ struct hash *recordHash = hashNew(0);
+ struct tdbRecord *record;
+ for (record = recordList; record != NULL; record = record->next)
+ {
+ if (record->key != NULL)
+ hashAdd(recordHash, record->key, record);
+ }
+ lmCleanup(&lm);
+ }
+
+rqlStatementFree(&rql);
+}
+
+int main(int argc, char *argv[])
+/* Process command line. */
+{
+optionInit(&argc, argv, options);
+if (argc != 2)
+ usage();
+clRoot = optionVal("root", clRoot);
+clFile = optionVal("file", clFile);
+clCheck = optionExists("check");
+clStrict = optionExists("strict");
+tdbQuery(argv[1]);
+return 0;
+}