Statistics
| Branch: | Revision:

root / trunk / Pithos.Core / Agents / FileAgent.cs @ e0f69809

History | View | Annotate | Download (22.6 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
            if (IgnorePaths(filePath)) return true;
296

    
297

    
298
            //If selective sync is enabled, propagate folder events
299
            if (Selectives.IsSelectiveEnabled(AccountInfo.AccountKey) && Directory.Exists(filePath))
300
                return false;
301
            //Ignore if selective synchronization is defined, 
302
            //And the target file is not below any of the selective paths
303
            return !Selectives.IsSelected(AccountInfo, filePath);
304
        }
305

    
306
        private bool IgnorePaths(string filePath)
307
        {
308
//Ignore all first-level directories and files (ie at the container folders level)
309
            if (FoundBelowRoot(filePath, RootPath, 1))
310
                return true;
311

    
312
            //Ignore first-level items under the "others" folder (ie at the accounts folders level).
313
            var othersPath = Path.Combine(RootPath, FolderConstants.OthersFolder);
314
            if (FoundBelowRoot(filePath, othersPath, 1))
315
                return true;
316

    
317
            //Ignore second-level (container) folders under the "others" folder (ie at the container folders level). 
318
            if (FoundBelowRoot(filePath, othersPath, 2))
319
                return true;
320

    
321

    
322
            //Ignore anything happening in the cache path
323
            if (filePath.StartsWith(CachePath))
324
                return true;
325
            if (_ignoreFiles.ContainsKey(filePath.ToLower()))
326
                return true;
327
            return false;
328
        }
329

    
330
/*        private static bool FoundInRoot(string filePath, string rootPath)
331
        {
332
            //var rootDirectory = new DirectoryInfo(rootPath);
333

    
334
            //If the paths are equal, return true
335
            if (filePath.Equals(rootPath, StringComparison.InvariantCultureIgnoreCase))
336
                return true;
337

    
338
            //If the filepath is below the root path
339
            if (filePath.StartsWith(rootPath,StringComparison.InvariantCulture))
340
            {
341
                //Get the relative path
342
                var relativePath = filePath.Substring(rootPath.Length + 1);
343
                //If the relativePath does NOT contains a path separator, we found a match
344
                return (!relativePath.Contains(@"\"));
345
            }
346

    
347
            //If the filepath is not under the root path, return false
348
            return false;            
349
        }*/
350

    
351

    
352
        private static bool FoundBelowRoot(string filePath, string rootPath,int level)
353
        {
354
            //var rootDirectory = new DirectoryInfo(rootPath);
355

    
356
            //If the paths are equal, return true
357
            if (filePath.Equals(rootPath, StringComparison.InvariantCultureIgnoreCase))
358
                return true;
359

    
360
            //If the filepath is below the root path
361
            if (filePath.StartsWith(rootPath,StringComparison.InvariantCulture))
362
            {
363
                //Get the relative path
364
                var relativePath = filePath.Substring(rootPath.Length + 1);
365
                //If the relativePath does NOT contains a path separator, we found a match
366
                var levels=relativePath.ToCharArray().Count(c=>c=='\\')+1;                
367
                return levels==level;
368
            }
369

    
370
            //If the filepath is not under the root path, return false
371
            return false;            
372
        }
373

    
374
        //Post a Change message for all events except rename
375
        void OnFileEvent(object sender, FileSystemEventArgs e)
376
        {
377
            //Ignore events that affect the cache folder
378
            var filePath = e.FullPath;
379
            if (Ignore(filePath)) 
380
                return;
381
            _eventIdleBatch.Post(e);
382
        }
383

    
384

    
385
/*
386
        //Post a Change message for renames containing the old and new names
387
        void OnRenameEvent(object sender, RenamedEventArgs e)
388
        {
389
            var oldFullPath = e.OldFullPath;
390
            var fullPath = e.FullPath;
391
            if (Ignore(oldFullPath) || Ignore(fullPath))
392
                return;
393

    
394
            _agent.Post(new WorkflowState
395
            {
396
                AccountInfo=AccountInfo,
397
                OldPath = oldFullPath,
398
                OldFileName = e.OldName,
399
                Path = fullPath,
400
                FileName = e.Name,
401
                TriggeringChange = e.ChangeType
402
            });
403
        }
404
*/
405

    
406
        //Post a Change message for moves containing the old and new names
407
        void OnMoveEvent(object sender, MovedEventArgs e)
408
        {
409
            var oldFullPath = e.OldFullPath;
410
            var fullPath = e.FullPath;
411
            
412
            //If the source path is one of the ignored folders, ignore
413
            if (IgnorePaths(oldFullPath)) 
414
                return;
415

    
416
            //Ignore takes into account Selective Sync
417
            if (Ignore(fullPath))
418
                return;
419

    
420
            _eventIdleBatch.Post(e);
421
        }
422

    
423

    
424

    
425
        private Dictionary<WatcherChangeTypes, FileStatus> _statusDict = new Dictionary<WatcherChangeTypes, FileStatus>
426
                                                                             {
427
            {WatcherChangeTypes.Created,FileStatus.Created},
428
            {WatcherChangeTypes.Changed,FileStatus.Modified},
429
            {WatcherChangeTypes.Deleted,FileStatus.Deleted},
430
            {WatcherChangeTypes.Renamed,FileStatus.Renamed}
431
        };
432

    
433
        private Dictionary<string, string> _ignoreFiles=new Dictionary<string, string>();
434

    
435
        private WorkflowState UpdateFileStatus(WorkflowState state)
