FileSystemInfoRW.cs 13.9 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Xml;
using System.IO;

namespace OBJ_FileBus
{
    public class Converter
    {
        public static string BytesToString(byte[] bytes)
        {
            return FObjBase.Converter.BytesToString(bytes);
        }
        public static byte[] StringToBytes(string str)
        {
            return FObjBase.Converter.StringToBytes(str);
        }
        public static string DateTimeToString(DateTime dt)
        {
            return FObjBase.Converter.DateTimeToString(dt);
        }
    }
    /// <summary>
    /// 就只是提供给Server 使用
    /// </summary>
    public class FileSystemInfoRW
    {
        #region 获取文件信息

        public static bool GetInfo(string path, out FileAttributes fileattr, out DateTime createtime, out DateTime lastwritetime, out int size) 
        {
            string filePath = path;
            fileattr = FileAttributes.Normal;
            createtime = DateTime.MinValue;
            lastwritetime = DateTime.MinValue;
            size = 0;
            if (Directory.Exists(filePath))
            {
                DirectoryInfo info = new DirectoryInfo(filePath);
                fileattr = FileAttributes.Directory;
                createtime = info.CreationTime;
                lastwritetime = info.LastWriteTime;
                return true;
            }
            else if (File.Exists(filePath))
            {
                FileInfo info = new FileInfo(filePath);
                fileattr = FileAttributes.Normal;
                createtime = info.CreationTime;
                lastwritetime = info.LastWriteTime;
                size = (int)info.Length;
                return true;
            }
            else
            {
                return false;
            }
        }
        public static DateTime GetLastWriteTime(string path) 
        {
            FileAttributes fileattr;
            DateTime createtime;
            DateTime lastwritetime;
            int size;
            if (GetInfo(path, out fileattr, out createtime, out lastwritetime, out size)) 
            {
                return lastwritetime;
            }
            return DateTime.MinValue;
        }
        #endregion
        #region 获取文件内容
        public enum OptFileContentResult
        {
            /// <summary>
            /// GUID出错
            /// </summary>
            GUIDErr,
            /// <summary>
            /// 不能写
            /// </summary>
            CanntWrite,
            /// <summary>
            /// 不存在
            /// </summary>
            NoExist,
            /// <summary>
            /// 成功
            /// </summary>            
            OK,
            /// <summary>
            /// 正在写,或正在读
            /// </summary>            
            Doing
        }
        /// <summary>
        /// 获取文件夹 内容,输出 xml 的byte[]
        /// </summary>
        /// <param name="path"></param>
        /// <returns></returns>
        private OptFileContentResult GetDirectoryContent(string path, ref string guid, UInt16 package_size, out byte[] buf, out UInt32 filesize)
        {
            filesize = 0;
            string filePath = path;
            buf = null;
            DirectoryInfo dinfo;
            XmlDocument xmlDoc = new XmlDocument(); //load xml
            XmlElement xmlElem;


            dinfo = new DirectoryInfo(filePath);
            xmlElem = xmlDoc.CreateElement(FileAttributes.Directory.ToString());
            xmlElem.SetAttribute("name", dinfo.Name);
            xmlElem.SetAttribute("ctime", dinfo.CreationTime.ToString());
            xmlElem.SetAttribute("mtime", dinfo.LastWriteTime.ToString());
            xmlDoc.AppendChild(xmlElem);

            foreach (FileInfo info in dinfo.GetFiles())
            {
                XmlElement xmlElem1 = xmlDoc.CreateElement(FileAttributes.Normal.ToString());

                xmlElem1.SetAttribute("name", info.Name);
                xmlElem1.SetAttribute("ctime", info.CreationTime.ToString());
                xmlElem1.SetAttribute("mtime", info.LastWriteTime.ToString());
                xmlElem1.SetAttribute("size", info.Length.ToString());
                xmlElem.AppendChild(xmlElem1);
            }
            foreach (DirectoryInfo info in dinfo.GetDirectories())
            {
                XmlElement xmlElem1 = xmlDoc.CreateElement(FileAttributes.Directory.ToString());

                xmlElem1.SetAttribute("name", info.Name);
                xmlElem1.SetAttribute("ctime", info.CreationTime.ToString());
                xmlElem1.SetAttribute("mtime", info.LastWriteTime.ToString());
                xmlElem.AppendChild(xmlElem1);
            }
            buf = Converter.StringToBytes(xmlDoc.InnerXml);
            filesize = (UInt32)buf.Length;
            if (package_size < filesize)
            {
                //需要分多次获取
                //创建备份
                TempFileRW t = new TempFileRW(path, buf);
                guid = t.GUID;
                mTempFile.Add(t);
                buf = buf.Take(package_size).ToArray();
                return OptFileContentResult.Doing;
            }
            return OptFileContentResult.OK;
        }

