Statistics
| Branch: | Revision:

root / trunk / Pithos.Core / Agents / FileAgent.cs @ 4671d606

History | View | Annotate | Download (22.3 kB)

1
#region
2
/* -----------------------------------------------------------------------
3
 * <copyright file="FileAgent.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.Diagnostics.Contracts;
45
using System.IO;
46
using System.Linq;
47
using System.Reflection;
48
using System.Threading.Tasks;
49
using Pithos.Interfaces;
50
using Pithos.Network;
51
using log4net;
52

    
53
namespace Pithos.Core.Agents
54
{
55
//    [Export]
56
    public class FileAgent
57
    {
58
        private static readonly ILog Log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
59

    
60
        Agent<WorkflowState> _agent;
61
        private FileSystemWatcher _watcher;
62
        private FileSystemWatcherAdapter _adapter;
63

    
64
        //[Import]
65
        public IStatusKeeper StatusKeeper { get; set; }
66

    
67
        public IStatusNotification StatusNotification { get; set; }
68
        //[Import]
69
        public IPithosWorkflow Workflow { get; set; }
70
        //[Import]
71
        public WorkflowAgent WorkflowAgent { get; set; }
72

    
73
        private AccountInfo AccountInfo { get; set; }
74

    
75
        internal string RootPath { get;  set; }
76
        
77
        private FileEventIdleBatch _eventIdleBatch;
78

    
79
        public TimeSpan IdleTimeout { get; set; }
80

    
81

    
82
        private void ProcessBatchedEvents(Dictionary<string, FileSystemEventArgs[]> fileEvents)
83
        {
84
            StatusNotification.SetPithosStatus(PithosStatus.LocalSyncing,String.Format("Uploading {0} files",fileEvents.Count));
85
            foreach (var fileEvent in fileEvents)
86
            {
87
                var filePath = fileEvent.Key;
88
                var changes = fileEvent.Value;
89
                
90
                if (Ignore(filePath)) continue;
91
                                
92
                foreach (var change in changes)
93
                {
94
                    if (change.ChangeType == WatcherChangeTypes.Renamed)
95
                    {
96
                        var rename = (MovedEventArgs) change;
97
                        _agent.Post(new WorkflowState(change)
98
                                        {
99
                                            AccountInfo = AccountInfo,
100
                                            OldPath = rename.OldFullPath,
101
                                            OldFileName = Path.GetFileName(rename.OldName),
102
                                            Path = rename.FullPath,
103
                                            FileName = Path.GetFileName(rename.Name),
104
                                            TriggeringChange = rename.ChangeType
105
                                        });
106
                    }
107
                    else
108
                        _agent.Post(new WorkflowState(change)
109
                        {
110
                            AccountInfo = AccountInfo,
111
                            Path = change.FullPath,
112
                            FileName = Path.GetFileName(change.Name),
113
                            TriggeringChange = change.ChangeType
114
                        });                        
115
                }
116
            }
117
            StatusNotification.SetPithosStatus(PithosStatus.LocalComplete);
118
        }
119

    
120
        public void Start(AccountInfo accountInfo,string rootPath)
121
        {
122
            if (accountInfo==null)
123
                throw new ArgumentNullException("accountInfo");
124
            if (String.IsNullOrWhiteSpace(rootPath))
125
                throw new ArgumentNullException("rootPath");
126
            if (!Path.IsPathRooted(rootPath))
127
                throw new ArgumentException("rootPath must be an absolute path","rootPath");
128
            if (IdleTimeout == null)
129
                throw new InvalidOperationException("IdleTimeout must have a valid value");
130
            Contract.EndContractBlock();
131

    
132
            AccountInfo = accountInfo;
133
            RootPath = rootPath;
134

    
135
            _eventIdleBatch = new FileEventIdleBatch((int)IdleTimeout.TotalMilliseconds, ProcessBatchedEvents);
136

    
137
            _watcher = new FileSystemWatcher(rootPath) {IncludeSubdirectories = true,InternalBufferSize=8*4096};
138
            _adapter = new FileSystemWatcherAdapter(_watcher);
139

    
140
            _adapter.Changed += OnFileEvent;
141
            _adapter.Created += OnFileEvent;
142
            _adapter.Deleted += OnFileEvent;
143
            //_adapter.Renamed += OnRenameEvent;
144
            _adapter.Moved += OnMoveEvent;
145
            _watcher.EnableRaisingEvents = true;
146

    
147

    
148
            _agent = Agent<WorkflowState>.Start(inbox =>
149
            {
150
                Action loop = null;
151
                loop = () =>
152
                {
153
                    var message = inbox.Receive();
154
                    var process=message.Then(Process,inbox.CancellationToken);                    
155
                    inbox.LoopAsync(process,loop,ex=>
156
                        Log.ErrorFormat("[ERROR] File Event Processing:\r{0}", ex));
157
                };
158
                loop();
159
            });
160
        }
161

    
162
        private Task<object> Process(WorkflowState state)
163
        {
164
            if (state==null)
165
                throw new ArgumentNullException("state");
166
            Contract.EndContractBlock();
167

    
168
            if (Ignore(state.Path))
169
                return CompletedTask<object>.Default;
170

    
171
            var networkState = NetworkGate.GetNetworkState(state.Path);
172
            //Skip if the file is already being downloaded or uploaded and 
173
            //the change is create or modify
174
            if (networkState != NetworkOperation.None &&
175
                (
176
                    state.TriggeringChange == WatcherChangeTypes.Created ||
177
                    state.TriggeringChange == WatcherChangeTypes.Changed
178
                ))
179
                return CompletedTask<object>.Default;
180

    
181
            try
182
            {
183
                //StatusKeeper.EnsureFileState(state.Path);
184
                
185
                UpdateFileStatus(state);
186
                UpdateOverlayStatus(state);
187
                UpdateFileChecksum(state);
188
                WorkflowAgent.Post(state);
189
            }
190
            catch (IOException exc)
191
            {
192
                if (File.Exists(state.Path))
193
                {
194
                    Log.WarnFormat("File access error occured, retrying {0}\n{1}", state.Path, exc);
195
                    _agent.Post(state);
196
                }
197
                else
198
                {
199
                    Log.WarnFormat("File {0} does not exist. Will be ignored\n{1}", state.Path, exc);
200
                }
201
            }
202
            catch (Exception exc)
203
            {
204
                Log.WarnFormat("Error occured while indexing{0}. The file will be skipped\n{1}",
205
                               state.Path, exc);
206
            }
207
            return CompletedTask<object>.Default;
208
        }
209

    
210
        public bool Pause
211
        {
212
            get { return _watcher == null || !_watcher.EnableRaisingEvents; }
213
            set
214
            {
215
                if (_watcher != null)
216
                    _watcher.EnableRaisingEvents = !value;                
217
            }
218
        }
219

    
220
        public string CachePath { get; set; }
221

    
222
        /*private List<string> _selectivePaths = new List<string>();
223
        public List<string> SelectivePaths
224
        {
225
            get { return _selectivePaths; }
226
            set { _selectivePaths = value; }
227
        }
228
*/
229
        public Selectives Selectives { get; set; }
