Access to one program from another
#1 Members - Reputation: 228
Posted 20 August 2011 - 08:32 AM
I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.
Is there any name for such technology, some libs, tutorials?
Regards,
Misery
#5 Members - Reputation: 2369
Posted 20 August 2011 - 10:44 AM
I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.
Memory is not localized. Entire memory is accessible at any time.
The mere concept of "application" or more accurately, process, is something that is arbitrarily defined by each operating system or runtime system. No such limitation exists when it comes to memory itself.
So a question needs more detail - which OS, which language and what kind of sharing?
#6 Crossbones+ - Reputation: 1922
Posted 20 August 2011 - 10:49 AM
Hi,
I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.
Is there any name for such technology, some libs, tutorials?
Regards,
Misery
As a suggestion, look at the following: http://www.boost.org/doc/libs/1_47_0/doc/html/interprocess.html I'm not a huge fan of boost but for this particular item and a couple others I have no interest in writing such things myself and this is a very reasonable solution so long as you don't have to debug it yourself. I've used this for a shared resource system in cooperative server processes quite successfully and the performance was exceptional and I didn't run into any notable bugs. I think the largest problem I had was proper cleanup given the different Os scoping issues with releasing of the shared memory, all easily dealt with but a pain if you don't think about it up front.
#7 Members - Reputation: 110
Posted 20 August 2011 - 11:05 AM
I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.
Memory is not localized. Entire memory is accessible at any time.
The mere concept of "application" or more accurately, process, is something that is arbitrarily defined by each operating system or runtime system. No such limitation exists when it comes to memory itself.
So a question needs more detail - which OS, which language and what kind of sharing?
This is not entirely true, your application is most likely in its own virtual address space (that is why two applications with the same entry point address can run simultaneously). So the OS is able to address physical memory in a linear way however your application is bound to his virtual address space and an other applications virtual address space would have to mapped to your virtual address space resulting in a different address for the same data (say app1 has code at 0xDEADBEEF and wants to access address 0xDEADBEEF of app2 it will have to be mapped at an other address then the original address). This is not really a problem unless the data you are trying to access contains pointers to addresses within this mapped memory (or even worse inside app2's private memory, then there is no way to know what will happen the address could be perfectly legal and pointing to valid data in app1 resulting in unpredictable results).
#8 Members - Reputation: 2369
Posted 20 August 2011 - 01:11 PM
This is not entirely true, your application is most likely in its own virtual address space
Which is a concept defined by operating and applies to concept of process.
The the request for details on OS, language, platform, the more the better.
There simply is no generic answer on how to share memory.
#9 Members - Reputation: 228
Posted 20 August 2011 - 02:21 PM
lets say first application makes a vector of integers:
int A=new int[100]; for (int i=0;i<100;i++) A[i]=ARandomNumber();
And the second application is supposed to count a sum of the elements of A and fill it with new numbers:
int s=0;
for (int i=0;i<100;i++)
{
s+=A[i];
A[i]=AnotherRandomNumber();
}
This would be supposed to work on Windows 7, but solution for Debian would be cool as well.
The first application could probably put out to an output stream an address to A or something...
#10 Moderators - Reputation: 5034
Posted 20 August 2011 - 02:53 PM
A unix solution to this problem would be for the first application to write the array to stdout, and the second application to sum the integers arriving on stdin. You would combine them by using the shell to pipe the output from the first program to the second.
#12 Members - Reputation: 360
Posted 20 August 2011 - 04:20 PM
He requires 2-way communication, though. I'm not really a command-line guru, so I don't know how you'd do that with pipes.Addresses are meaningless between different processes.
A unix solution to this problem would be for the first application to write the array to stdout, and the second application to sum the integers arriving on stdin. You would combine them by using the shell to pipe the output from the first program to the second.
#13 Members - Reputation: 873
Posted 20 August 2011 - 04:29 PM
The reality is that sharing data between apps is a REALLY REALLY REALLY bad idea. It can lead to more problems then you can could count. You really want one and only one place that can change data.
#14 Moderators - Reputation: 7561
Posted 21 August 2011 - 04:21 AM
[Work - ArenaNet] [Epoch Language] [Scribblings] [Journal - peek into my shattered mind]
#15 Moderators - Reputation: 5034
Posted 21 August 2011 - 09:20 AM
I was optimising out the redundant write, since the OP never specified any additional reads afterwards...He requires 2-way communication, though. I'm not really a command-line guru, so I don't know how you'd do that with pipes.
Addresses are meaningless between different processes.
A unix solution to this problem would be for the first application to write the array to stdout, and the second application to sum the integers arriving on stdin. You would combine them by using the shell to pipe the output from the first program to the second.
Until we know the high level goal the OP has, it is hard to give concrete advice. I still think that any solution which avoids shared memory should be considered, as the potential for bugs is highest with such an approach.
#16 Members - Reputation: 3708
Posted 21 August 2011 - 09:43 AM
I was optimising out the redundant write, since the OP never specified any additional reads afterwards...
He requires 2-way communication, though. I'm not really a command-line guru, so I don't know how you'd do that with pipes.
Addresses are meaningless between different processes.
A unix solution to this problem would be for the first application to write the array to stdout, and the second application to sum the integers arriving on stdin. You would combine them by using the shell to pipe the output from the first program to the second.More seriously, I just failed at reading that post closely enough.
Until we know the high level goal the OP has, it is hard to give concrete advice. I still think that any solution which avoids shared memory should be considered, as the potential for bugs is highest with such an approach.
Sockets are a workable solution, and then the two processes don't even have to be on the same machine. (allthough it works best if the communcation can be broken down to messages that can be passed between the processes, for some applications shared memory might very well be the most appropriate solution)
The voices in my head may not be real, but they have some good ideas!






