search for: overlayfilesystem

Displaying 11 results from an estimated 11 matches for "overlayfilesystem".

2011 Dec 04
5
[LLVMdev] [cfe-dev] LLVM & Clang file management
...:get*File through the FileSystem interface, but again that can be handled incrementally 3. at that point we'd have enough stuff in FileSystem to rebase FileManager on top of it; once 1 and 2 are finished for clang/.* we'll be able to completely move the virtual file support over into a nice OverlayFileSystem implementation (argh, I've coded too many of those in my life); 4. add methods to FileSystem to support opening raw_fd_ostreams; this is basically the process for reading mirrored Thoughts? Completely broken approach? Broken order? On a different note, switching to the SourceManager topic - I...
2011 Dec 06
0
[LLVMdev] [cfe-dev] LLVM & Clang file management
...eSystem interface, but again that can be handled > incrementally > 3. at that point we'd have enough stuff in FileSystem to rebase > FileManager on top of it; once 1 and 2 are finished for clang/.* we'll > be able to completely move the virtual file support over into a nice > OverlayFileSystem implementation (argh, I've coded too many of those > in my life); Is this true (enough support to base FileManager on top)? I'm specifically thinking about some of the places we look at inodes. Or are you expecting to expose some kind of abstracted representation of an inode? > 4. a...
2011 Dec 06
2
[LLVMdev] [cfe-dev] LLVM & Clang file management
...ut again that can be handled >> incrementally >> 3. at that point we'd have enough stuff in FileSystem to rebase >> FileManager on top of it; once 1 and 2 are finished for clang/.* we'll >> be able to completely move the virtual file support over into a nice >> OverlayFileSystem implementation (argh, I've coded too many of those >> in my life); > > Is this true (enough support to base FileManager on top)? I'm > specifically thinking about some of the places we look at inodes. Or > are you expecting to expose some kind of abstracted representation...
2011 Dec 06
0
[LLVMdev] [cfe-dev] LLVM & Clang file management
...handled >>> incrementally >>> 3. at that point we'd have enough stuff in FileSystem to rebase >>> FileManager on top of it; once 1 and 2 are finished for clang/.* we'll >>> be able to completely move the virtual file support over into a nice >>> OverlayFileSystem implementation (argh, I've coded too many of those >>> in my life); >> >> Is this true (enough support to base FileManager on top)? I'm >> specifically thinking about some of the places we look at inodes. Or >> are you expecting to expose some kind of abstra...
2011 Dec 06
0
[LLVMdev] [cfe-dev] LLVM & Clang file management
...eSystem interface, but again that can be handled > incrementally > 3. at that point we'd have enough stuff in FileSystem to rebase > FileManager on top of it; once 1 and 2 are finished for clang/.* we'll > be able to completely move the virtual file support over into a nice > OverlayFileSystem implementation (argh, I've coded too many of those > in my life); > 4. add methods to FileSystem to support opening raw_fd_ostreams; this > is basically the process for reading mirrored > > Thoughts? Completely broken approach? Broken order? > > On a different note, switchi...
2011 Dec 06
5
[LLVMdev] [cfe-dev] LLVM & Clang file management
...ut again that can be handled >> incrementally >> 3. at that point we'd have enough stuff in FileSystem to rebase >> FileManager on top of it; once 1 and 2 are finished for clang/.* we'll >> be able to completely move the virtual file support over into a nice >> OverlayFileSystem implementation (argh, I've coded too many of those >> in my life); >> 4. add methods to FileSystem to support opening raw_fd_ostreams; this >> is basically the process for reading mirrored >> >> Thoughts? Completely broken approach? Broken order? >> >>...
2011 Dec 06
0
[LLVMdev] [cfe-dev] LLVM & Clang file management
...handled >>> incrementally >>> 3. at that point we'd have enough stuff in FileSystem to rebase >>> FileManager on top of it; once 1 and 2 are finished for clang/.* we'll >>> be able to completely move the virtual file support over into a nice >>> OverlayFileSystem implementation (argh, I've coded too many of those >>> in my life); >>> 4. add methods to FileSystem to support opening raw_fd_ostreams; this >>> is basically the process for reading mirrored >>> >>> Thoughts? Completely broken approach? Broken order...
2011 Dec 06
1
[LLVMdev] [cfe-dev] LLVM & Clang file management
...;> incrementally >>>> 3. at that point we'd have enough stuff in FileSystem to rebase >>>> FileManager on top of it; once 1 and 2 are finished for clang/.* we'll >>>> be able to completely move the virtual file support over into a nice >>>> OverlayFileSystem implementation (argh, I've coded too many of those >>>> in my life); >>>> 4. add methods to FileSystem to support opening raw_fd_ostreams; this >>>> is basically the process for reading mirrored >>>> >>>> Thoughts? Completely broken ap...
2011 Dec 06
1
[LLVMdev] [cfe-dev] LLVM & Clang file management
...; incrementally > >>> 3. at that point we'd have enough stuff in FileSystem to rebase > >>> FileManager on top of it; once 1 and 2 are finished for clang/.* we'll > >>> be able to completely move the virtual file support over into a nice > >>> OverlayFileSystem implementation (argh, I've coded too many of those > >>> in my life); > >>> 4. add methods to FileSystem to support opening raw_fd_ostreams; this > >>> is basically the process for reading mirrored > >>> > >>> Thoughts? Completely brok...
2011 Dec 03
0
[LLVMdev] [cfe-dev] LLVM & Clang file management
Hi Manuel, On Nov 28, 2011, at 2:49 AM, Manuel Klimek wrote: > Hi, > > while working on tooling on top of clang/llvm we found the file system > abstractions in clang/llvm to be one of the points that could be nicer > to integrate with. I’m writing this mail to propose a strawman and get > some feedback on what you guys think the right way forward is (or > whether we should
2011 Nov 28
4
[LLVMdev] LLVM & Clang file management
Hi, while working on tooling on top of clang/llvm we found the file system abstractions in clang/llvm to be one of the points that could be nicer to integrate with. I’m writing this mail to propose a strawman and get some feedback on what you guys think the right way forward is (or whether we should just leave things as they are). First, the FileManager we have in clang has helped us a lot for