| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- using ChocolArm64.Memory;
- using Ryujinx.OsHle.Ipc;
- using System.Collections.Generic;
- using System.IO;
- using static Ryujinx.OsHle.Objects.ObjHelper;
- namespace Ryujinx.OsHle.Objects.FspSrv
- {
- class IFileSystem : IIpcInterface
- {
- private Dictionary<int, ServiceProcessRequest> m_Commands;
- public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
- private string Path;
- public IFileSystem(string Path)
- {
- //TODO: implement.
- m_Commands = new Dictionary<int, ServiceProcessRequest>()
- {
- { 0, CreateFile },
- { 1, DeleteFile },
- { 2, CreateDirectory },
- { 3, DeleteDirectory },
- { 4, DeleteDirectoryRecursively },
- { 5, RenameFile },
- { 6, RenameDirectory },
- { 7, GetEntryType },
- { 8, OpenFile },
- { 9, OpenDirectory },
- { 10, Commit },
- //{ 11, GetFreeSpaceSize },
- //{ 12, GetTotalSpaceSize },
- //{ 13, CleanDirectoryRecursively },
- //{ 14, GetFileTimeStampRaw }
- };
- this.Path = Path;
- }
- public long CreateFile(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- ulong Mode = Context.RequestData.ReadUInt64();
- uint Size = Context.RequestData.ReadUInt32();
- string FileName = Context.Ns.VFs.GetFullPath(Path, Name);
- if (FileName != null)
- {
- FileStream NewFile = File.Create(FileName);
- NewFile.SetLength(Size);
- NewFile.Close();
- return 0;
- }
- //TODO: Correct error code.
- return -1;
- }
- public long DeleteFile(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- string FileName = Context.Ns.VFs.GetFullPath(Path, Name);
- if (FileName != null)
- {
- File.Delete(FileName);
- return 0;
- }
- //TODO: Correct error code.
- return -1;
- }
- public long CreateDirectory(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- string FileName = Context.Ns.VFs.GetFullPath(Path, Name);
- if (FileName != null)
- {
- Directory.CreateDirectory(FileName);
- return 0;
- }
- //TODO: Correct error code.
- return -1;
- }
- public long DeleteDirectory(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- string FileName = Context.Ns.VFs.GetFullPath(Path, Name);
- if (FileName != null)
- {
- Directory.Delete(FileName);
- return 0;
- }
- // TODO: Correct error code.
- return -1;
- }
- public long DeleteDirectoryRecursively(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- string FileName = Context.Ns.VFs.GetFullPath(Path, Name);
- if (FileName != null)
- {
- Directory.Delete(FileName, true); // recursive = true
- return 0;
- }
- // TODO: Correct error code.
- return -1;
- }
- public long RenameFile(ServiceCtx Context)
- {
- long OldPosition = Context.Request.PtrBuff[0].Position;
- long NewPosition = Context.Request.PtrBuff[0].Position;
- string OldName = AMemoryHelper.ReadAsciiString(Context.Memory, OldPosition);
- string NewName = AMemoryHelper.ReadAsciiString(Context.Memory, NewPosition);
- string OldFileName = Context.Ns.VFs.GetFullPath(Path, OldName);
- string NewFileName = Context.Ns.VFs.GetFullPath(Path, NewName);
- if (OldFileName != null && NewFileName != null)
- {
- File.Move(OldFileName, NewFileName);
- return 0;
- }
- // TODO: Correct error code.
- return -1;
- }
- public long RenameDirectory(ServiceCtx Context)
- {
- long OldPosition = Context.Request.PtrBuff[0].Position;
- long NewPosition = Context.Request.PtrBuff[0].Position;
- string OldName = AMemoryHelper.ReadAsciiString(Context.Memory, OldPosition);
- string NewName = AMemoryHelper.ReadAsciiString(Context.Memory, NewPosition);
- string OldDirName = Context.Ns.VFs.GetFullPath(Path, OldName);
- string NewDirName = Context.Ns.VFs.GetFullPath(Path, NewName);
- if (OldDirName != null && NewDirName != null)
- {
- Directory.Move(OldDirName, NewDirName);
- return 0;
- }
- // TODO: Correct error code.
- return -1;
- }
- public long GetEntryType(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- string FileName = Context.Ns.VFs.GetFullPath(Path, Name);
- if (FileName == null)
- {
- //TODO: Correct error code.
- return -1;
- }
- bool IsFile = File.Exists(FileName);
- Context.ResponseData.Write(IsFile ? 1 : 0);
- return 0;
- }
- public long OpenFile(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- int FilterFlags = Context.RequestData.ReadInt32();
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- string FileName = Context.Ns.VFs.GetFullPath(Path, Name);
- if (FileName == null)
- {
- //TODO: Correct error code.
- return -1;
- }
- if (File.Exists(FileName))
- {
- FileStream Stream = new FileStream(FileName, FileMode.OpenOrCreate);
- MakeObject(Context, new IFile(Stream));
- return 0;
- }
- //TODO: Correct error code.
- return -1;
- }
- public long OpenDirectory(ServiceCtx Context)
- {
- long Position = Context.Request.PtrBuff[0].Position;
- int FilterFlags = Context.RequestData.ReadInt32();
- string Name = AMemoryHelper.ReadAsciiString(Context.Memory, Position);
- string DirName = Context.Ns.VFs.GetFullPath(Path, Name);
- if(DirName != null)
- {
- if (Directory.Exists(DirName))
- {
- MakeObject(Context, new IDirectory(DirName, FilterFlags));
- return 0;
- }
- else
- {
- // TODO: correct error code.
- return -1;
- }
- }
- // TODO: Correct error code.
- return -1;
- }
- public long Commit(ServiceCtx Context)
- {
- return 0;
- }
- }
- }
|