436
        {
437
            if (state==null)
438
                throw new ArgumentNullException("state");
439
            if (String.IsNullOrWhiteSpace(state.Path))
440
                throw new ArgumentException("The state's Path can't be empty","state");
441
            Contract.EndContractBlock();
442

    
443
            var path = state.Path;
444
            var status = _statusDict[state.TriggeringChange];
445
            var oldStatus = Workflow.StatusKeeper.GetFileStatus(path);
446
            if (status == oldStatus)
447
            {
448
                state.Status = status;
449
                state.Skip = true;
450
                return state;
451
            }
452
            if (state.Status == FileStatus.Renamed)
453
                Workflow.ClearFileStatus(path);
454

    
455
            state.Status = Workflow.SetFileStatus(path, status);
456
            return state;
457
        }
458

    
459
        private WorkflowState UpdateOverlayStatus(WorkflowState state)
460
        {
461
            if (state==null)
462
                throw new ArgumentNullException("state");
463
            Contract.EndContractBlock();
464

    
465
            if (state.Skip)
466
                return state;
467

    
468
            switch (state.Status)
469
            {
470
                case FileStatus.Created:
471
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Modified,state.ShortHash);
472
                    break;
473
                case FileStatus.Modified:
474
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Modified,state.ShortHash);
475
                    break;
476
                case FileStatus.Deleted:
477
                    //this.StatusAgent.RemoveFileOverlayStatus(state.Path);
478
                    break;
479
                case FileStatus.Renamed:
480
                    this.StatusKeeper.ClearFileStatus(state.OldPath);
481
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Modified,state.ShortHash);
482
                    break;
483
                case FileStatus.Unchanged:
484
                    this.StatusKeeper.SetFileOverlayStatus(state.Path, FileOverlayStatus.Normal,state.ShortHash);
485
                    break;
486
            }
487

    
488
            if (state.Status == FileStatus.Deleted)
489
                NativeMethods.RaiseChangeNotification(Path.GetDirectoryName(state.Path));
490
            else
491
                NativeMethods.RaiseChangeNotification(state.Path);
492
            return state;
493
        }
494

    
495

    
496
        private WorkflowState UpdateFileChecksum(WorkflowState state)
497
        {
498
            if (state.Skip)
499
                return state;
500

    
501
            if (state.Status == FileStatus.Deleted)
502
                return state;
503

    
504
            var path = state.Path;
505
            //Skip calculation for folders
506
            if (Directory.Exists(path))
507
                return state;
508

    
509
            var info = new FileInfo(path);
510

    
511
            using (StatusNotification.GetNotifier("Hashing {0}", "Finished Hashing {0}", info.Name))
512
            {
513

    
514
                var shortHash = info.ComputeShortHash();
515

    
516
                string merkleHash = info.CalculateHash(StatusKeeper.BlockSize, StatusKeeper.BlockHash);
517
                StatusKeeper.UpdateFileChecksum(path, shortHash, merkleHash);
518

    
519
                state.Hash = merkleHash;
520
                return state;
521
            }
522
        }
523

    
524
        //Does the file exist in the container's local folder?
525
        public bool Exists(string relativePath)
526
        {
527
            if (String.IsNullOrWhiteSpace(relativePath))
528
                throw new ArgumentNullException("relativePath");
529
            //A RootPath must be set before calling this method
530
            if (String.IsNullOrWhiteSpace(RootPath))
531
                throw new InvalidOperationException("RootPath was not set");
532
            Contract.EndContractBlock();
533
            //Create the absolute path by combining the RootPath with the relativePath
534
            var absolutePath=Path.Combine(RootPath, relativePath);
535
            //Is this a valid file?
536
            if (File.Exists(absolutePath))
537
                return true;
538
            //Or a directory?
539
            if (Directory.Exists(absolutePath))
540
                return true;
541
            //Fail if it is neither
542
            return false;
543
        }
544

    
545
        public static FileAgent GetFileAgent(AccountInfo accountInfo)
546
        {
547
            return GetFileAgent(accountInfo.AccountPath);
548
        }
549

    
550
        public static FileAgent GetFileAgent(string rootPath)
551
        {
552
            return AgentLocator<FileAgent>.Get(rootPath.ToLower());
553
        }
554

    
555

    
556
        public FileSystemInfo GetFileSystemInfo(string relativePath)
557
        {
558
            if (String.IsNullOrWhiteSpace(relativePath))
559
                throw new ArgumentNullException("relativePath");
560
            //A RootPath must be set before calling this method
561
            if (String.IsNullOrWhiteSpace(RootPath))
562
                throw new InvalidOperationException("RootPath was not set");            
563
            Contract.EndContractBlock();            
564

    
565
            var absolutePath = Path.Combine(RootPath, relativePath);
566

    
567
            if (Directory.Exists(absolutePath))
568
                return new DirectoryInfo(absolutePath).WithProperCapitalization();
569
            else
570
                return new FileInfo(absolutePath).WithProperCapitalization();
571
            
572
        }
573

    
574
        public void Delete(string relativePath)
575
        {
576
            var absolutePath = Path.Combine(RootPath, relativePath).ToLower();
577
            if (Log.IsDebugEnabled)
578
                Log.DebugFormat("Deleting {0}", absolutePath);
579
            if (File.Exists(absolutePath))
580
            {    
581
                try
582
                {
583
                    File.Delete(absolutePath);
584
                }
585
                //The file may have been deleted by another thread. Just ignore the relevant exception
586
                catch (FileNotFoundException) { }
587
            }
588
            else if (Directory.Exists(absolutePath))
589
            {
590
                try
591
                {
592
                    Directory.Delete(absolutePath, true);
593
                }
594
                //The directory may have been deleted by another thread. Just ignore the relevant exception
595
                catch (DirectoryNotFoundException){}                
596
            }
597
        
598
            //_ignoreFiles[absolutePath] = absolutePath;                
599
            StatusKeeper.ClearFileStatus(absolutePath);
600
        }
601
    }
602
}