        private OptFileContentResult GetContentPart(string guid, UInt16 package_no, UInt16 package_size, out byte[] buf, out UInt32 filesize) 
        {
            TempFileRW t;
            buf = null;
            filesize = 0;
            string g = guid;
            var fws = from _fw in mTempFile where _fw.GUID == g select _fw;
            if (fws.Count() > 0)
                t = fws.First();
            else
            {
                //出错!!!
                return OptFileContentResult.GUIDErr;
            }
            string filePath = t.Temp;


            FileStream sr = new FileStream(filePath, FileMode.Open);
            filesize = (UInt32)sr.Length;

            int count = package_size;
            int offset = package_no * package_size;
            if ((offset + count) > sr.Length)
                count = (int)(sr.Length - offset);


            if (count <= 0)
            {
                sr.Close();

            }
            else
            {
                buf = new byte[count];
                sr.Seek(offset, SeekOrigin.Begin);
                sr.Read(buf, 0, count);
                sr.Close();
            }
            if ((count + offset) == filesize)
            {

                //可以删除临时文件了
                if (t != null)
                {
                    t.Dispose();
                    mTempFile.Remove(t);
                }
                return OptFileContentResult.OK;
            }

            return OptFileContentResult.Doing;
        }

        /// <summary>
        /// 获取文件内容
        /// 一定要从头获取,当package_size小于filesize,也就是要多次获取时,复制一份临时文件;
        /// 读到的数据,都是对这个临时文件读取。
        /// 当读取到最后,全部读取完成,删除此文件.
        /// 
        /// 分段获取文件,第1次调用 path为文件路径
        /// 以后,path为guid
        /// </summary>
        /// <param name="path">路径</param>
        /// <param name="offset">文件游标</param>
        /// <param name="buf">输出数据</param>
        /// <returns></returns>
        private OptFileContentResult GetFileContent(string path, ref string guid, UInt16 package_size, out byte[] buf, out UInt32 filesize)
        {
            filesize = 0;
            buf = null;
            string filePath = path;

            FileStream sr = new FileStream(filePath, FileMode.Open);
            filesize = (UInt32)sr.Length;

            UInt32 count = package_size;
            if(count>filesize)
                count = filesize;
            
            if (count <= 0)
            {
                sr.Close();
            }
            else
            {
                buf = new byte[count];
                sr.Read(buf, 0, (int)count);
                sr.Close();
            }

            if(package_size<filesize)
            {
                //需要创建备份
                TempFileRW t = new TempFileRW(path);
                guid = t.GUID;
                mTempFile.Add(t);
                return OptFileContentResult.Doing;
            }
            return OptFileContentResult.OK;
        }

