tripal.importer.api.inc
Provides an application programming interface (API) for working with data file importers using the TripalImporter class.
File
tripal/api/tripal.importer.api.incView source
- <?php
-
- /**
- * @file
- * Provides an application programming interface (API) for working with
- * data file importers using the TripalImporter class.
- *
- */
-
- /**
- * @defgroup tripal_importer_api Data Importing
- * @ingroup tripal_api
- * @{
- * Provides an application programming interface (API) for working with
- * data file importers using the TripalImporter class into a chado database.
- * @}
- *
- */
-
- /**
- * Implements hook_handle_uplaoded_file().
- *
- * This is a Tripal hook that allows the module to set the proper
- * parameters for a file uploaded via the Tripal HTML5 uploader.
- *
- * @param $file
- * The Drupal file object of the newly uploaded file.
- * @param $type
- * The category or type of file.
- *
- * @return
- * A Drupal managed file ID.
- *
- * @ingroup tripal_importer_api
- */
- function hook_handle_uploaded_file($file, $type) {
-
- }
-
- /**
- * Retrieves a list of TripalImporter Importers.
- *
- * The TripalImporter classes can be added by a site developer that wishes
- * to create a new data loader. The class file should
- * be placed in the [module]/includes/TripalImporter directory. Tripal will
- * support any loader as long as it is in this directory and extends the
- * TripalImporter class.
- *
- * @return
- * A list of TripalImporter names.
- *
- * @ingroup tripal_importer_api
- */
- function tripal_get_importers() {
- $importers = array();
-
- $modules = module_list(TRUE);
- foreach ($modules as $module) {
- // Find all of the files in the tripal_chado/includes/fields directory.
- $loader_path = drupal_get_path('module', $module) . '/includes/TripalImporter';
- $loader_files = file_scan_directory($loader_path, '/.inc$/');
- // Iterate through the fields, include the file and run the info function.
- foreach ($loader_files as $file) {
- $class = $file->name;
- module_load_include('inc', $module, 'includes/TripalImporter/' . $class);
- if (class_exists($class) and is_subclass_of($class, 'TripalImporter')) {
- $importers[] = $class;
- }
- }
- }
- return $importers;
- }
-
- /**
- * Loads the TripalImporter class file into scope.
- *
- * @param $class
- * The TripalImporter class to include.
- *
- * @return
- * TRUE if the field type class file was found, FALSE otherwise.
- *
- * @ingroup tripal_importer_api
- */
- function tripal_load_include_importer_class($class) {
-
- $modules = module_list(TRUE);
- foreach ($modules as $module) {
- $file_path = realpath(".") . '/' . drupal_get_path('module', $module) . '/includes/TripalImporter/' . $class . '.inc';
- if (file_exists($file_path)) {
- module_load_include('inc', $module, 'includes/TripalImporter/' . $class);
- if (class_exists($class)) {
- return TRUE;
- }
- }
- }
- return FALSE;
- }
-
- /**
- * Imports data into the database.
- *
- * Tripal provides the TripalImporter class to allow site developers to
- * create their own data loaders. Site users can then use any data loader
- * implemented for the site by submitting the form that comes with the
- * TripalImporter impelmentation. This function runs the importer using the
- * arguments provided by the user.
- *
- * @param $import_id
- * The ID of the import record.
- * @throws Exception
- *
- * @ingroup tripal_importer_api
- */
- function tripal_run_importer($import_id, TripalJob $job = NULL) {
-
- $loader = NULL;
- $loader = TripalImporter::byID($import_id);
- $loader->setJob($job);
- $loader->prepareFiles();
-
- print "\nRunning '".$loader::$name."' importer";
-
- print "\nNOTE: Loading of file is performed using a database transaction. \n" .
- "If it fails or is terminated prematurely then all insertions and \n" .
- "updates are rolled back and will not be found in the database\n\n";
-
- try {
- // Run the loader
- tripal_run_importer_run($loader, $job);
-
- // Handle the post run.
- tripal_run_importer_post_run($loader, $job);
-
- // Check for tables with new cvterms
- print "Remapping Chado Controlled vocabularies to Tripal Terms...";
- tripal_chado_map_cvterms();
-
- // Check for new fields and notify the user.
- tripal_tripal_cron_notification();
-
- // Clear the Drupal cache
- cache_clear_all();
- }
- catch (Exception $e) {
- if ($job) {
- $job->logMessage($e->getMessage(), array(), TRIPAL_ERROR);
- }
- if ($loader) {
- $loader->cleanFile();
- }
- }
- }
-
- /**
- * First step of the tripal_run_importer.
- *
- * @param $loader
- * The TripalImporter object.
- * @param $job
- * The TripalJob object.$this
- * @throws Exception
- *
- * @ingroup tripal_importer_api
- */
- function tripal_run_importer_run($loader, $job) {
-
- try {
- // begin the transaction
- $transaction = db_transaction();
-
- $loader->run();
-
- if ($job) {
- $job->logMessage("\nDone.\n");
- }
-
- // Remove the temp file
- if (!empty($details->arguments['file_url'])) {
- $loader->logMessage('Removing downloaded file...');
- unlink($temp);
- }
- }
- catch (Exception $e) {
- // Rollback and re-throw the error.
- $transaction->rollback();
- throw $e;
- }
- }
- /**
- * Second step of the tripal_run_importer.
- *
- * @param $loader
- * The TripalImporter object.
- * @param $job
- * The TripalJob object.
- * @throws Exception
- *
- * @ingroup tripal_importer_api
- */
- function tripal_run_importer_post_run($loader, $job) {
- try {
- // the transaction
- $transaction = db_transaction();
- $loader->postRun();
- }
- catch (Exception $e) {
- // Rollback and re-throw the error.
- $transaction->rollback();
- throw $e;
- }
- }