230

    
231

    
232
        public void Post(WorkflowState workflowState)
233
        {
234
            if (workflowState == null)
235
                throw new ArgumentNullException("workflowState");
236
            Contract.EndContractBlock();
237

    
238
            _agent.Post(workflowState);
239
        }
240

    
241
        public void Stop()
242
        {
243
            if (_watcher != null)
244
            {
245
                _watcher.Dispose();
246
            }
247
            _watcher = null;
248

    
249
            if (_agent!=null)
250
                _agent.Stop();
251
        }
252

    
253
        // Enumerate all files in the Pithos directory except those in the Fragment folder
254
        // and files with a .ignore extension
255
        public IEnumerable<string> EnumerateFiles(string searchPattern="*")
256
        {
257
            var monitoredFiles = from filePath in Directory.EnumerateFileSystemEntries(RootPath, searchPattern, SearchOption.AllDirectories)
258
                                 where !Ignore(filePath)
259
                                 select filePath;
260
            return monitoredFiles;
261
        }
262

    
263
        public IEnumerable<FileInfo> EnumerateFileInfos(string searchPattern="*")
264
        {
265
            var rootDir = new DirectoryInfo(RootPath);
266
            var monitoredFiles = from file in rootDir.EnumerateFiles(searchPattern, SearchOption.AllDirectories)
267
                                 where !Ignore(file.FullName)
268
                                 select file;
269
            return monitoredFiles;
270
        }                
