Statistics
| Branch: | Revision:

root / trunk / Pithos.Core / Agents / WorkflowAgent.cs @ 3c76f045

History | View | Annotate | Download (9.4 kB)

1
// -----------------------------------------------------------------------
2
// <copyright file="WorkflowAgent.cs" company="GRNET">
3
// Copyright 2011 GRNET S.A. All rights reserved.
4
// 
5
// Redistribution and use in source and binary forms, with or
6
// without modification, are permitted provided that the following
7
// conditions are met:
8
// 
9
//   1. Redistributions of source code must retain the above
10
//      copyright notice, this list of conditions and the following
11
//      disclaimer.
12
// 
13
//   2. Redistributions in binary form must reproduce the above
14
//      copyright notice, this list of conditions and the following
15
//      disclaimer in the documentation and/or other materials
16
//      provided with the distribution.
17
// 
18
// THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19
// OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25
// USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26
// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
// POSSIBILITY OF SUCH DAMAGE.
30
// 
31
// The views and conclusions contained in the software and
32
// documentation are those of the authors and should not be
33
// interpreted as representing official policies, either expressed
34
// or implied, of GRNET S.A.
35
// </copyright>
36
// -----------------------------------------------------------------------
37

    
38
using System;
39
using System.Collections.Generic;
40
using System.ComponentModel.Composition;
41
using System.Diagnostics;
42
using System.Diagnostics.Contracts;
43
using System.IO;
44
using System.Linq;
45
using System.Text;
46
using System.Threading.Tasks;
47
using Castle.ActiveRecord;
48
using Pithos.Interfaces;
49
using Pithos.Network;
50
using log4net;
51

    
52
namespace Pithos.Core.Agents
53
{
54
    [Export]
55
    public class WorkflowAgent
56
    {
57
        Agent<WorkflowState> _agent;
58
                
59
        public IStatusNotification StatusNotification { get; set; }
60
        [System.ComponentModel.Composition.Import]
61
        public IStatusKeeper StatusKeeper { get; set; }
62

    
63
        [System.ComponentModel.Composition.Import]
64
        public NetworkAgent NetworkAgent { get; set; }
65

    
66
        private static readonly ILog Log = LogManager.GetLogger("WorkflowAgent");
67

    
68
        public void Start()
69
        {
70
            _agent = Agent<WorkflowState>.Start(inbox =>
71
            {
72
                Action loop = null;
73
                loop = () =>
74
                {
75
                    var message = inbox.Receive();
76
                    var process = message.Then(Process, inbox.CancellationToken);                        
77
                    inbox.LoopAsync(process,loop,ex=>
78
                            Log.ErrorFormat("[ERROR] Synch for {0}:\r{1}", message.Result.FileName, ex));
79
                };
80
                loop();
81
            });
82
        }
83

    
84
        private Task<object> Process(WorkflowState state)
85
        {
86
            var accountInfo = state.AccountInfo;
87
            using (log4net.ThreadContext.Stacks["Workflow"].Push("Process"))
88
            {
89
                try
90
                {
91

    
92
                    if (Log.IsDebugEnabled)
93
                        Log.DebugFormat("State {0} {1} {2}", state.FileName, state.Status, state.TriggeringChange);
94

    
95
                    if (state.Skip)
96
                    {
97
                        if (Log.IsDebugEnabled) Log.DebugFormat("Skipping {0}", state.FileName);
98

    
99
                        return CompletedTask<object>.Default;
100
                    }                    
101

    
102
                    var info = Directory.Exists(state.Path) ? (FileSystemInfo)new DirectoryInfo(state.Path) : new FileInfo(state.Path);
103

    
104
                    //Bypass deleted files, unless the status is Deleted
105
                    if (!info.Exists && state.Status != FileStatus.Deleted)
106
                    {
107
                        state.Skip = true;
108
                        this.StatusKeeper.ClearFileStatus(state.Path);
109

    
110
                        if (Log.IsDebugEnabled) Log.DebugFormat("Skipped missing {0}", state.FileName);
111

    
112
                        return CompletedTask<object>.Default;
113
                    }
114

    
115
                    using (new SessionScope(FlushAction.Never))
116
                    {
117

    
118
                        var fileState = StatusKeeper.GetStateByFilePath(state.Path);
119

    
120
                        switch (state.Status)
121
                        {
122
                            case FileStatus.Created:
123
                            case FileStatus.Modified:
124
                                NetworkAgent.Post(new CloudUploadAction(accountInfo, info, fileState,
125
                                                                        accountInfo.BlockSize,
126
                                                                        accountInfo.BlockHash));
127
                                break;
128
                            case FileStatus.Deleted:
129
                                if (fileState != null)
130
                                {
131
                                    var children = StatusKeeper.GetChildren(fileState);
132
                                    foreach (var child in children)
133
                                    {
134
                                        var childInfo = child.IsFolder
135
                                                            ? (FileSystemInfo) new DirectoryInfo(child.FilePath)
136
                                                            : new FileInfo(child.FilePath);
137
                                        NetworkAgent.Post(new CloudDeleteAction(accountInfo, childInfo, child));
138
                                    }
139
                                }
140
                                NetworkAgent.Post(new CloudDeleteAction(accountInfo, info, fileState));
141
                                break;
142
                            case FileStatus.Renamed:
143
                                FileSystemInfo oldInfo = Directory.Exists(state.OldPath)
144
                                                             ? (FileSystemInfo) new DirectoryInfo(state.OldPath)
145
                                                             : new FileInfo(state.OldPath);
146
                                FileSystemInfo newInfo = Directory.Exists(state.Path)
147
                                                             ? (FileSystemInfo) new DirectoryInfo(state.Path)
148
                                                             : new FileInfo(state.Path);
149
                                NetworkAgent.Post(new CloudMoveAction(accountInfo, CloudActionType.RenameCloud,
150
                                                                      oldInfo,
151
                                                                      newInfo));
152
                                break;
153
                        }
154
                    }
155

    
156
                    return CompletedTask<object>.Default;
157
                }
158
                catch (Exception ex)
159
                {
160
                    Log.Error(ex.ToString());
161
                    throw;
162
                }
163
            }
164
        }
165

    
166

    
167
        //Starts interrupted files for a specific account
168
        public void RestartInterruptedFiles(AccountInfo accountInfo)
169
        {
170
            
171
            StatusNotification.NotifyChange("Restart processing interrupted files", TraceLevel.Verbose);
172

    
173
            using (log4net.ThreadContext.Stacks["Workflow"].Push("Restart"))
174
            {
175
                if (Log.IsDebugEnabled)
176
                    Log.Debug("Starting interrupted files");
177

    
178
                var cachePath = Path.Combine(accountInfo.AccountPath, FolderConstants.CacheFolder)
179
                    .ToLower();
180

    
181

    
182

    
183
                var account = accountInfo;
184
                var pendingEntries = from state in FileState.Queryable
185
                                     where state.FileStatus != FileStatus.Unchanged &&
186
                                           !state.FilePath.StartsWith(cachePath) &&
187
                                           !state.FilePath.EndsWith(".ignore") &&
188
                                           state.FilePath.StartsWith(account.AccountPath)
189
                                     select state;
190
                var pendingStates = new List<WorkflowState>();
191
                foreach (var state in pendingEntries)
192
                {
193
                        pendingStates.Add(new WorkflowState(account, state));
194
                }
195
                if (Log.IsDebugEnabled)
196
                    Log.DebugFormat("Found {0} interrupted files", pendingStates.Count);
197

    
198

    
199
                foreach (var entry in pendingStates)
200
                {
201
                       Post(entry);
202
                }
203
            }
204
        }
205

    
206

    
207

    
208
        public void Post(WorkflowState workflowState)
209
        {
210
            if (Log.IsDebugEnabled)
211
                Log.DebugFormat("Posted {0} {1} {2}", workflowState.Path, workflowState.Status, workflowState.TriggeringChange);
212

    
213
            //Remove invalid state            
214
            //For now, ignore paths
215
           /* if (Directory.Exists(workflowState.Path))
216
                return;*/
217
            //TODO: Need to handle folder renames            
218

    
219
            Debug.Assert(workflowState.Path.StartsWith(workflowState.AccountInfo.AccountPath, StringComparison.InvariantCultureIgnoreCase), "File from wrong account posted");
220

    
221
            _agent.Post(workflowState);
222
        }     
223

    
224
    }
225
}