Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #37610 > unrolled thread
| Started by | tamnt54@gmail.com |
|---|---|
| First post | 2013-01-24 09:06 -0800 |
| Last post | 2013-01-24 18:25 +0100 |
| Articles | 9 — 3 participants |
Back to article view | Back to comp.lang.python
monolithic apps tamnt54@gmail.com - 2013-01-24 09:06 -0800
Re: monolithic apps Dave Angel <d@davea.name> - 2013-01-24 12:25 -0500
Re: monolithic apps tamnt54@gmail.com - 2013-01-25 06:00 -0800
Re: monolithic apps tamnt54@gmail.com - 2013-01-25 06:05 -0800
Re: monolithic apps tamnt54@gmail.com - 2013-01-25 06:06 -0800
Re: monolithic apps tamnt54@gmail.com - 2013-01-25 06:06 -0800
Re: monolithic apps tamnt54@gmail.com - 2013-01-25 06:05 -0800
Re: monolithic apps tamnt54@gmail.com - 2013-01-25 06:00 -0800
Re: monolithic apps Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> - 2013-01-24 18:25 +0100
| From | tamnt54@gmail.com |
|---|---|
| Date | 2013-01-24 09:06 -0800 |
| Subject | monolithic apps |
| Message-ID | <3ba34039-76e9-40f6-bc38-473f800cb543@googlegroups.com> |
Any suggestions for study?..: Is is possible to take a large executable with GUI and real time data and images, to extract modules, and it can run as if it looks like a monolithic application (windows over main windows, or images over other images) but is various python script driven modules calling each other as separate apps?
[toc] | [next] | [standalone]
| From | Dave Angel <d@davea.name> |
|---|---|
| Date | 2013-01-24 12:25 -0500 |
| Message-ID | <mailman.1004.1359048339.2939.python-list@python.org> |
| In reply to | #37610 |
On 01/24/2013 12:06 PM, tamnt54@gmail.com wrote: > Any suggestions for study?..: > Is is possible to take a large executable with GUI and real time data and images, to extract modules, and it can run as if it looks like a monolithic application (windows over main windows, or images over other images) but is various python script driven modules calling each other as separate apps? > I can see at least 4 things you might mean. Perhaps you'd better spell it out. 1) glom all the scripts & binary modules into one big file, so the user thinks it's one huge app 2) Manipulate multiple gui apps while having the same UI as though there was just one main window, and other windows all belong to it. Multiple GUI processes, but some central control to change the user experience into resembling a single GUI app. 3) Have one gui app "main" that other apps can somehow call to manipulate the windows of "main." Multiple processes, only one of them with a GUI. 4) From a GUI app, use other apps as loadable modules, and reuse their class definitions and functions by calling them from the GUI app. One process. You say this a topic for study, but there's a lot of other things you may need to specify before you get to implementing. What OS, what version of Python, what GUI, are these apps modifiable, or are you just allowed to write glue, ... -- DaveA
[toc] | [prev] | [next] | [standalone]
| From | tamnt54@gmail.com |
|---|---|
| Date | 2013-01-25 06:00 -0800 |
| Message-ID | <c005f3be-7b25-4cc9-99e0-6d4e7e1abcab@googlegroups.com> |
| In reply to | #37613 |
..snipped... > > 2) Manipulate multiple gui apps while having the same UI as though there > was just one main window, and other windows all belong to it. Multiple > GUI processes, but some central control to change the user experience > into resembling a single GUI app. ...snipped > > You say this a topic for study, but there's a lot of other things you > may need to specify before you get to implementing. What OS, what > version of Python, what GUI, are these apps modifiable, or are you just > allowed to write glue, ... > -- > DaveA Hey Thanks, Dave! Definitely (2). However: you say "and other windows all belong to it." That is not such a great idea as long as the main window can close the other windows. But that's the point. I have a humongous commercial app in C++ on Win32. (It could require porting at some time because main tools it uses could get ported by separate vendor) So what I'd like to do is write real-time imaging functions separately and control them using python scripting with whatever windows or overlayed images are needed. Debug these separately and call+control them as individual stand alone, and glue together as needed. glue being mainly python, and what is being glued would also be controlled as separate python modules. This ends up running as one monolithic application that looks the same (better I hope) as the previous huge monolithic win32 app. thanks again!
[toc] | [prev] | [next] | [standalone]
| From | tamnt54@gmail.com |
|---|---|
| Date | 2013-01-25 06:05 -0800 |
| Message-ID | <ccf51155-c2f2-422f-b57d-d3700e898020@googlegroups.com> |
| In reply to | #37661 |
Glue not just python but whatever is needed to communicate back and forth. lots of data, but whatever could be glue in python of course. The C++ glue and functions would be controlled as python data and communicated between different modules. todd.
[toc] | [prev] | [next] | [standalone]
| From | tamnt54@gmail.com |
|---|---|
| Date | 2013-01-25 06:06 -0800 |
| Message-ID | <66ff1132-c6ea-410e-912d-1399300e07db@googlegroups.com> |
| In reply to | #37664 |
My App takes over the whole system from power up to shutdown.
[toc] | [prev] | [next] | [standalone]
| From | tamnt54@gmail.com |
|---|---|
| Date | 2013-01-25 06:06 -0800 |
| Message-ID | <mailman.1037.1359122774.2939.python-list@python.org> |
| In reply to | #37664 |
My App takes over the whole system from power up to shutdown.
[toc] | [prev] | [next] | [standalone]
| From | tamnt54@gmail.com |
|---|---|
| Date | 2013-01-25 06:05 -0800 |
| Message-ID | <mailman.1036.1359122714.2939.python-list@python.org> |
| In reply to | #37661 |
Glue not just python but whatever is needed to communicate back and forth. lots of data, but whatever could be glue in python of course. The C++ glue and functions would be controlled as python data and communicated between different modules. todd.
[toc] | [prev] | [next] | [standalone]
| From | tamnt54@gmail.com |
|---|---|
| Date | 2013-01-25 06:00 -0800 |
| Message-ID | <mailman.1035.1359122447.2939.python-list@python.org> |
| In reply to | #37613 |
..snipped... > > 2) Manipulate multiple gui apps while having the same UI as though there > was just one main window, and other windows all belong to it. Multiple > GUI processes, but some central control to change the user experience > into resembling a single GUI app. ...snipped > > You say this a topic for study, but there's a lot of other things you > may need to specify before you get to implementing. What OS, what > version of Python, what GUI, are these apps modifiable, or are you just > allowed to write glue, ... > -- > DaveA Hey Thanks, Dave! Definitely (2). However: you say "and other windows all belong to it." That is not such a great idea as long as the main window can close the other windows. But that's the point. I have a humongous commercial app in C++ on Win32. (It could require porting at some time because main tools it uses could get ported by separate vendor) So what I'd like to do is write real-time imaging functions separately and control them using python scripting with whatever windows or overlayed images are needed. Debug these separately and call+control them as individual stand alone, and glue together as needed. glue being mainly python, and what is being glued would also be controlled as separate python modules. This ends up running as one monolithic application that looks the same (better I hope) as the previous huge monolithic win32 app. thanks again!
[toc] | [prev] | [next] | [standalone]
| From | Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> |
|---|---|
| Date | 2013-01-24 18:25 +0100 |
| Message-ID | <51016E8C.8090604@dominolaser.com> |
| In reply to | #37610 |
Am 24.01.2013 18:06, schrieb tamnt54@gmail.com: > Any suggestions for study?..: Is is possible to take a large > executable with GUI and real time data and images, to extract > modules, and it can run as if it looks like a monolithic application > (windows over main windows, or images over other images) but is > various python script driven modules calling each other as separate > apps? > http://www.gnu.org/software/hurd/ Uli <g,d&r>
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web