271

    
272
        public IEnumerable<string> EnumerateFilesAsRelativeUrls(string searchPattern="*")
273
        {
274
            var rootDir = new DirectoryInfo(RootPath);
275
            var monitoredFiles = from file in rootDir.EnumerateFiles(searchPattern, SearchOption.AllDirectories)
276
                                 where !Ignore(file.FullName)
277
                                 select file.AsRelativeUrlTo(RootPath);
278
            return monitoredFiles;
279
        }                
280

    
281
        public IEnumerable<string> EnumerateFilesSystemInfosAsRelativeUrls(string searchPattern="*")
282
        {
283
            var rootDir = new DirectoryInfo(RootPath);
284
            var monitoredFiles = from file in rootDir.EnumerateFileSystemInfos(searchPattern, SearchOption.AllDirectories)
285
                                 where !Ignore(file.FullName)
286
                                 select file.AsRelativeUrlTo(RootPath);
287
            return monitoredFiles;
288
        }                
289

    
290

    
291
        
292

    
293
        private bool Ignore(string filePath)
294
        {
295
            //Ignore all first-level directories and files (ie at the container folders level)
296
            if (FoundBelowRoot(filePath, RootPath,1))
297
                return true;
298

    
299
            //Ignore first-level items under the "others" folder (ie at the accounts folders level).
300
            var othersPath = Path.Combine(RootPath, FolderConstants.OthersFolder);
301
            if (FoundBelowRoot(filePath, othersPath,1))
302
                return true;
303

    
304
            //Ignore second-level (container) folders under the "others" folder (ie at the container folders level). 
305
            if (FoundBelowRoot(filePath, othersPath,2))
306
                return true;            
307

    
308

    
309
            //Ignore anything happening in the cache path
310
            if (filePath.StartsWith(CachePath))
311
                return true;
312
            if (_ignoreFiles.ContainsKey(filePath.ToLower()))
313
                return true;
314
            
315
            //If selective sync is enabled, propagate folder events
316
            if (Selectives.IsSelectiveEnabled(AccountInfo.AccountKey) && Directory.Exists(filePath))
317
                return false;
318
            //Ignore if selective synchronization is defined, 
319
            //And the target file is not below any of the selective paths
320
            return !Selectives.IsSelected(AccountInfo, filePath);
321
        }
322

    
323
/*        private static bool FoundInRoot(string filePath, string rootPath)
324
        {
325
            //var rootDirectory = new DirectoryInfo(rootPath);
326

    
327
            //If the paths are equal, return true
328
            if (filePath.Equals(rootPath, StringComparison.InvariantCultureIgnoreCase))
329
                return true;
330

    
331
            //If the filepath is below the root path
332
            if (filePath.StartsWith(rootPath,StringComparison.InvariantCulture))
333
            {
334
                //Get the relative path
335
                var relativePath = filePath.Substring(rootPath.Length + 1);
336
                //If the relativePath does NOT contains a path separator, we found a match
337
                return (!relativePath.Contains(@"\"));
338
            }
339

    
340
            //If the filepath is not under the root path, return false
341
            return false;            
342
        }*/
343

    
344

    
345
        private static bool FoundBelowRoot(string filePath, string rootPath,int level)
346
        {
347
            //var rootDirectory = new DirectoryInfo(rootPath);
348

    
349
            //If the paths are equal, return true
350
            if (filePath.Equals(rootPath, StringComparison.InvariantCultureIgnoreCase))
351
                return true;
352

    
353
            //If the filepath is below the root path
354
            if (filePath.StartsWith(rootPath,StringComparison.InvariantCulture))
355
            {
356
                //Get the relative path
357
                var relativePath = filePath.Substring(rootPath.Length + 1);
358
                //If the relativePath does NOT contains a path separator, we found a match
359
                var levels=relativePath.ToCharArray().Count(c=>c=='\\')+1;                
360
                return levels==level;
361
            }
362

    
363
            //If the filepath is not under the root path, return false
364
            return false;            
365
        }
