Selective Sync fixes
[pithos-ms-client] / trunk / Pithos.Core / Agents / StatusAgent.cs
1 #region
2 /* -----------------------------------------------------------------------
3  * <copyright file="StatusAgent.cs" company="GRNet">
4  * 
5  * Copyright 2011-2012 GRNET S.A. All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or
8  * without modification, are permitted provided that the following
9  * conditions are met:
10  *
11  *   1. Redistributions of source code must retain the above
12  *      copyright notice, this list of conditions and the following
13  *      disclaimer.
14  *
15  *   2. Redistributions in binary form must reproduce the above
16  *      copyright notice, this list of conditions and the following
17  *      disclaimer in the documentation and/or other materials
18  *      provided with the distribution.
19  *
20  *
21  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
22  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
25  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *
34  * The views and conclusions contained in the software and
35  * documentation are those of the authors and should not be
36  * interpreted as representing official policies, either expressed
37  * or implied, of GRNET S.A.
38  * </copyright>
39  * -----------------------------------------------------------------------
40  */
41 #endregion
42 using System;
43 using System.Collections.Generic;
44 using System.ComponentModel.Composition;
45 using System.Data.SQLite;
46 using System.Diagnostics;
47 using System.Diagnostics.Contracts;
48 using System.IO;
49 using System.Linq;
50 using System.Reflection;
51 using System.Security.Cryptography;
52 using System.Text;
53 using System.Threading;
54 using System.Threading.Tasks;
55 using Castle.ActiveRecord;
56 using Castle.ActiveRecord.Framework;
57 using Castle.ActiveRecord.Framework.Config;
58 using NHibernate.ByteCode.Castle;
59 using NHibernate.Cfg;
60 using NHibernate.Cfg.Loquacious;
61 using NHibernate.Dialect;
62 using Pithos.Interfaces;
63 using Pithos.Network;
64 using log4net;
65 using Environment = System.Environment;
66
67 namespace Pithos.Core.Agents
68 {
69     [Export(typeof(IStatusChecker)),Export(typeof(IStatusKeeper))]
70     public class StatusAgent:IStatusChecker,IStatusKeeper
71     {
72         private static readonly ILog Log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
73
74         [System.ComponentModel.Composition.Import]
75         public IPithosSettings Settings { get; set; }
76
77         private Agent<Action> _persistenceAgent;
78
79
80
81         public StatusAgent()
82         {            
83             var appDataPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
84
85             _pithosDataPath = Path.Combine(appDataPath , "GRNET\\PITHOS");
86             if (!Directory.Exists(_pithosDataPath))
87                 Directory.CreateDirectory(_pithosDataPath);
88
89             var dbPath = Path.Combine(_pithosDataPath, "pithos.db");
90
91             MigrateOldDb(dbPath, appDataPath);
92
93
94             var source = GetConfiguration(_pithosDataPath);
95             ActiveRecordStarter.Initialize(source,typeof(FileState),typeof(FileTag));
96             
97             ActiveRecordStarter.UpdateSchema();
98
99
100             if (!File.Exists(dbPath))
101                 ActiveRecordStarter.CreateSchema();
102
103             CreateTrigger();
104             
105         }
106
107
108         private static void MigrateOldDb(string dbPath, string appDataPath)
109         {
110             if(String.IsNullOrWhiteSpace(dbPath))
111                 throw new ArgumentNullException("dbPath");
112             if(String.IsNullOrWhiteSpace(appDataPath))
113                 throw new ArgumentNullException("appDataPath");
114             Contract.EndContractBlock();
115
116             var oldDbPath = Path.Combine(appDataPath, "Pithos", "pithos.db");
117             var oldDbInfo = new FileInfo(oldDbPath);
118             if (oldDbInfo.Exists && !File.Exists(dbPath))
119             {
120                 Log.InfoFormat("Moving database from {0} to {1}",oldDbInfo.FullName,dbPath);
121                 var oldDirectory = oldDbInfo.Directory;
122                 oldDbInfo.MoveTo(dbPath);
123                 
124                 if (Log.IsDebugEnabled)
125                     Log.DebugFormat("Deleting {0}",oldDirectory.FullName);
126                 
127                 oldDirectory.Delete(true);
128             }
129         }
130
131         private void CreateTrigger()
132         {
133             using (var connection = GetConnection())
134             using (var triggerCommand = connection.CreateCommand())
135             {
136                 var cmdText = new StringBuilder()
137                     .AppendLine("CREATE TRIGGER IF NOT EXISTS update_last_modified UPDATE ON FileState FOR EACH ROW")
138                     .AppendLine("BEGIN")
139                     .AppendLine("UPDATE FileState SET Modified=datetime('now')  WHERE Id=old.Id;")
140                     .AppendLine("END;")
141                     .AppendLine("CREATE TRIGGER IF NOT EXISTS insert_last_modified INSERT ON FileState FOR EACH ROW")
142                     .AppendLine("BEGIN")
143                     .AppendLine("UPDATE FileState SET Modified=datetime('now')  WHERE Id=new.Id;")
144                     .AppendLine("END;")
145                     .ToString();
146                 triggerCommand.CommandText = cmdText;                
147                 triggerCommand.ExecuteNonQuery();
148             }
149         }
150
151
152         private static InPlaceConfigurationSource GetConfiguration(string pithosDbPath)
153         {
154             if (String.IsNullOrWhiteSpace(pithosDbPath))
155                 throw new ArgumentNullException("pithosDbPath");
156             if (!Path.IsPathRooted(pithosDbPath))
157                 throw new ArgumentException("path must be a rooted path", "pithosDbPath");
158             Contract.EndContractBlock();
159
160             var properties = new Dictionary<string, string>
161                                  {
162                                      {"connection.driver_class", "NHibernate.Driver.SQLite20Driver"},
163                                      {"dialect", "NHibernate.Dialect.SQLiteDialect"},
164                                      {"connection.provider", "NHibernate.Connection.DriverConnectionProvider"},
165                                      {
166                                          "proxyfactory.factory_class",
167                                          "NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle"
168                                          },
169                                  };
170
171             var connectionString = String.Format(@"Data Source={0}\pithos.db;Version=3;Enlist=N", pithosDbPath);
172             properties.Add("connection.connection_string", connectionString);
173
174             var source = new InPlaceConfigurationSource();                        
175             source.Add(typeof (ActiveRecordBase), properties);
176             source.SetDebugFlag(false);            
177             return source;
178         }
179
180         public void StartProcessing(CancellationToken token)
181         {
182             _persistenceAgent = Agent<Action>.Start(queue =>
183             {
184                 Action loop = null;
185                 loop = () =>
186                 {
187                     var job = queue.Receive();
188                     job.ContinueWith(t =>
189                     {
190                         var action = job.Result;
191                         try
192                         {
193                             action();
194                         }
195                         catch (SQLiteException ex)
196                         {
197                             Log.ErrorFormat("[ERROR] SQL \n{0}", ex);
198                         }
199                         catch (Exception ex)
200                         {
201                             Log.ErrorFormat("[ERROR] STATE \n{0}", ex);
202                         }
203                         queue.NotifyComplete(action);
204 // ReSharper disable AccessToModifiedClosure
205                         queue.DoAsync(loop);
206 // ReSharper restore AccessToModifiedClosure
207                     });
208                 };
209                 loop();
210             });
211             
212         }
213
214        
215
216         public void Stop()
217         {
218             _persistenceAgent.Stop();            
219         }
220                
221
222         public void ProcessExistingFiles(IEnumerable<FileInfo> existingFiles)
223         {
224             if(existingFiles  ==null)
225                 throw new ArgumentNullException("existingFiles");
226             Contract.EndContractBlock();
227             
228             //Find new or matching files with a left join to the stored states
229             var fileStates = FileState.Queryable;
230             var currentFiles=from file in existingFiles
231                       join state in fileStates on file.FullName.ToLower() equals state.FilePath.ToLower() into gs
232                       from substate in gs.DefaultIfEmpty()
233                                select new {File = file, State = substate};
234
235             //To get the deleted files we must get the states that have no corresponding
236             //files. 
237             //We can't use the File.Exists method inside a query, so we get all file paths from the states
238             var statePaths = (from state in fileStates
239                              select new {state.Id, state.FilePath}).ToList();
240             //and check each one
241             var missingStates= (from path in statePaths
242                                 where !File.Exists(path.FilePath) && !Directory.Exists(path.FilePath)
243                                select path.Id).ToList();
244             //Finally, retrieve the states that correspond to the deleted files            
245             var deletedFiles = from state in fileStates 
246                         where missingStates.Contains(state.Id)
247                         select new { File = default(FileInfo), State = state };
248
249             var pairs = currentFiles.Union(deletedFiles).ToList();
250
251             using (var shortHasher = HashAlgorithm.Create("sha1"))
252             {
253                 foreach (var pair in pairs)
254                 {
255                     var fileState = pair.State;
256                     var file = pair.File;
257                     if (fileState == null)
258                     {
259                         //This is a new file                        
260                         var createState = FileState.CreateFor(file);
261                         _persistenceAgent.Post(createState.Create);                        
262                     }
263                     else if (file == null)
264                     {
265                         //This file was deleted while we were down. We should mark it as deleted
266                         //We have to go through UpdateStatus here because the state object we are using
267                         //was created by a different ORM session.
268                         _persistenceAgent.Post(() => UpdateStatusDirect(fileState.Id, FileStatus.Deleted));
269                     }
270                     else
271                     {
272                         //This file has a matching state. Need to check for possible changes
273                         //To check for changes, we use the cheap (in CPU terms) SHA1 algorithm
274                         //on the entire file.
275                         
276                         var hashString = file.ComputeShortHash(shortHasher);                        
277                         //TODO: Need a way to attach the hashes to the filestate so we don't
278                         //recalculate them each time a call to calculate has is made
279                         //We can either store them to the filestate or add them to a 
280                         //dictionary
281
282                         //If the hashes don't match the file was changed
283                         if (fileState.ShortHash != hashString)
284                         {
285                             _persistenceAgent.Post(() => UpdateStatusDirect(fileState.Id, FileStatus.Modified));
286                         }
287                     }
288                 }
289             }
290                         
291          
292         }
293         
294
295
296         private int UpdateStatusDirect(Guid id, FileStatus status)
297         {
298             using (log4net.ThreadContext.Stacks["StatusAgent"].Push("UpdateStatusDirect"))
299             {
300
301                 try
302                 {
303                     
304                     using (var connection = GetConnection())
305                     using (
306                         var command = new SQLiteCommand("update FileState set FileStatus= :fileStatus where Id = :id  ",
307                                                         connection))
308                     {                                                
309                         command.Parameters.AddWithValue("fileStatus", status);
310
311                         command.Parameters.AddWithValue("id", id);
312                         
313                         var affected = command.ExecuteNonQuery();
314                         
315                         return affected;
316                     }
317
318                 }
319                 catch (Exception exc)
320                 {
321                     Log.Error(exc.ToString());
322                     throw;
323                 }
324             }
325         }
326         
327         private int UpdateStatusDirect(string path, FileStatus status)
328         {
329             using (log4net.ThreadContext.Stacks["StatusAgent"].Push("UpdateStatusDirect"))
330             {
331
332                 try
333                 {
334
335                     
336                     using (var connection = GetConnection())
337                     using (
338                         var command =
339                             new SQLiteCommand("update FileState set FileStatus= :fileStatus where FilePath = :path COLLATE NOCASE",
340                                               connection))
341                     {
342
343
344                         command.Parameters.AddWithValue("fileStatus", status);
345
346                         command.Parameters.AddWithValue("path", path);
347                         
348                         var affected = command.ExecuteNonQuery();
349                         if (affected == 0)
350                         {
351                             var createdState = FileState.CreateFor(FileInfoExtensions.FromPath(path));
352                             createdState.FileStatus = status;
353                             _persistenceAgent.Post(createdState.Create);
354                         }
355                         return affected;
356                     }
357                 }
358                 catch (Exception exc)
359                 {
360                     Log.Error(exc.ToString());
361                     throw;
362                 }
363             }
364         }
365
366         private int UpdateStatusDirect(string absolutePath, FileStatus fileStatus, FileOverlayStatus overlayStatus)
367         {
368             using (log4net.ThreadContext.Stacks["StatusAgent"].Push("UpdateStatusDirect"))
369             {
370
371                 try
372                 {
373
374                     
375                     using (var connection = GetConnection())
376                     using (
377                         var command =
378                             new SQLiteCommand(
379                                 "update FileState set OverlayStatus= :overlayStatus, FileStatus= :fileStatus where FilePath = :path COLLATE NOCASE ",
380                                 connection))
381                     {
382
383                         command.Parameters.AddWithValue("path", absolutePath);
384                         command.Parameters.AddWithValue("fileStatus", fileStatus);
385                         command.Parameters.AddWithValue("overlayStatus", overlayStatus);
386                         
387                         var affected = command.ExecuteNonQuery();
388                         if (affected == 0)
389                         {
390                             var createdState=FileState.CreateFor(FileInfoExtensions.FromPath(absolutePath));
391                             createdState.FileStatus = fileStatus;
392                             createdState.OverlayStatus = overlayStatus;
393                             _persistenceAgent.Post(createdState.Create);  
394                         }
395                         return affected;
396                     }
397                 }
398                 catch (Exception exc)
399                 {
400                     Log.Error(exc.ToString());
401                     throw;
402                 }
403             }
404         }
405         
406
407
408         public string BlockHash { get; set; }
409
410         public int BlockSize { get; set; }
411         public void ChangeRoots(string oldPath, string newPath)
412         {
413             if (String.IsNullOrWhiteSpace(oldPath))
414                 throw new ArgumentNullException("oldPath");
415             if (!Path.IsPathRooted(oldPath))
416                 throw new ArgumentException("oldPath must be an absolute path", "oldPath");
417             if (string.IsNullOrWhiteSpace(newPath))
418                 throw new ArgumentNullException("newPath");
419             if (!Path.IsPathRooted(newPath))
420                 throw new ArgumentException("newPath must be an absolute path", "newPath");
421             Contract.EndContractBlock();
422
423             FileState.ChangeRootPath(oldPath,newPath);
424
425         }
426
427
428
429         private readonly string _pithosDataPath;
430
431
432         public FileState GetStateByFilePath(string path)
433         {
434             if (String.IsNullOrWhiteSpace(path))
435                 throw new ArgumentNullException("path");
436             if (!Path.IsPathRooted(path))
437                 throw new ArgumentException("The path must be rooted", "path");
438             Contract.EndContractBlock();
439
440             try
441             {
442                 
443                 using (var connection = GetConnection())
444                 using (var command = new SQLiteCommand("select Id, FilePath, OverlayStatus,FileStatus ,Checksum ,ShortHash,Version    ,VersionTimeStamp,IsShared   ,SharedBy   ,ShareWrite  from FileState where FilePath=:path COLLATE NOCASE", connection))
445                 {
446                     
447                     command.Parameters.AddWithValue("path", path);
448                     
449                     using (var reader = command.ExecuteReader())
450                     {
451                         if (reader.Read())
452                         {
453                             //var values = new object[reader.FieldCount];
454                             //reader.GetValues(values);
455                             var state = new FileState
456                                             {
457                                                 Id = reader.GetGuid(0),
458                                                 FilePath = reader.IsDBNull(1)?"":reader.GetString(1),
459                                                 OverlayStatus =reader.IsDBNull(2)?FileOverlayStatus.Unversioned: (FileOverlayStatus) reader.GetInt64(2),
460                                                 FileStatus = reader.IsDBNull(3)?FileStatus.Missing:(FileStatus) reader.GetInt64(3),
461                                                 Checksum = reader.IsDBNull(4)?"":reader.GetString(4),
462                                                 ShortHash= reader.IsDBNull(5)?"":reader.GetString(5),
463                                                 Version = reader.IsDBNull(6)?default(long):reader.GetInt64(6),
464                                                 VersionTimeStamp = reader.IsDBNull(7)?default(DateTime):reader.GetDateTime(7),
465                                                 IsShared = !reader.IsDBNull(8) && reader.GetBoolean(8),
466                                                 SharedBy = reader.IsDBNull(9)?"":reader.GetString(9),
467                                                 ShareWrite = !reader.IsDBNull(10) && reader.GetBoolean(10)
468                                             };
469 /*
470                             var state = new FileState
471                                             {
472                                                 Id = (Guid) values[0],
473                                                 FilePath = (string) values[1],
474                                                 OverlayStatus = (FileOverlayStatus) (long)values[2],
475                                                 FileStatus = (FileStatus) (long)values[3],
476                                                 Checksum = (string) values[4],
477                                                 Version = (long?) values[5],
478                                                 VersionTimeStamp = (DateTime?) values[6],
479                                                 IsShared = (long)values[7] == 1,
480                                                 SharedBy = (string) values[8],
481                                                 ShareWrite = (long)values[9] == 1
482                                             };
483 */
484                             return state;
485                         }
486                         else
487                         {
488                             return null;
489                         }
490
491                     }                    
492                 }
493             }
494             catch (Exception exc)
495             {
496                 Log.ErrorFormat(exc.ToString());
497                 throw;
498             }            
499         }
500
501         public FileOverlayStatus GetFileOverlayStatus(string path)
502         {
503             if (String.IsNullOrWhiteSpace(path))
504                 throw new ArgumentNullException("path");
505             if (!Path.IsPathRooted(path))
506                 throw new ArgumentException("The path must be rooted", "path");
507             Contract.EndContractBlock();
508
509             try
510             {
511                 
512                 using (var connection = GetConnection())
513                 using (var command = new SQLiteCommand("select OverlayStatus from FileState where FilePath=:path  COLLATE NOCASE", connection))
514                 {
515                     
516                     command.Parameters.AddWithValue("path", path);
517                     
518                     var s = command.ExecuteScalar();
519                     return (FileOverlayStatus) Convert.ToInt32(s);
520                 }
521             }
522             catch (Exception exc)
523             {
524                 Log.ErrorFormat(exc.ToString());
525                 return FileOverlayStatus.Unversioned;
526             }
527         }
528
529         private string GetConnectionString()
530         {
531             var connectionString = String.Format(@"Data Source={0}\pithos.db;Version=3;Enlist=N;Pooling=True", _pithosDataPath);
532             return connectionString;
533         }
534
535         private SQLiteConnection GetConnection()
536         {
537             var connectionString = GetConnectionString();
538             var connection = new SQLiteConnection(connectionString);
539             connection.Open();
540             using(var cmd =connection.CreateCommand())
541             {
542                 cmd.CommandText = "PRAGMA journal_mode=WAL";
543                 cmd.ExecuteNonQuery();
544             }
545             return connection;
546         }
547
548        /* public void SetFileOverlayStatus(string path, FileOverlayStatus overlayStatus)
549         {
550             if (String.IsNullOrWhiteSpace(path))
551                 throw new ArgumentNullException("path");
552             if (!Path.IsPathRooted(path))
553                 throw new ArgumentException("The path must be rooted","path");
554             Contract.EndContractBlock();
555
556             _persistenceAgent.Post(() => FileState.StoreOverlayStatus(path,overlayStatus));
557         }*/
558
559         public Task SetFileOverlayStatus(string path, FileOverlayStatus overlayStatus, string shortHash = null)
560         {
561             if (String.IsNullOrWhiteSpace(path))
562                 throw new ArgumentNullException("path");
563             if (!Path.IsPathRooted(path))
564                 throw new ArgumentException("The path must be rooted","path");
565             Contract.EndContractBlock();
566
567             return _persistenceAgent.PostAndAwait(() => FileState.StoreOverlayStatus(path,overlayStatus,shortHash));
568         }
569
570        /* public void RenameFileOverlayStatus(string oldPath, string newPath)
571         {
572             if (String.IsNullOrWhiteSpace(oldPath))
573                 throw new ArgumentNullException("oldPath");
574             if (!Path.IsPathRooted(oldPath))
575                 throw new ArgumentException("The oldPath must be rooted", "oldPath");
576             if (String.IsNullOrWhiteSpace(newPath))
577                 throw new ArgumentNullException("newPath");
578             if (!Path.IsPathRooted(newPath))
579                 throw new ArgumentException("The newPath must be rooted", "newPath");
580             Contract.EndContractBlock();
581
582             _persistenceAgent.Post(() =>FileState.RenameState(oldPath, newPath));
583         }*/
584
585         public void SetFileState(string path, FileStatus fileStatus, FileOverlayStatus overlayStatus, string localFileMissingFromServer)
586         {
587             if (String.IsNullOrWhiteSpace(path))
588                 throw new ArgumentNullException("path");
589             if (!Path.IsPathRooted(path))
590                 throw new ArgumentException("The path must be rooted", "path");
591             Contract.EndContractBlock();
592
593             Debug.Assert(!path.Contains(FolderConstants.CacheFolder));
594             Debug.Assert(!path.EndsWith(".ignore"));
595
596             _persistenceAgent.Post(() => UpdateStatusDirect(path, fileStatus, overlayStatus));
597         }
598
599 /*
600         public void StoreInfo(string path,ObjectInfo objectInfo)
601         {
602             if (String.IsNullOrWhiteSpace(path))
603                 throw new ArgumentNullException("path");
604             if (!Path.IsPathRooted(path))
605                 throw new ArgumentException("The path must be rooted", "path");            
606             if (objectInfo == null)
607                 throw new ArgumentNullException("objectInfo", "objectInfo can't be empty");
608             Contract.EndContractBlock();
609
610             _persistenceAgent.Post(() =>
611             {
612                 var filePath = path.ToLower();
613                 //Load the existing files state and set its properties in one session            
614                 using (new SessionScope())
615                 {
616                     //Forgetting to use a sessionscope results in two sessions being created, one by 
617                     //FirstOrDefault and one by Save()
618                     var state =FileState.FindByFilePath(filePath);
619                     
620                     //Create a new empty state object if this is a new file
621                     state = state ?? new FileState();
622
623                     state.FilePath = filePath;
624                     state.Checksum = objectInfo.Hash;
625                     state.Version = objectInfo.Version;
626                     state.VersionTimeStamp = objectInfo.VersionTimestamp;
627
628                     state.FileStatus = FileStatus.Unchanged;
629                     state.OverlayStatus = FileOverlayStatus.Normal;
630                     
631                   
632                     //Do the save
633                     state.Save();
634                 }
635             });
636
637         }
638 */
639         
640         public void StoreInfo(string path, ObjectInfo objectInfo)
641         {
642             if (String.IsNullOrWhiteSpace(path))
643                 throw new ArgumentNullException("path");
644             if (!Path.IsPathRooted(path))
645                 throw new ArgumentException("The path must be rooted", "path");
646             if (objectInfo == null)
647                 throw new ArgumentNullException("objectInfo", "objectInfo can't be empty");
648             Contract.EndContractBlock();
649
650             _persistenceAgent.Post(() => StoreInfoDirect(path, objectInfo));
651
652         }
653
654         private void StoreInfoDirect(string path, ObjectInfo objectInfo)
655         {
656             try
657             {
658                 
659                 using (var connection = GetConnection())
660                 using (var command = new SQLiteCommand(connection))
661                 {
662                     if (StateExists(path, connection))
663                         command.CommandText =
664                             "update FileState set FileStatus= :fileStatus where FilePath = :path  COLLATE NOCASE ";
665                     else
666                     {
667                         command.CommandText =
668                             "INSERT INTO FileState (Id,FilePath,Checksum,Version,VersionTimeStamp,ShortHash,FileStatus,OverlayStatus) VALUES (:id,:path,:checksum,:version,:versionTimeStamp,:shortHash,:fileStatus,:overlayStatus)";
669                         command.Parameters.AddWithValue("id", Guid.NewGuid());
670                     }
671
672                     command.Parameters.AddWithValue("path", path);
673                     command.Parameters.AddWithValue("checksum", objectInfo.Hash);
674                     command.Parameters.AddWithValue("shortHash", "");
675                     command.Parameters.AddWithValue("version", objectInfo.Version);
676                     command.Parameters.AddWithValue("versionTimeStamp",
677                                                     objectInfo.VersionTimestamp);
678                     command.Parameters.AddWithValue("fileStatus", FileStatus.Unchanged);
679                     command.Parameters.AddWithValue("overlayStatus",
680                                                     FileOverlayStatus.Normal);
681
682                     var affected = command.ExecuteNonQuery();
683                     return;
684                 }
685             }
686             catch (Exception exc)
687             {
688                 Log.Error(exc.ToString());
689                 throw;
690             }
691         }
692
693         private bool StateExists(string filePath,SQLiteConnection connection)
694         {
695             using (var command = new SQLiteCommand("Select count(*) from FileState where FilePath=:path  COLLATE NOCASE", connection))
696             {
697                 command.Parameters.AddWithValue("path", filePath);
698                 var result = command.ExecuteScalar();
699                 return ((long)result >= 1);
700             }
701
702         }
703
704         public void SetFileStatus(string path, FileStatus status)
705         {
706             if (String.IsNullOrWhiteSpace(path))
707                 throw new ArgumentNullException("path");
708             if (!Path.IsPathRooted(path))
709                 throw new ArgumentException("The path must be rooted", "path");
710             Contract.EndContractBlock();
711             
712             _persistenceAgent.Post(() => UpdateStatusDirect(path, status));
713         }
714
715         public FileStatus GetFileStatus(string path)
716         {
717             if (String.IsNullOrWhiteSpace(path))
718                 throw new ArgumentNullException("path");
719             if (!Path.IsPathRooted(path))
720                 throw new ArgumentException("The path must be rooted", "path");
721             Contract.EndContractBlock();
722
723             
724             using (var connection = GetConnection())
725             {
726                 var command = new SQLiteCommand("select FileStatus from FileState where FilePath=:path  COLLATE NOCASE", connection);
727                 command.Parameters.AddWithValue("path", path);
728                 
729                 var statusValue = command.ExecuteScalar();
730                 if (statusValue==null)
731                     return FileStatus.Missing;
732                 return (FileStatus)Convert.ToInt32(statusValue);
733             }
734         }
735
736         /// <summary>
737         /// Deletes the status of the specified file
738         /// </summary>
739         /// <param name="path"></param>
740         public void ClearFileStatus(string path)
741         {
742             if (String.IsNullOrWhiteSpace(path))
743                 throw new ArgumentNullException("path");
744             if (!Path.IsPathRooted(path))
745                 throw new ArgumentException("The path must be rooted", "path");
746             Contract.EndContractBlock();
747
748             _persistenceAgent.Post(() => DeleteDirect(path));   
749         }
750
751         /// <summary>
752         /// Deletes the status of the specified folder and all its contents
753         /// </summary>
754         /// <param name="path"></param>
755         public void ClearFolderStatus(string path)
756         {
757             if (String.IsNullOrWhiteSpace(path))
758                 throw new ArgumentNullException("path");
759             if (!Path.IsPathRooted(path))
760                 throw new ArgumentException("The path must be rooted", "path");
761             Contract.EndContractBlock();
762
763             _persistenceAgent.Post(() => DeleteFolderDirect(path));   
764         }
765
766         public IEnumerable<FileState> GetChildren(FileState fileState)
767         {
768             if (fileState == null)
769                 throw new ArgumentNullException("fileState");
770             Contract.EndContractBlock();
771
772             var children = from state in FileState.Queryable
773                            where state.FilePath.StartsWith(fileState.FilePath + "\\")
774                            select state;
775             return children;
776         }
777
778         public void EnsureFileState(string path)
779         {
780             var existingState = GetStateByFilePath(path);
781             if (existingState != null)
782                 return;
783             var fileInfo = FileInfoExtensions.FromPath(path);
784             using (new SessionScope())
785             {
786                 var newState = FileState.CreateFor(fileInfo);
787                 newState.FileStatus=FileStatus.Missing;
788                 _persistenceAgent.PostAndAwait(newState.CreateAndFlush).Wait();
789             }
790
791         }
792
793         private int DeleteDirect(string filePath)
794         {
795             using (log4net.ThreadContext.Stacks["StatusAgent"].Push("DeleteDirect"))
796             {
797
798                 try
799                 {
800
801                     
802                     using (var connection = GetConnection())
803                     {
804                         var command = new SQLiteCommand("delete from FileState where FilePath = :path  COLLATE NOCASE",
805                                                         connection);
806
807                         command.Parameters.AddWithValue("path", filePath);
808                         
809                         var affected = command.ExecuteNonQuery();
810                         return affected;
811                     }
812                 }
813                 catch (Exception exc)
814                 {
815                     Log.Error(exc.ToString());
816                     throw;
817                 }
818             }
819         }
820
821         private int DeleteFolderDirect(string filePath)
822         {
823             using (log4net.ThreadContext.Stacks["StatusAgent"].Push("DeleteDirect"))
824             {
825
826                 try
827                 {
828
829                     
830                     using (var connection = GetConnection())
831                     {
832                         var command = new SQLiteCommand(@"delete from FileState where FilePath = :path or FilePath like :path || '\%'  COLLATE NOCASE",
833                                                         connection);
834
835                         command.Parameters.AddWithValue("path", filePath);
836                         
837                         var affected = command.ExecuteNonQuery();
838                         return affected;
839                     }
840                 }
841                 catch (Exception exc)
842                 {
843                     Log.Error(exc.ToString());
844                     throw;
845                 }
846             }
847         }
848
849         public void UpdateFileChecksum(string path, string shortHash, string checksum)
850         {
851             if (String.IsNullOrWhiteSpace(path))
852                 throw new ArgumentNullException("path");
853             if (!Path.IsPathRooted(path))
854                 throw new ArgumentException("The path must be rooted", "path");            
855             Contract.EndContractBlock();
856
857             _persistenceAgent.Post(() => FileState.UpdateChecksum(path, shortHash,checksum));
858         }
859
860
861         public void CleanupOrphanStates()
862         {
863             //Orphan states are those that do not correspond to an account, ie. their paths
864             //do not start with the root path of any registered account
865
866             var roots=(from account in Settings.Accounts
867                       select account.RootPath).ToList();
868             
869             var allStates = from state in FileState.Queryable
870                 select state.FilePath;
871
872             foreach (var statePath in allStates)
873             {
874                 if (!roots.Any(root=>statePath.StartsWith(root,StringComparison.InvariantCultureIgnoreCase)))
875                     this.DeleteDirect(statePath);
876             }
877         }
878
879         public void CleanupStaleStates(AccountInfo accountInfo, List<ObjectInfo> objectInfos)
880         {
881             if (accountInfo == null)
882                 throw new ArgumentNullException("accountInfo");
883             if (objectInfos == null)
884                 throw new ArgumentNullException("objectInfos");
885             Contract.EndContractBlock();
886             
887
888
889             //Stale states are those that have no corresponding local or server file
890             
891
892             var agent=FileAgent.GetFileAgent(accountInfo);
893
894             var localFiles=agent.EnumerateFiles();
895             var localSet = new HashSet<string>(localFiles);
896
897             //RelativeUrlToFilePath will fail for
898             //infos of accounts, containers which have no Name
899
900             var serverFiles = from info in objectInfos
901                               where info.Name != null
902                               select Path.Combine(accountInfo.AccountPath,info.RelativeUrlToFilePath(accountInfo.UserName));
903             var serverSet = new HashSet<string>(serverFiles);
904
905             var allStates = from state in FileState.Queryable
906                             where state.FilePath.StartsWith(agent.RootPath)
907                             select state.FilePath;
908             var stateSet = new HashSet<string>(allStates);
909             stateSet.ExceptWith(serverSet);
910             stateSet.ExceptWith(localSet);
911
912             foreach (var remainder in stateSet)
913             {
914                 DeleteDirect(remainder);
915             }
916
917             
918         }
919     }
920
921    
922 }