        /// <summary>
        /// 获取文件夹 或文件 的内容
        /// </summary>
        /// <param name="path"></param>
        /// <returns></returns>
        public OptFileContentResult GetContent(string path, ref string guid, UInt16 package_no, UInt16 package_size, out byte[] buf, out UInt32 filesize)
        {
            buf = null;
            filesize = 0;
            if (package_no == 0)
            {
                if (Directory.Exists(path))
                {
                    return GetDirectoryContent(path, ref guid, package_size, out buf, out filesize);
                }
                else if (File.Exists(path))
                {
                    return GetFileContent(path, ref guid, package_size, out buf, out filesize);
                }
                else
                {
                    return OptFileContentResult.NoExist;
                }
            }
            else 
            {
                return GetContentPart(guid, package_no, package_size, out buf, out filesize);
            }
        }
        #endregion
        #region 写文件内容
        /// <summary>
        /// 设置文件内容,当为虚拟文件时,不操作,直接返回
        /// </summary>
        /// <param name="path"></param>
        /// <param name="context"></param>
        /// <param name="offset"></param>
        /// <param name="length"></param>
        /// <param name="buf"></param>
        /// <returns></returns>
        public OptFileContentResult SetFileContent(string path, ref string guid, UInt32 filesize, UInt16 package_size, UInt16 package_no, byte[] context)
        {
            TempFileRW t;
            string filePath = path;
            if (package_no == 0)
            {
                //创建临时文件
                t = new TempFileRW();
                guid = t.GUID;
                mTempFile.Add(t);
            }
            else
            {
                string g = guid;
                var fws = from _fw in mTempFile where _fw.GUID == g select _fw;
                if (fws.Count() > 0)
                    t = fws.First();
                else
                {
                    //出错!!!
                    return OptFileContentResult.GUIDErr;
                }
            }
            try
            {
                FileStream sr = new FileStream(TempFileRW.TempDir+@"\" + guid, FileMode.OpenOrCreate);
                sr.Seek(package_no * package_size, SeekOrigin.Begin);
                sr.Write(context, 0, context.Length);
                sr.Flush();
                sr.Close();

            }
            catch
            {
                return OptFileContentResult.CanntWrite;
            }

            if ((package_no * package_size + context.Length) >= filesize)
            {
                //全部数据上传完
                try
                {
                    if (File.Exists(path))
                    {
                        //当文件已经存在,删除
                        File.Delete(path);
                    }
                    else 
                    {
                        //文件不存在,创建文件夹
                        string dir = Path.GetDirectoryName(path);
                        if (!string.IsNullOrEmpty(dir) && !Directory.Exists(dir))
                            Directory.CreateDirectory(dir);
                     }
                    File.Move(TempFileRW.TempDir + @"\" + guid, path);
                }
                catch
                {
                    //可以删除临时文件了
                    t.Dispose();
                    mTempFile.Remove(t);
                    return OptFileContentResult.CanntWrite;
                }

                //可以删除临时文件了
                t.Dispose();
                mTempFile.Remove(t);
                return OptFileContentResult.OK;
            }
            else 
            {

                return OptFileContentResult.Doing;
            }
        }
        List<TempFileRW> mTempFile = new List<TempFileRW>();
        class TempFileRW
        {
            public TempFileRW() 
            {
                //产生临时文件
                GUID = Guid.NewGuid().ToString();
                if (!Directory.Exists(TempDir))
                    Directory.CreateDirectory(TempDir);
            }
            public TempFileRW(string path) 
            {
                this.path = path;

                //产生临时文件
                GUID = Guid.NewGuid().ToString();

                FileInfo info = new FileInfo(path);
                if (!Directory.Exists(TempDir))
                    Directory.CreateDirectory(TempDir);
                info.CopyTo(TempDir+@"\" + GUID);
            }
            public TempFileRW(string path, byte[] buf) 
            {
                //产生临时文件
                GUID = Guid.NewGuid().ToString();

                if (!Directory.Exists(TempDir))
                    Directory.CreateDirectory(TempDir);
                this.path = path;

                FileStream fs = new FileStream(Temp, FileMode.Create);
                fs.Write(buf, 0, buf.Length);
                fs.Flush();
                fs.Close();
            }
            public string GUID;
            public string path;
            public string Temp {
                get {
                    return TempDir+@"\" + GUID;
                }
            }
            public void Dispose() 
            {
                if (File.Exists(Temp))
                    File.Delete(Temp);
            }
            public const string TempDir = @"filebus\tmp";
        }
        #endregion
    }
}