366

    
367
        //Post a Change message for all events except rename
368
        void OnFileEvent(object sender, FileSystemEventArgs e)
369
        {
370
            //Ignore events that affect the cache folder
371
            var filePath = e.FullPath;
372
            if (Ignore(filePath)) 
373
                return;
374
            _eventIdleBatch.Post(e);
375
        }
376

    
377

    
378
/*
379
        //Post a Change message for renames containing the old and new names
380
        void OnRenameEvent(object sender, RenamedEventArgs e)
381
        {
382
            var oldFullPath = e.OldFullPath;
383
            var fullPath = e.FullPath;
384
            if (Ignore(oldFullPath) || Ignore(fullPath))
385
                return;
386

    
387
            _agent.Post(new WorkflowState
388
            {
389
                AccountInfo=AccountInfo,
390
                OldPath = oldFullPath,
391
                OldFileName = e.OldName,
392
                Path = fullPath,
393
                FileName = e.Name,
394
                TriggeringChange = e.ChangeType
395
            });
396
        }
397
*/
398

    
399
        //Post a Change message for moves containing the old and new names
400
        void OnMoveEvent(object sender, MovedEventArgs e)
401
        {
402
            var oldFullPath = e.OldFullPath;
403
            var fullPath = e.FullPath;
404
            if (Ignore(oldFullPath) || Ignore(fullPath))
405
                return;
406

    
407
            _eventIdleBatch.Post(e);
408
        }
409

    
410

    
411

    
412
        private Dictionary<WatcherChangeTypes, FileStatus> _statusDict = new Dictionary<WatcherChangeTypes, FileStatus>
413
                                                                             {
414
            {WatcherChangeTypes.Created,FileStatus.Created},
415
            {WatcherChangeTypes.Changed,FileStatus.Modified},
416
            {WatcherChangeTypes.Deleted,FileStatus.Deleted},
417
            {WatcherChangeTypes.Renamed,FileStatus.Renamed}
418
        };
419

    
420
        private Dictionary<string, string> _ignoreFiles=new Dictionary<string, string>();
421

    
422
        private WorkflowState UpdateFileStatus(WorkflowState state)
423
        {
424
            if (state==null)
425
                throw new ArgumentNullException("state");
426
            if (String.IsNullOrWhiteSpace(state.Path))
427
                throw new ArgumentException("The state's Path can't be empty","state");
428
            Contract.EndContractBlock();
429

    
430
            var path = state.Path;
431
            var status = _statusDict[state.TriggeringChange];
432
            var oldStatus = Workflow.StatusKeeper.GetFileStatus(path);
433
            if (status == oldStatus)
434
            {
435
                state.Status = status;
436
                state.Skip = true;
437
                return state;
438
            }
439
            if (state.Status == FileStatus.Renamed)
440
                Workflow.ClearFileStatus(path);
441

    
442
            state.Status = Workflow.SetFileStatus(path, status);
443
            return state;
444
        }
445

    
446
        private WorkflowState UpdateOverlayStatus(WorkflowState state)
447
        {
448
            if (state==null)
449
                throw new ArgumentNullException("state");
450
            Contract.EndContractBlock();
451

    
452
            if (state.Skip)
453
                return state;
454

    
455
            switch (state.Status)
456
            {
457
                case FileStatus.Created:
458
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Modified,state.ShortHash);
459
                    break;
460
                case FileStatus.Modified:
461
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Modified,state.ShortHash);
462
                    break;
463
                case FileStatus.Deleted:
464
                    //this.StatusAgent.RemoveFileOverlayStatus(state.Path);
465
                    break;
466
                case FileStatus.Renamed:
467
                    this.StatusKeeper.ClearFileStatus(state.OldPath);
468
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Modified,state.ShortHash);
469
                    break;
470
                case FileStatus.Unchanged:
471
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Normal,state.ShortHash);
472
                    break;
473
            }
474

    
475
            if (state.Status == FileStatus.Deleted)
