-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #300 from COSIMA/update_db_script
Add a script to update a database
- Loading branch information
Showing
6 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import argparse | ||
import pathlib | ||
|
||
import cosima_cookbook as cc | ||
|
||
|
||
def main(argv=None): | ||
parser = argparse.ArgumentParser(description="Update COSIMA cookbook database.") | ||
parser.add_argument( | ||
"dirs", type=pathlib.Path, nargs="+", help="Directories to index." | ||
) | ||
parser.add_argument( | ||
"-db", | ||
"--database", | ||
dest="db", | ||
action="store", | ||
default="cosima_master.db", | ||
help="Database to update.", | ||
) | ||
args = parser.parse_args(argv) | ||
|
||
print(cc) | ||
|
||
print("Establishing a DB connection to: {}".format(args.db)) | ||
session = cc.database.create_session(args.db, timeout=30) | ||
|
||
for dir in args.dirs: | ||
print("Indexing: {}".format(dir)) | ||
cc.database.build_index( | ||
dir, session, prune="delete", force=False, followsymlinks=True, nfiles=1000 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import shlex | ||
from cosima_cookbook import database_update | ||
|
||
|
||
def test_database_update(tmpdir): | ||
|
||
args = shlex.split( | ||
"-db {db} test/data/update/experiment_a test/data/update/experiment_b".format( | ||
db=tmpdir.join("test.db") | ||
) | ||
) | ||
|
||
database_update.main(args) |