home *** CD-ROM | disk | FTP | other *** search
/ Freelog 112 / FreelogNo112-NovembreDecembre2012.iso / Multimedia / Songbird / Songbird_2.0.0-2311_windows-i686-msvc8.exe / components / sbMigrate070RC2to070.js < prev    next >
Text File  |  2012-06-08  |  5KB  |  150 lines

  1. /*
  2. //
  3. // BEGIN SONGBIRD GPL
  4. //
  5. // This file is part of the Songbird web player.
  6. //
  7. // Copyright(c) 2005-2008 POTI, Inc.
  8. // http://songbirdnest.com
  9. //
  10. // This file may be licensed under the terms of of the
  11. // GNU General Public License Version 2 (the "GPL").
  12. //
  13. // Software distributed under the License is distributed
  14. // on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
  15. // express or implied. See the GPL for the specific language
  16. // governing rights and limitations.
  17. //
  18. // You should have received a copy of the GPL along with this
  19. // program. If not, go to http://www.gnu.org/licenses/gpl.html
  20. // or write to the Free Software Foundation, Inc.,
  21. // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  22. //
  23. // END SONGBIRD GPL
  24. //
  25. */
  26.  
  27. Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
  28. Components.utils.import("resource://app/jsmodules/ArrayConverter.jsm");
  29. Components.utils.import("resource://app/jsmodules/sbLocalDatabaseMigrationUtils.jsm");
  30. Components.utils.import("resource://app/jsmodules/SBJobUtils.jsm");
  31.  
  32. const Cc = Components.classes;
  33. const Ci = Components.interfaces;
  34. const Cr = Components.results;
  35.  
  36. function LOG(s) {
  37.   dump("----++++----++++\nsbLocalDatabaseMigrate070RC2to070 ---> " + 
  38.        s + 
  39.        "\n----++++----++++\n");
  40. }
  41.  
  42. function sbLocalDatabaseMigrate070RC1to070()
  43. {
  44.   SBLocalDatabaseMigrationUtils.BaseMigrationHandler.call(this);
  45.   
  46.   this.fromVersion = 7;
  47.   this.toVersion   = 8;
  48. }
  49.  
  50. //-----------------------------------------------------------------------------
  51. // sbLocalDatabaseMigration Implementation
  52. //-----------------------------------------------------------------------------
  53.  
  54. sbLocalDatabaseMigrate070RC1to070.prototype = {
  55.   __proto__: SBLocalDatabaseMigrationUtils.BaseMigrationHandler.prototype,
  56.  
  57.   classDescription: 'Songbird Migration Handler for 0.7.0 RC2 to 0.7.0',
  58.   classID: Components.ID("{116C3A20-DD68-45E9-81FD-EBEEBFD21BF6}"),
  59.   contractID: SBLocalDatabaseMigrationUtils.baseHandlerContractID + "0.7.0 RC2 to 0.7.0",
  60.   
  61.   _databaseLocation: null,
  62.   _databaseGUID: null,
  63.   
  64.   _mediaItems: null,
  65.   
  66.   migrate: function sbLDBM070RC1to070_migrate(aLibrary) {
  67.     this._databaseGUID = aLibrary.databaseGuid;
  68.     this._databaseLocation = aLibrary.databaseLocation;
  69.     
  70.     this._getMediaItems();
  71.     
  72.     var query = this._createQuery();
  73.     query.addQuery("begin");
  74.  
  75.     for(let i = 0; i < this._mediaItems.length; ++i) {
  76.       let str = "update media_items set is_list = ? where media_item_id = ?";
  77.       query.addQuery(str);
  78.             
  79.       query.bindInt32Parameter(0, this._mediaItems[i].isList);
  80.       query.bindInt32Parameter(1, this._mediaItems[i].itemId);
  81.     }
  82.     
  83.     // Finally, we updated the schema version to the destination version.
  84.     query.addQuery("update library_metadata set value = '8' where name = 'version'");
  85.  
  86.     // Our queries are all generated. Time to execute the migration.
  87.     query.addQuery("commit");
  88.  
  89.     var retval;
  90.     query.setAsyncQuery(true);
  91.     query.execute(retval);
  92.     
  93.     var sip = Cc["@mozilla.org/supports-interface-pointer;1"]
  94.                 .createInstance(Ci.nsISupportsInterfacePointer);
  95.     sip.data = this;
  96.     
  97.     this._titleText = "Library Migration Helper";
  98.     this._statusText = "Migrating 0.7.0 RC2 database to 0.7.0 database...";
  99.     this.migrationQuery = query;
  100.     
  101.     this.startNotificationTimer();
  102.     SBJobUtils.showProgressDialog(sip.data, null, 0);
  103.     this.stopNotificationTimer();
  104.   },
  105.   
  106.   _createQuery: function sbLDBM070RC1to070_createQuery() {
  107.     var query = Cc["@songbirdnest.com/Songbird/DatabaseQuery;1"]
  108.                   .createInstance(Ci.sbIDatabaseQuery);
  109.     query.databaseLocation = this._databaseLocation;
  110.     query.setDatabaseGUID(this._databaseGUID);
  111.     
  112.     return query;
  113.   },
  114.   
  115.   _getMediaItems: function sbLDBM070RC1to070_getMediaItems() {
  116.     this._mediaItems = [];
  117.     
  118.     let sql = "select media_item_id, media_list_type_id from media_items where media_list_type_id is not null";
  119.     
  120.     var query = this._createQuery();
  121.     query.addQuery(sql);
  122.     
  123.     var retval;
  124.     query.execute(retval);
  125.     
  126.     var resultSet = query.getResultObject();
  127.     
  128.     var rowCount = resultSet.getRowCount();
  129.     for(let currentRow = 0; currentRow < rowCount; ++currentRow) {
  130.       let _mediaItemId = resultSet.getRowCell(currentRow, 0);
  131.       let _listType = resultSet.getRowCell(currentRow, 1);
  132.       let _isList = Number(parseInt(_listType) > 0);
  133.  
  134.       var entry = {itemId: _mediaItemId, isList: _isList};
  135.       this._mediaItems.push(entry);
  136.     }
  137.   }
  138. }
  139.  
  140.  
  141. //
  142. // Module
  143. // 
  144.  
  145. function NSGetModule(compMgr, fileSpec) {
  146.   return XPCOMUtils.generateModule([
  147.     sbLocalDatabaseMigrate070RC1to070
  148.   ]);
  149. }
  150.