476
                NativeMethods.RaiseChangeNotification(Path.GetDirectoryName(state.Path));
477
            else
478
                NativeMethods.RaiseChangeNotification(state.Path);
479
            return state;
480
        }
481

    
482

    
483
        private WorkflowState UpdateFileChecksum(WorkflowState state)
484
        {
485
            if (state.Skip)
486
                return state;
487

    
488
            if (state.Status == FileStatus.Deleted)
489
                return state;
490

    
491
            var path = state.Path;
492
            //Skip calculation for folders
493
            if (Directory.Exists(path))
494
                return state;
495

    
496
            var info = new FileInfo(path);
497

    
498
            using (StatusNotification.GetNotifier("Hashing {0}", "Finished Hashing {0}", info.Name))
499
            {
500

    
501
                var shortHash = info.ComputeShortHash();
502

    
503
                string merkleHash = info.CalculateHash(StatusKeeper.BlockSize, StatusKeeper.BlockHash);
504
                StatusKeeper.UpdateFileChecksum(path, shortHash, merkleHash);
505

    
506
                state.Hash = merkleHash;
507
                return state;
508
            }
509
        }
510

    
511
        //Does the file exist in the container's local folder?
512
        public bool Exists(string relativePath)
513
        {
514
            if (String.IsNullOrWhiteSpace(relativePath))
515
                throw new ArgumentNullException("relativePath");
516
            //A RootPath must be set before calling this method
517
            if (String.IsNullOrWhiteSpace(RootPath))
518
                throw new InvalidOperationException("RootPath was not set");
519
            Contract.EndContractBlock();
520
            //Create the absolute path by combining the RootPath with the relativePath
521
            var absolutePath=Path.Combine(RootPath, relativePath);
522
            //Is this a valid file?
523
            if (File.Exists(absolutePath))
524
                return true;
525
            //Or a directory?
526
            if (Directory.Exists(absolutePath))
527
                return true;
528
            //Fail if it is neither
529
            return false;
530
        }
531

    
532
        public static FileAgent GetFileAgent(AccountInfo accountInfo)
533
        {
534
            return GetFileAgent(accountInfo.AccountPath);
535
        }
536

    
537
        public static FileAgent GetFileAgent(string rootPath)
538
        {
539
            return AgentLocator<FileAgent>.Get(rootPath.ToLower());
540
        }
541

    
542

    
543
        public FileSystemInfo GetFileSystemInfo(string relativePath)
544
        {
545
            if (String.IsNullOrWhiteSpace(relativePath))
546
                throw new ArgumentNullException("relativePath");
547
            //A RootPath must be set before calling this method
548
            if (String.IsNullOrWhiteSpace(RootPath))
549
                throw new InvalidOperationException("RootPath was not set");            
550
            Contract.EndContractBlock();            
551

    
552
            var absolutePath = Path.Combine(RootPath, relativePath);
553

    
554
            if (Directory.Exists(absolutePath))
555
                return new DirectoryInfo(absolutePath).WithProperCapitalization();
556
            else
557
                return new FileInfo(absolutePath).WithProperCapitalization();
558
            
559
        }
560

    
561
        public void Delete(string relativePath)
562
        {
563
            var absolutePath = Path.Combine(RootPath, relativePath).ToLower();
564
            if (Log.IsDebugEnabled)
565
                Log.DebugFormat("Deleting {0}", absolutePath);
566
            if (File.Exists(absolutePath))
567
            {    
568
                try
569
                {
570
                    File.Delete(absolutePath);
571
                }
572
                //The file may have been deleted by another thread. Just ignore the relevant exception
573
                catch (FileNotFoundException) { }
574
            }
575
            else if (Directory.Exists(absolutePath))
576
            {
577
                try
578
                {
579
                    Directory.Delete(absolutePath, true);
580
                }
581
                //The directory may have been deleted by another thread. Just ignore the relevant exception
582
                catch (DirectoryNotFoundException){}                
583
            }
584
        
585
            //_ignoreFiles[absolutePath] = absolutePath;                
586
            StatusKeeper.ClearFileStatus(absolutePath);
587
        }
588
    }
589
}