From 49120f48474fc8fdc2448c75d961bc238213cfac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Tue, 1 May 2018 14:34:32 +0200 Subject: New upstream version 0.28.2 --- plugins/shotwell-data-imports/FSpotDatabase.vala | 58 ------------------------ 1 file changed, 58 deletions(-) delete mode 100644 plugins/shotwell-data-imports/FSpotDatabase.vala (limited to 'plugins/shotwell-data-imports/FSpotDatabase.vala') diff --git a/plugins/shotwell-data-imports/FSpotDatabase.vala b/plugins/shotwell-data-imports/FSpotDatabase.vala deleted file mode 100644 index 979171c..0000000 --- a/plugins/shotwell-data-imports/FSpotDatabase.vala +++ /dev/null @@ -1,58 +0,0 @@ -/* Copyright 2016 Software Freedom Conservancy Inc. - * - * This software is licensed under the GNU Lesser General Public License - * (version 2.1 or later). See the COPYING file in this distribution. - */ - -namespace DataImports.FSpot.Db { - -public const int64 NULL_ID = 0; -public const int64 INVALID_ID = -1; - -/** - * Initialization method for the whole module. - */ -public void init() { - FSpotDatabaseBehavior.create_behavior_map(); -} - -/** - * An object that is able to read from the F-Spot - * database and extract the relevant objects. - */ -public class FSpotDatabase : Object { - private Sqlite.Database fspot_db; - private FSpotMetaTable meta_table; - public FSpotPhotosTable photos_table; - public FSpotPhotoVersionsTable photo_versions_table; - public FSpotTagsTable tags_table; - public FSpotRollsTable rolls_table; - public int64 hidden_tag_id; - - public FSpotDatabase(File db_file) throws DatabaseError, Spit.DataImports.DataImportError { - string filename = db_file.get_path(); - int res = Sqlite.Database.open_v2(filename, out fspot_db, - Sqlite.OPEN_READONLY, null); - if (res != Sqlite.OK) - throw new DatabaseError.ERROR("Unable to open F-Spot database %s: %d", filename, res); - meta_table = new FSpotMetaTable(fspot_db); - hidden_tag_id = meta_table.get_hidden_tag_id(); - - FSpotDatabaseBehavior db_behavior = new FSpotDatabaseBehavior(get_version()); - - photos_table = new FSpotPhotosTable(fspot_db, db_behavior); - photo_versions_table = new FSpotPhotoVersionsTable(fspot_db, db_behavior); - tags_table = new FSpotTagsTable(fspot_db, db_behavior); - rolls_table = new FSpotRollsTable(fspot_db, db_behavior); - } - - ~FSpotDatabase() { - } - - private Utils.VersionNumber get_version() throws DatabaseError { - return new Utils.VersionNumber.from_string(meta_table.get_db_version()); - } -} - -} - -- cgit v1.2.3