From
https://web.archive.org/web/20061013172449/http://www.voltar.org/dockapps/wmjiface-1.7cb.tgz
---
wmjiface/CHANGES | 61 ++++++
wmjiface/COPYING | 339 ++++++++++++++++++++++++++++++++
wmjiface/CREDITS | 48 +++++
wmjiface/INSTALL | 35 ++++
wmjiface/README | 5 +
wmjiface/README.firewall_trouble | 1 +
wmjiface/README.ifacechk | 22 +++
wmjiface/README.wont_compile | 8 +
wmjiface/src/Makefile | 56 ++++++
wmjiface/src/ifacechk | 140 +++++++++++++
wmjiface/src/jDockApp/Makefile | 26 +++
wmjiface/src/jDockApp/colors.h | 14 ++
wmjiface/src/jDockApp/jDockApp.c | 58 ++++++
wmjiface/src/jDockApp/jDockApp.h | 41 ++++
wmjiface/src/jDockApp/jDockApp_main.xpm | 83 ++++++++
wmjiface/src/jDockApp/jDockApp_mask.xbm | 39 ++++
wmjiface/src/jDockApp/jprintf.c | 144 ++++++++++++++
wmjiface/src/jDockApp/locations.h | 1 +
wmjiface/src/svr.client/cattheprocinfo | 44 +++++
wmjiface/src/svr.client/ifacechk.client | 152 ++++++++++++++
wmjiface/src/wmjiface.c | 163 +++++++++++++++
wmjiface/src/xutils/Makefile | 23 +++
wmjiface/src/xutils/xutils.c | 319 ++++++++++++++++++++++++++++++
wmjiface/src/xutils/xutils.h | 47 +++++
24 files changed, 1869 insertions(+)
create mode 100644 wmjiface/CHANGES
create mode 100644 wmjiface/COPYING
create mode 100644 wmjiface/CREDITS
create mode 100644 wmjiface/INSTALL
create mode 100644 wmjiface/README
create mode 120000 wmjiface/README.firewall_trouble
create mode 100644 wmjiface/README.ifacechk
create mode 100644 wmjiface/README.wont_compile
create mode 100644 wmjiface/src/Makefile
create mode 100755 wmjiface/src/ifacechk
create mode 100644 wmjiface/src/jDockApp/Makefile
create mode 100644 wmjiface/src/jDockApp/colors.h
create mode 100644 wmjiface/src/jDockApp/jDockApp.c
create mode 100644 wmjiface/src/jDockApp/jDockApp.h
create mode 100644 wmjiface/src/jDockApp/jDockApp_main.xpm
create mode 100644 wmjiface/src/jDockApp/jDockApp_mask.xbm
create mode 100644 wmjiface/src/jDockApp/jprintf.c
create mode 100644 wmjiface/src/jDockApp/locations.h
create mode 100755 wmjiface/src/svr.client/cattheprocinfo
create mode 100755 wmjiface/src/svr.client/ifacechk.client
create mode 100644 wmjiface/src/wmjiface.c
create mode 100644 wmjiface/src/xutils/Makefile
create mode 100644 wmjiface/src/xutils/xutils.c
create mode 100644 wmjiface/src/xutils/xutils.h
diff --git a/wmjiface/CHANGES b/wmjiface/CHANGES
new file mode 100644
index 0000000..c1de3f2
--- /dev/null
+++ b/wmjiface/CHANGES
@@ -0,0 +1,61 @@
+Wed Sep 15 00:29:10 EDT 1999
+ I tuned ifacechk to be able to handle _huge_ numbers of packets. Perl was
+ maxin' out at some point ... who cares. I fixed it with line #113:
+ s/([0-9]+)([0-9]{9})/$2/g := just gimme the last 9 digits... work on that.
+ This forces a rollover on 9 digits, simultaneously causing correct operation
+ 999999999 out of 10000000000 times (assuming a 1 byte per second xfer rate
and
+ an update delay of 1 second). It also causes an error on the rollover
(fixed
+ after the next update. This is not an elegant solution, but, it is
+ satisfactory for now.
+
+Tue Aug 24 12:14:38 EDT 1999
+ I just noticed a bug in ifacechk. The code that reverses the
logical/physical
+ devices doesn't work quite right. Apparently if /var/run/ppp-ppp0.dev
+ contains 'ppp1', then it means that the physical device 'ppp0' is acting as
+ the logical device 'ppp1'. That's news to me. The reversal was working
+ before, because if both devices are up, the reversal is correct even counting
+ my error. Did you know that Keppler made two glaring errors in his calculus,
+ and the second cancled out the first? I guess I'm up there with greatness.
;)
+
+Tue Aug 24 12:07:07 EDT 1999
+ I added some better error checking. When one of my devices would go down,
+ wmjiface would start showing me non-sense while the device is coming back
+ up. If an error is detected, the exponential averaging get's cleared out.
+ That helps to keep it from holding on to negative speeds for long periods.
+
+Wed Aug 18 02:22:43 EDT 1999
+ I finnally installed the weighted averaging I was talking about! exp_avg =
+ (alpha*current_bps) + ((1-alpha)*last_average). This method is called
+ exponetial averaging. I had to install a "beta pulldown," where alpha is
+ equals beta iff the xfer_rate exactly equals 0. It gives a more realistic
+ feel to the end of the xfer, rather than a drawn out approach to 0. That
+ limit could go on for tens of minutes, since I used doubles (so the history
+ will contain a more accurate approximation).
+
+Tue Aug 17 22:48:18 EDT 1999
+ Made a minor change that reverses my ppp devices when needed. The ppp
devices
+ are fcfs btw, I don't want the imaginary device, I want the real device.
+
+Tue Aug 17 03:47:06 EDT 1999
+ Somewhat drunkenly completed a change to ifacechk to remove the old tmp
files.
+ Ended up using a system() if ... /proc/dir exists check ... how ugly.
+ but hey... I was already using /proc *smirk*
+
+Mon Aug 16 22:07:05 EDT 1999
+ noticed an ugly flaw in ifacechk. Every instance of ifacechk was overwriting
+ every other's data ... I used perl's '$$' variable to seperate it out. The
+ only trouble is that there will now be a huge buildup of the stat files after
+ a while. How to resolve that?
+
+Mon Aug 16 22:06:15 EDT 1999
+ added a new switch (and the support for it). -D: now lists in/out at the
+ same time.
+
+Mon Aug 16 20:06:18 EDT 1999
+ huge changes to the update loop in the form of more modularization.
+
+Tue Jul 20 11:08:38 EDT 1999
+ installed new date and version stuff in the makefile, and the print_help()
+
+Wed Jul 14 19:08:20 EDT 1999
+ It's new... There's no changes... besides it's existance.
diff --git a/wmjiface/COPYING b/wmjiface/COPYING
new file mode 100644
index 0000000..a43ea21
--- /dev/null
+++ b/wmjiface/COPYING
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 675 Mass Ave, Cambridge, MA 02139, USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ Appendix: How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) 19yy <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) 19yy name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
diff --git a/wmjiface/CREDITS b/wmjiface/CREDITS
new file mode 100644
index 0000000..9347731
--- /dev/null
+++ b/wmjiface/CREDITS
@@ -0,0 +1,48 @@
+
+I based jDockApp-lib on wmstock. So I attached the original credits.
+
+
+
+Jettero Heller
+
+
+------------------------------ Attachment -------------------------------------
+
+The inspiration and some of the code for wmstock came from wmWeather (v1.30),
+an excellent dock application. wmWeather was written by Mike Henderson
+and it is available from:
+
+ http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml
+
+*** I no longer use this PERL package, but I did take some code from it,
+and used it for versions 0.01 and 0.02 ***
+
+I also used some code from the Finance::YahooQuotes PERL Module, which is
+written by Dj Padzensky <[email protected]> The Finance::YahooQuote home page can
+ be found at http://www.padz.net/~djpadz/YahooQuote/
+
+
+--------------------------------------------------------------------------------
+
+As I learned more about writing dock apps, I produced more and more of
+my own code, and fixed what I believe were engineering flaws in wmWeather,
+however, I recommend to anyone who wants to get started in dock app programming
+to start with wmWeather, and perhaps also check out this page:
+
+ http://www.inria.fr/koala/lehors/xpm.html (info about XPMs)
+
+Also, for those of you using XPMs in your code, I found its easier to start
+with someone elses XPM, use your favorite text editor to rename the
+variables in the structure, and then a picture editor (xpaint) to edit the
+image. For me, I had to work with the image as a ppm in xpaint, and then
+run ppmtoxpm to convert the image.
+
+--------------------------------------------------------------------------------
+
+Thanks to these people for helping fix/identify bugs
+
+Bug Date Credit
+No ticker name 06/21/99 Keldon Jones ([email protected]) - my
+ roommate, wrote a 20 byte patch.
+Various fixes 06/24/99 Thomas Ribbrock - wrote a large patch
+ to fix lots of stuff!
diff --git a/wmjiface/INSTALL b/wmjiface/INSTALL
new file mode 100644
index 0000000..a5cec31
--- /dev/null
+++ b/wmjiface/INSTALL
@@ -0,0 +1,35 @@
+Installation instructions for wmjiface.
+
+Requirements
+---------------------------------------------------------------------------
+wmjiface requires the Xpm library (which should be available on most machines
+with XFree86 installed). You'll also need some version of perl 5+ running.
+
+
+Installation
+---------------------------------------------------------------------------
+1) tar -zxf wmjiface-#.#
+
+2) cd wmjiface/src
+
+3) edit the Makefile to change the prefix variable and the
+ owner and group variables.
+ prefix describes where the files go during install.
+ owner and group describe who owns it after install.
+ You must uncomment owner and group if you use them.
+
+4) make install
+
+5) edit ifacechk as necessary to make it go...
+ As it stands, ifacechk will not work on SunOS/Solaris.
+ I used /proc to get my net info. Most likely, it won't even
+ work on some familiar linux boxes.
+
+--------------------------------------------------------------------------
+
+
+If you have problems, please contact me.
+Especially if you can make ifacechk work on SunOS.
+
+Jettero Heller
[email protected]
diff --git a/wmjiface/README b/wmjiface/README
new file mode 100644
index 0000000..c84c458
--- /dev/null
+++ b/wmjiface/README
@@ -0,0 +1,5 @@
+I needed a cpu-non-intensive way to monitor my network ifaces. I only have 3
+(non-loopback), so I designed this whimpy little thing.
+
+
+Jet ([email protected])
diff --git a/wmjiface/README.firewall_trouble b/wmjiface/README.firewall_trouble
new file mode 120000
index 0000000..bdd4156
--- /dev/null
+++ b/wmjiface/README.firewall_trouble
@@ -0,0 +1 @@
+README.ifacechk
\ No newline at end of file
diff --git a/wmjiface/README.ifacechk b/wmjiface/README.ifacechk
new file mode 100644
index 0000000..9c62bd3
--- /dev/null
+++ b/wmjiface/README.ifacechk
@@ -0,0 +1,22 @@
+ifacechck is the program called by wmjiface to get your
+interface statistics. It uses /proc/net/dev to gather the
+info.
+
+If you do not have a /proc/net/dev, you should e-mail me,
+cuz I don't know what to do with you.
+
+If your /proc/net/dev is on another machine (as would be the
+case with a firewall) then you'll need to use the files in
+the svr.client directory.
+
+Install the cattheprocinfo program in /sbin/ or
+/usr/local/sbin--where is really up to you--on the firewall
+machine. Then add '/usr/sbin/cattheprocinfo &' to your
+rc.local (or some other likely startup script).
+
+Replace your install'd ifacechk with the spiffy new
+ifacechk.client from the svr.client directory.
+
+You will need to edit the spiffy new ifacechk. It's using
+socket communication to talk to the cattheprocinfo "server"
+on your firewall. Point the poor client to the right place?
diff --git a/wmjiface/README.wont_compile b/wmjiface/README.wont_compile
new file mode 100644
index 0000000..7d586d9
--- /dev/null
+++ b/wmjiface/README.wont_compile
@@ -0,0 +1,8 @@
+If your copy of wmjiface won't compile, then e-mail me what
+happened. Please include all the compiler output you can
+think to capture. I won't be able to figure it out without
+your help. ;)
+
+Before you e-mail me though, try uncommenting the
+-I/usr/i386-glibc20-linux/include in the makefile.
+You might be having egcs trouble.
diff --git a/wmjiface/src/Makefile b/wmjiface/src/Makefile
new file mode 100644
index 0000000..591a12f
--- /dev/null
+++ b/wmjiface/src/Makefile
@@ -0,0 +1,56 @@
+prefix=/home/jettero/bin
+#owner=-o root
+#group=-g root
+
+# Makefile for ${name}
+# <[email protected]>
+# based on wmWeather - see ../Credits for more information
+
+CC = gcc
+CFLAGS = #-O2 -g #-Wall # I think this option is idiotic
+INCDIR = -I/usr/X11R6/include/X11 -I/usr/X11R6/include
#-I/usr/i386-glibc20-linux/include
+DESTDIR= /usr/X11R6
+LIBDIR = -L/usr/X11R6/lib
+# for linux
+LIBS = -lXpm -lX11 -lXext
+# for Solaris
+# LIBS = -lXpm -lX11 -lXext -lsocket
+
+OBJS = jDockApp.o xutils.o jprintf.o
+
+name=wmjiface
+version=1.7cb
+
+CFLAGS=-DVERSION="\"${version}\"" -DBDATE="\"${DATESTR}\""
+
+all:
+ make real_all "DATESTR=`date '+%B %d, %Y'`"
+
+real_all: ${name}
+
+jDockApp.o: jDockApp/jDockApp_main.xpm jDockApp/jDockApp.c
+ cd $*; make $*.o
+
+xutils.o: xutils/xutils.c
+ cd $*; make $*.o
+
+jprintf.o: jDockApp/jprintf.c
+ cd jDockApp; make jprintf.o
+
+
+${name}: $(OBJS) ${name}.c
+ $(CC) $(CFLAGS) $(SYSTEM) -o ${name} $^ $(INCDIR) $(LIBDIR) $(LIBS)
+
+install: all
+ install ${owner} ${group} -s -m 755 ./${name} ${prefix}/${name}
+ install ${owner} ${group} -m 755 ./ifacechk ${prefix}/ifacechk
+ make clean;
+
+clean:
+ rm -f *.o ${name}
+
+wpack: pack
+ cd ../../; mv ${name}-${version}.tgz /home/jettero/www/dockapps
+
+pack: clean
+ cd ../..; tar -zcf ${name}-${version}.tgz ${name}
diff --git a/wmjiface/src/ifacechk b/wmjiface/src/ifacechk
new file mode 100755
index 0000000..fac40b7
--- /dev/null
+++ b/wmjiface/src/ifacechk
@@ -0,0 +1,140 @@
+#!/usr/bin/perl
+################
+# cat /proc/net/dev
+#Inter-| Receive | Transmit
+# face |bytes packets errs drop fifo frame compressed multicast|bytes
packets errs drop fifo colls carrier compressed
+# lo:22905347 39915 0 0 0 0 0 0 22905347
39915 0 0 0 0 0 0
+# eth0: 923454 7885 0 0 0 0 0 347 1987558
6791 0 0 0 0 0 0
+# ppp0: 7080806 7876 2 0 0 2 0 0 314121
5267 0 0 0 0 0 0
+# ppp1: 331265 7810 0 0 0 0 0 0 233915
8563 0 0 0 0 0 0
+#########################
+
+$ppid=getppid();
+
+$iface="/proc/net/dev";
+$staname="$ENV{HOME}/.wmjiface.stat.$ppid";
+
+@statusFiles=`ls $ENV{HOME}/.wmjiface.stat.* 2>/dev/null`;
+
+foreach (@statusFiles) {
+ s/^.*[.]wmjiface[.]stat[.]//;
+ chomp;
+ system("rm $ENV{HOME}/.wmjiface.stat.$_") if not ( -d "/proc/$_" );
+}
+
+$now=time();
+
+$then; # aquired during read_stat;
+
+%statso; # aquired during read_stat;
+%statsc; # aquired during read_proc;
+
+&read_proc();
+
+if(&read_stat()) {
+ $tdiff = $now - $then;
+
+ foreach (keys %statsc) {
+ if($statso{$_}) {
+ $bytesin = $statsc{$_}{bytesi} - $statso{$_}{bytesi};
+ $bytesout = $statsc{$_}{byteso} - $statso{$_}{byteso};
+
+ #$packetsin = $statsc{$_}{packetsi} - $statso{$_}{packetsi};
+ #$packetsout = $statsc{$_}{packetso} - $statso{$_}{packetso};
+
+ $bytesin_ps = $bytesin/$tdiff if $tdiff > 0;
+ $bytesout_ps = $bytesout/$tdiff if $tdiff > 0;
+
+ #$packetsin_ps = $packetsin/$tdiff if $tdiff > 0;
+ #$packetsout_ps = $packetsout/$tdiff if $tdiff > 0;
+
+ printf "%s %i %i\n", $_, $bytesin_ps, $bytesout_ps;
+ }
+ }
+
+}
+
+&write_stat();
+exit;
+
+
+##################################################################3
+
+sub write_stat() {
+ open sta, ">$staname" or die;
+
+ printf sta "%i\n", $now;
+
+ foreach (keys %statsc) {
+ printf sta "%s:%i:%i:%i:%i:%i\n",
+ $_,
+ $statsc{$_}{bytesi},
+ $statsc{$_}{byteso},
+ $statsc{$_}{packetsi},
+ $statsc{$_}{packetso};
+ }
+
+ close sta;
+}
+
+sub read_stat() {
+ open sta, "$staname" or return ();
+
+ $then = <sta>;
+ chomp $then;
+
+ while(<sta>) {
+ chomp;
+
+ ($face, $bytesi, $byteso, $packetsi, $packetso) = split ":";
+
+ $statso{$face} = { bytesi => $bytesi,
+ byteso => $byteso,
+ packetsi => $byteso,
+ packetso => $byteso };
+ }
+
+ close sta;
+ return 1;
+}
+
+sub read_proc() {
+ open dev, "$iface" or die;
+
+ $waste = <dev>; # title
+ $waste = <dev>; # title
+ $waste = <dev>; # lo
+
+ $devfilesexist = `ls /var/run/ppp*.dev 2>/dev/null`; chomp $devfilesexist;
+
+ while(<dev>) {
+ chomp; s/[ ]+/:/g; s/^://; s/:$//; s/[:]+/:/g;
+
+ s/([0-9]+)([0-9]{9})/$2/g;
+
+ ($face,
+ $bytesi, $packetsi, $errsi, $dropi, $fifoi, $frame,
$compressedi, $multicast,
+ $byteso, $packetso, $errso, $dropo, $fifoo, $colls, $carrier,
$compressedo
+ ) = split ":";
+
+ if($devfilesexist !~ /^$/ and $face =~ /ppp/) {
+ $tosser = `grep $face /var/run/*.dev /dev/null | head -1`;
+ chomp $tosser;
+ $tosser =~ s/^[^-]*-//;
+ $tosser =~ s/.dev:.*//;
+ if($tosser !~ /^$/) {
+ $statsc{$tosser} = { bytesi => $bytesi,
+ byteso => $byteso,
+ packetsi => $byteso,
+ packetso => $byteso };
+ }
+ } else {
+ $statsc{$face} = { bytesi => $bytesi,
+ byteso => $byteso,
+ packetsi => $byteso,
+ packetso => $byteso };
+ }
+ }
+
+ close dev;
+}
diff --git a/wmjiface/src/jDockApp/Makefile b/wmjiface/src/jDockApp/Makefile
new file mode 100644
index 0000000..bba743d
--- /dev/null
+++ b/wmjiface/src/jDockApp/Makefile
@@ -0,0 +1,26 @@
+# Makefile for ${name}
+# <[email protected]>
+# based on wmWeather - see ../Credits for more information
+
+CC = gcc
+CFLAGS = #-O2 -g #-Wall # I think this option is idiotic
+INCDIR = -I/usr/X11R6/include/X11 -I/usr/X11R6/include
-I/usr/i386-glibc20-linux/include
+DESTDIR= /usr/X11R6
+LIBDIR = -L/usr/X11R6/lib
+# for linux
+LIBS = -lXpm -lX11 -lXext
+# for Solaris
+# LIBS = -lXpm -lX11 -lXext -lsocket
+
+.c.o:
+ $(CC) $(CFLAGS) -D$(shell echo `uname -s`) -c $< -o $*.o \
+ $(INCDIR)
+ mv $*.o ..
+
+all: jprintf.o jDockApp.o
+
+jprintf.o: jprintf.c jDockApp.h
+jDockApp.o: jDockApp.c jDockApp.h jDockApp_main.xpm jDockApp_mask.xbm
+
+clean:
+ rm -f ${name}.o
diff --git a/wmjiface/src/jDockApp/colors.h b/wmjiface/src/jDockApp/colors.h
new file mode 100644
index 0000000..c2ddd8b
--- /dev/null
+++ b/wmjiface/src/jDockApp/colors.h
@@ -0,0 +1,14 @@
+#ifndef _____COLORS_______________________________________H
+#define _____COLORS_______________________________________H
+
+#define RED 1
+#define ORANGE 8
+#define YELLOW 15
+#define GREEN 22
+#define BLUE 29
+#define INDIGO 36
+#define VIOLET 43
+#define PINK 50
+#define CYAN 57
+
+#endif
diff --git a/wmjiface/src/jDockApp/jDockApp.c b/wmjiface/src/jDockApp/jDockApp.c
new file mode 100644
index 0000000..b80c016
--- /dev/null
+++ b/wmjiface/src/jDockApp/jDockApp.c
@@ -0,0 +1,58 @@
+#include "jDockApp.h"
+
+int loop_delay = 1000;
+int update_delay = 60;
+
+void set_update_delay(int i) { update_delay = i; }
+void set_loop_delay(int i) { loop_delay = i; }
+
+int main(int argc, char **argv) {
+ XEvent event;
+ long update_delay_counter;
+
+ initXwindow(argc, argv);
+ openXwindow(argc, argv, jDockApp_main_xpm, jDockApp_mask_xpm,
+ mask_width, mask_height, "#000000", "#000000", "#000000",
+ "#000000", "#000000"
+ );
+
+ setup(argc, argv);
+
+ do_update();
+
+ update_delay_counter = 100000 * update_delay;
+
+ while(true) {
+ RedrawWindow();
+
+ while(XPending(display)) {
+ XNextEvent(display, &event);
+ switch(event.type) {
+ case Expose:
+ do_expose();
+ RedrawWindow();
+ break;
+ case ButtonRelease:
+ do_button_release();
+ RedrawWindow();
+ break;
+ case EnterNotify:
+ XSetInputFocus(display,
+ PointerRoot, RevertToParent, CurrentTime);
+ break;
+ case LeaveNotify:
+ XSetInputFocus(display,
+ PointerRoot, RevertToParent, CurrentTime);
+ break;
+ }
+ }
+ usleep(1000);
+ update_delay_counter -= 1000;
+ if(update_delay_counter<=0) {
+ do_update();
+ update_delay_counter = 100000 * update_delay;
+ }
+ }
+
+ return 0;
+}
diff --git a/wmjiface/src/jDockApp/jDockApp.h b/wmjiface/src/jDockApp/jDockApp.h
new file mode 100644
index 0000000..f01d64e
--- /dev/null
+++ b/wmjiface/src/jDockApp/jDockApp.h
@@ -0,0 +1,41 @@
+#ifndef JetDockApp_H
+#define JetDockApp_H
+
+#include <stdio.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+#include <sys/time.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <ctype.h>
+#include <errno.h>
+#include <X11/X.h>
+#include <X11/xpm.h>
+#include "../xutils/xutils.h"
+
+#include "../xutils/xutils.h"
+
+#include "jDockApp_main.xpm"
+#include "jDockApp_mask.xbm"
+
+/* These are defined in your application */
+void setup();
+void do_update();
+void do_expose();
+void do_button_release();
+
+/* Thse are in jDockApp */
+void set_update_delay(int);
+void set_loop_delay(int);
+
+/* These two are in jprintf.c */
+void jpprintf(int x, int y, int color, const char *, ...);
+void jprintf( int color, const char *, ...);
+
+#define clear_window() copyXPMArea(587, 0, 64, 64, 0, 0)
+#define true 1
+#define false 0
+
+#endif
diff --git a/wmjiface/src/jDockApp/jDockApp_main.xpm
b/wmjiface/src/jDockApp/jDockApp_main.xpm
new file mode 100644
index 0000000..c18ee36
--- /dev/null
+++ b/wmjiface/src/jDockApp/jDockApp_main.xpm
@@ -0,0 +1,83 @@
+/* XPM */
+static char * jDockApp_main_xpm[] = {
+"650 65 15 1",
+" c None",
+". c #000000",
+"+ c #FFFFFF",
+"@ c #CDCECD",
+"# c #F90411",
+"$ c #7B7D7B",
+"% c #C5C2C5",
+"& c #F79707",
+"* c #F9F507",
+"= c #38F409",
+"- c #076EF4",
+"; c #2704EA",
+"> c #B204DD",
+", c #D80688",
+"' c #0EF9EE",
+"..........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................",
+".+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++@.......................#....#....##..####...#..####..##..####..##...##...##..###...##..###..####.####..##..#..#.###.....#.#..#.#....#..#.#..#..##..###...##..###...##..###..#..#.#..#.#..#.#..#.#.#..####...#...##..............#.....#.............#...#.....#..#....###..###...........................................................#...#.#......#............#........#.......#.....#.....#..#....##.......................................#...........................................................................................+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++@",
+".+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$......................#.#..##...#..#....#..##..#....#.......#.#..#.#..#.#..#.#..#.#..#.#..#.#....#....#..#.#..#..#......#.#.#..#....####.##.#.#..#.#..#.#..#.#..#.#..#..#...#..#.#..#.#..#.#..#.#.#.....#...#..#..#..#.#...###..#..#.#.#..#...#.#..#.....#...#....#...#......#....#..#.......#.#......#.................................##...#.#......#............#.......#.#......#..............#.....#.......................................#...........................................................................................+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$",
+".+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$......................#.#...#......#..##..#.#..###..###....#...##..#..#.#..#.###..#....#..#.###..###..#....####..#......#.##...#....####.##.#.#..#.#..#.#..#.#..#..#....#...#..#.#..#.#..#..##..#.#....#....#..#.##.#####.#.#.....#......#.#...#...#.....#..##....##..#......#...#....#.....#...#.....#.......###...#....#...................#.#..###.###...##...###..##...#....###.###..##.....#..#.#...#...#.#..###...##..###...###.###...###.###..#..#.#.#..#..#.#..#.#..#.####...........................................................+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$",
+".+@@........................................................@@$......................#.#...#.....#.....#.####....#.#..#...#..#..#..###.####.#..#.#....#..#.#....#....#.##.#..#..#......#.##...#....#..#.#.##.#..#.###..#..#.###....#...#...#..#.#..#.####..##...#....#.....#..#.##..#.#...###...#........#...###..#.....#...#....#...#......#..#......#...#.....#..#####.###....................................#..#.#..#.#....#..#.#.##.###..#..#.#..#..#.....#..##....#...####.#..#.#..#.#..#.#..#.#..#.##....#...#..#.#.#..#..#..##..#..#...#............................................................+@@........................................................@@$",
+".+@@.......................................................%@@$......................#.#...#....#...#..#...#..#..#.#..#..#...#..#....#.#..#.#..#.#..#.#..#.#....#....#..#.#..#..#...#..#.#.#..#....#..#.#.##.#..#.#....##.#.#.#..#..#..#...#..#..##..####.#..#..#...#.........#....#####...#.#.#..#.....#.#...#...#.....#...#....#...#......#...#....#...#.......#...#.......###...#....#.........##............#.##.#..#.#....#..#.##....#....##..#..#..#.....#..#.#...#...#..#.#..#.#..#.#..#.#..#.#......##..#...#..#.#.#..####..##...#.#..#.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................#...###..####..##....#...##...##...#....##...##..#..#.###...##..###..####.#.....###.#..#.###...##..#..#.####.#..#.#..#..##..#.....##..#..#..##...#....##...##..#..#.#..#..#...####...#...##...#.#...###.....#......#.#.#.#...#...#.....#..#....###..###....#..#................#.................#.....#....##.............#.#.###...##...###..##...#...#....#..#.###..#.#..#..#.###..#..#.#..#..##..###...###.#....###....##..###..#...####.#..#...#..####...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$...........................................................................................................................................................#.................................................................................................................................................................##.................................................###............#............................#.......#.....................................#..................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................&....&....&&..&&&&...&..&&&&..&&..&&&&..&&...&&...&&..&&&...&&..&&&..&&&&.&&&&..&&..&..&.&&&.....&.&..&.&....&..&.&..&..&&..&&&...&&..&&&...&&..&&&..&..&.&..&.&..&.&..&.&.&..&&&&...&...&&..............&.....&.............&...&.....&..&....&&&..&&&...........................................................&...&.&......&............&........&.......&.....&.....&..&....&&.......................................&...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................&.&..&&...&..&....&..&&..&....&.......&.&..&.&..&.&..&.&..&.&..&.&..&.&....&....&..&.&..&..&......&.&.&..&....&&&&.&&.&.&..&.&..&.&..&.&..&.&..&..&...&..&.&..&.&..&.&..&.&.&.....&...&..&..&..&.&...&&&..&..&.&.&..&...&.&..&.....&...&....&...&......&....&..&.......&.&......&.................................&&...&.&......&............&.......&.&......&..............&.....&.......................................&...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................&.&...&......&..&&..&.&..&&&..&&&....&...&&..&..&.&..&.&&&..&....&..&.&&&..&&&..&....&&&&..&......&.&&...&....&&&&.&&.&.&..&.&..&.&..&.&..&..&....&...&..&.&..&.&..&..&&..&.&....&....&..&.&&.&&&&&.&.&.....&......&.&...&...&.....&..&&....&&..&......&...&....&.....&...&.....&.......&&&...&....&...................&.&..&&&.&&&...&&...&&&..&&...&....&&&.&&&..&&.....&..&.&...&...&.&..&&&...&&..&&&...&&&.&&&...&&&.&&&..&..&.&.&..&..&.&..&.&..&.&&&&...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................&.&...&.....&.....&.&&&&....&.&..&...&..&..&..&&&.&&&&.&..&.&....&..&.&....&....&.&&.&..&..&......&.&&...&....&..&.&.&&.&..&.&&&..&..&.&&&....&...&...&..&.&..&.&&&&..&&...&....&.....&..&.&&..&.&...&&&...&........&...&&&..&.....&...&....&...&......&..&......&...&.....&..&&&&&.&&&....................................&..&.&..&.&....&..&.&.&&.&&&..&..&.&..&..&.....&..&&....&...&&&&.&..&.&..&.&..&.&..&.&..&.&&....&...&..&.&.&..&..&..&&..&..&...&............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................&.&...&....&...&..&...&..&..&.&..&..&...&..&....&.&..&.&..&.&..&.&..&.&....&....&..&.&..&..&...&..&.&.&..&....&..&.&.&&.&..&.&....&&.&.&.&..&..&..&...&..&..&&..&&&&.&..&..&...&.........&....&&&&&...&.&.&..&.....&.&...&...&.....&...&....&...&......&...&....&...&.......&...&.......&&&...&....&.........&&............&.&&.&..&.&....&..&.&&....&....&&..&..&..&.....&..&.&...&...&..&.&..&.&..&.&..&.&..&.&......&&..&...&..&.&.&..&&&&..&&...&.&..&.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................&...&&&..&&&&..&&....&...&&...&&...&....&&...&&..&..&.&&&...&&..&&&..&&&&.&.....&&&.&..&.&&&...&&..&..&.&&&&.&..&.&..&..&&..&.....&&..&..&..&&...&....&&...&&..&..&.&..&..&...&&&&...&...&&...&.&...&&&.....&......&.&.&.&...&...&.....&..&....&&&..&&&....&..&................&.................&.....&....&&.............&.&.&&&...&&...&&&..&&...&...&....&..&.&&&..&.&..&..&.&&&..&..&.&..&..&&..&&&...&&&.&....&&&....&&..&&&..&...&&&&.&..&...&..&&&&...........................................................+@@.......................................................%@@$",
+".+@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@$...........................................................................................................................................................&.................................................................................................................................................................&&.................................................&&&............&............................&.......&.....................................&..................................................................+@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@$",
+".+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$.......................*....*....**..****...*..****..**..****..**...**...**..***...**..***..****.****..**..*..*.***.....*.*..*.*....*..*.*..*..**..***...**..***...**..***..*..*.*..*.*..*.*..*.*.*..****...*...**..............*.....*.............*...*.....*..*....***..***...........................................................*...*.*......*............*........*.......*.....*.....*..*....**.......................................*...........................................................................................+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$",
+".+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$......................*.*..**...*..*....*..**..*....*.......*.*..*.*..*.*..*.*..*.*..*.*..*.*....*....*..*.*..*..*......*.*.*..*....****.**.*.*..*.*..*.*..*.*..*.*..*..*...*..*.*..*.*..*.*..*.*.*.....*...*..*..*..*.*...***..*..*.*.*..*...*.*..*.....*...*....*...*......*....*..*.......*.*......*.................................**...*.*......*............*.......*.*......*..............*.....*.......................................*...........................................................................................+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$",
+".+@@........................................................@@$......................*.*...*......*..**..*.*..***..***....*...**..*..*.*..*.***..*....*..*.***..***..*....****..*......*.**...*....****.**.*.*..*.*..*.*..*.*..*..*....*...*..*.*..*.*..*..**..*.*....*....*..*.**.*****.*.*.....*......*.*...*...*.....*..**....**..*......*...*....*.....*...*.....*.......***...*....*...................*.*..***.***...**...***..**...*....***.***..**.....*..*.*...*...*.*..***...**..***...***.***...***.***..*..*.*.*..*..*.*..*.*..*.****...........................................................+@@........................................................@@$",
+".+@@.......................................................%@@$......................*.*...*.....*.....*.****....*.*..*...*..*..*..***.****.*..*.*....*..*.*....*....*.**.*..*..*......*.**...*....*..*.*.**.*..*.***..*..*.***....*...*...*..*.*..*.****..**...*....*.....*..*.**..*.*...***...*........*...***..*.....*...*....*...*......*..*......*...*.....*..*****.***....................................*..*.*..*.*....*..*.*.**.***..*..*.*..*..*.....*..**....*...****.*..*.*..*.*..*.*..*.*..*.**....*...*..*.*.*..*..*..**..*..*...*............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................*.*...*....*...*..*...*..*..*.*..*..*...*..*....*.*..*.*..*.*..*.*..*.*....*....*..*.*..*..*...*..*.*.*..*....*..*.*.**.*..*.*....**.*.*.*..*..*..*...*..*..**..****.*..*..*...*.........*....*****...*.*.*..*.....*.*...*...*.....*...*....*...*......*...*....*...*.......*...*.......***...*....*.........**............*.**.*..*.*....*..*.**....*....**..*..*..*.....*..*.*...*...*..*.*..*.*..*.*..*.*..*.*......**..*...*..*.*.*..****..**...*.*..*.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................*...***..****..**....*...**...**...*....**...**..*..*.***...**..***..****.*.....***.*..*.***...**..*..*.****.*..*.*..*..**..*.....**..*..*..**...*....**...**..*..*.*..*..*...****...*...**...*.*...***.....*......*.*.*.*...*...*.....*..*....***..***....*..*................*.................*.....*....**.............*.*.***...**...***..**...*...*....*..*.***..*.*..*..*.***..*..*.*..*..**..***...***.*....***....**..***..*...****.*..*...*..****...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$...........................................................................................................................................................*.................................................................................................................................................................**.................................................***............*............................*.......*.....................................*..................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................=....=....==..====...=..====..==..====..==...==...==..===...==..===..====.====..==..=..=.===.....=.=..=.=....=..=.=..=..==..===...==..===...==..===..=..=.=..=.=..=.=..=.=.=..====...=...==..............=.....=.............=...=.....=..=....===..===...........................................................=...=.=......=............=........=.......=.....=.....=..=....==.......................................=...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................=.=..==...=..=....=..==..=....=.......=.=..=.=..=.=..=.=..=.=..=.=..=.=....=....=..=.=..=..=......=.=.=..=....====.==.=.=..=.=..=.=..=.=..=.=..=..=...=..=.=..=.=..=.=..=.=.=.....=...=..=..=..=.=...===..=..=.=.=..=...=.=..=.....=...=....=...=......=....=..=.......=.=......=.................................==...=.=......=............=.......=.=......=..............=.....=.......................................=...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................=.=...=......=..==..=.=..===..===....=...==..=..=.=..=.===..=....=..=.===..===..=....====..=......=.==...=....====.==.=.=..=.=..=.=..=.=..=..=....=...=..=.=..=.=..=..==..=.=....=....=..=.==.=====.=.=.....=......=.=...=...=.....=..==....==..=......=...=....=.....=...=.....=.......===...=....=...................=.=..===.===...==...===..==...=....===.===..==.....=..=.=...=...=.=..===...==..===...===.===...===.===..=..=.=.=..=..=.=..=.=..=.====...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................=.=...=.....=.....=.====....=.=..=...=..=..=..===.====.=..=.=....=..=.=....=....=.==.=..=..=......=.==...=....=..=.=.==.=..=.===..=..=.===....=...=...=..=.=..=.====..==...=....=.....=..=.==..=.=...===...=........=...===..=.....=...=....=...=......=..=......=...=.....=..=====.===....................................=..=.=..=.=....=..=.=.==.===..=..=.=..=..=.....=..==....=...====.=..=.=..=.=..=.=..=.=..=.==....=...=..=.=.=..=..=..==..=..=...=............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................=.=...=....=...=..=...=..=..=.=..=..=...=..=....=.=..=.=..=.=..=.=..=.=....=....=..=.=..=..=...=..=.=.=..=....=..=.=.==.=..=.=....==.=.=.=..=..=..=...=..=..==..====.=..=..=...=.........=....=====...=.=.=..=.....=.=...=...=.....=...=....=...=......=...=....=...=.......=...=.......===...=....=.........==............=.==.=..=.=....=..=.==....=....==..=..=..=.....=..=.=...=...=..=.=..=.=..=.=..=.=..=.=......==..=...=..=.=.=..====..==...=.=..=.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................=...===..====..==....=...==...==...=....==...==..=..=.===...==..===..====.=.....===.=..=.===...==..=..=.====.=..=.=..=..==..=.....==..=..=..==...=....==...==..=..=.=..=..=...====...=...==...=.=...===.....=......=.=.=.=...=...=.....=..=....===..===....=..=................=.................=.....=....==.............=.=.===...==...===..==...=...=....=..=.===..=.=..=..=.===..=..=.=..=..==..===...===.=....===....==..===..=...====.=..=...=..====...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$...........................................................................................................................................................=.................................................................................................................................................................==.................................................===............=............................=.......=.....................................=..................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................-....-....--..----...-..----..--..----..--...--...--..---...--..---..----.----..--..-..-.---.....-.-..-.-....-..-.-..-..--..---...--..---...--..---..-..-.-..-.-..-.-..-.-.-..----...-...--..............-.....-.............-...-.....-..-....---..---...........................................................-...-.-......-............-........-.......-.....-.....-..-....--.......................................-...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................-.-..--...-..-....-..--..-....-.......-.-..-.-..-.-..-.-..-.-..-.-..-.-....-....-..-.-..-..-......-.-.-..-....----.--.-.-..-.-..-.-..-.-..-.-..-..-...-..-.-..-.-..-.-..-.-.-.....-...-..-..-..-.-...---..-..-.-.-..-...-.-..-.....-...-....-...-......-....-..-.......-.-......-.................................--...-.-......-............-.......-.-......-..............-.....-.......................................-...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................-.-...-......-..--..-.-..---..---....-...--..-..-.-..-.---..-....-..-.---..---..-....----..-......-.--...-....----.--.-.-..-.-..-.-..-.-..-..-....-...-..-.-..-.-..-..--..-.-....-....-..-.--.-----.-.-.....-......-.-...-...-.....-..--....--..-......-...-....-.....-...-.....-.......---...-....-...................-.-..---.---...--...---..--...-....---.---..--.....-..-.-...-...-.-..---...--..---...---.---...---.---..-..-.-.-..-..-.-..-.-..-.----...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................-.-...-.....-.....-.----....-.-..-...-..-..-..---.----.-..-.-....-..-.-....-....-.--.-..-..-......-.--...-....-..-.-.--.-..-.---..-..-.---....-...-...-..-.-..-.----..--...-....-.....-..-.--..-.-...---...-........-...---..-.....-...-....-...-......-..-......-...-.....-..-----.---....................................-..-.-..-.-....-..-.-.--.---..-..-.-..-..-.....-..--....-...----.-..-.-..-.-..-.-..-.-..-.--....-...-..-.-.-..-..-..--..-..-...-............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................-.-...-....-...-..-...-..-..-.-..-..-...-..-....-.-..-.-..-.-..-.-..-.-....-....-..-.-..-..-...-..-.-.-..-....-..-.-.--.-..-.-....--.-.-.-..-..-..-...-..-..--..----.-..-..-...-.........-....-----...-.-.-..-.....-.-...-...-.....-...-....-...-......-...-....-...-.......-...-.......---...-....-.........--............-.--.-..-.-....-..-.--....-....--..-..-..-.....-..-.-...-...-..-.-..-.-..-.-..-.-..-.-......--..-...-..-.-.-..----..--...-.-..-.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................-...---..----..--....-...--...--...-....--...--..-..-.---...--..---..----.-.....---.-..-.---...--..-..-.----.-..-.-..-..--..-.....--..-..-..--...-....--...--..-..-.-..-..-...----...-...--...-.-...---.....-......-.-.-.-...-...-.....-..-....---..---....-..-................-.................-.....-....--.............-.-.---...--...---..--...-...-....-..-.---..-.-..-..-.---..-..-.-..-..--..---...---.-....---....--..---..-...----.-..-...-..----...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$...........................................................................................................................................................-.................................................................................................................................................................--.................................................---............-............................-.......-.....................................-..................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................;....;....;;..;;;;...;..;;;;..;;..;;;;..;;...;;...;;..;;;...;;..;;;..;;;;.;;;;..;;..;..;.;;;.....;.;..;.;....;..;.;..;..;;..;;;...;;..;;;...;;..;;;..;..;.;..;.;..;.;..;.;.;..;;;;...;...;;..............;.....;.............;...;.....;..;....;;;..;;;...........................................................;...;.;......;............;........;.......;.....;.....;..;....;;.......................................;...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................;.;..;;...;..;....;..;;..;....;.......;.;..;.;..;.;..;.;..;.;..;.;..;.;....;....;..;.;..;..;......;.;.;..;....;;;;.;;.;.;..;.;..;.;..;.;..;.;..;..;...;..;.;..;.;..;.;..;.;.;.....;...;..;..;..;.;...;;;..;..;.;.;..;...;.;..;.....;...;....;...;......;....;..;.......;.;......;.................................;;...;.;......;............;.......;.;......;..............;.....;.......................................;...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................;.;...;......;..;;..;.;..;;;..;;;....;...;;..;..;.;..;.;;;..;....;..;.;;;..;;;..;....;;;;..;......;.;;...;....;;;;.;;.;.;..;.;..;.;..;.;..;..;....;...;..;.;..;.;..;..;;..;.;....;....;..;.;;.;;;;;.;.;.....;......;.;...;...;.....;..;;....;;..;......;...;....;.....;...;.....;.......;;;...;....;...................;.;..;;;.;;;...;;...;;;..;;...;....;;;.;;;..;;.....;..;.;...;...;.;..;;;...;;..;;;...;;;.;;;...;;;.;;;..;..;.;.;..;..;.;..;.;..;.;;;;...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................;.;...;.....;.....;.;;;;....;.;..;...;..;..;..;;;.;;;;.;..;.;....;..;.;....;....;.;;.;..;..;......;.;;...;....;..;.;.;;.;..;.;;;..;..;.;;;....;...;...;..;.;..;.;;;;..;;...;....;.....;..;.;;..;.;...;;;...;........;...;;;..;.....;...;....;...;......;..;......;...;.....;..;;;;;.;;;....................................;..;.;..;.;....;..;.;.;;.;;;..;..;.;..;..;.....;..;;....;...;;;;.;..;.;..;.;..;.;..;.;..;.;;....;...;..;.;.;..;..;..;;..;..;...;............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................;.;...;....;...;..;...;..;..;.;..;..;...;..;....;.;..;.;..;.;..;.;..;.;....;....;..;.;..;..;...;..;.;.;..;....;..;.;.;;.;..;.;....;;.;.;.;..;..;..;...;..;..;;..;;;;.;..;..;...;.........;....;;;;;...;.;.;..;.....;.;...;...;.....;...;....;...;......;...;....;...;.......;...;.......;;;...;....;.........;;............;.;;.;..;.;....;..;.;;....;....;;..;..;..;.....;..;.;...;...;..;.;..;.;..;.;..;.;..;.;......;;..;...;..;.;.;..;;;;..;;...;.;..;.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................;...;;;..;;;;..;;....;...;;...;;...;....;;...;;..;..;.;;;...;;..;;;..;;;;.;.....;;;.;..;.;;;...;;..;..;.;;;;.;..;.;..;..;;..;.....;;..;..;..;;...;....;;...;;..;..;.;..;..;...;;;;...;...;;...;.;...;;;.....;......;.;.;.;...;...;.....;..;....;;;..;;;....;..;................;.................;.....;....;;.............;.;.;;;...;;...;;;..;;...;...;....;..;.;;;..;.;..;..;.;;;..;..;.;..;..;;..;;;...;;;.;....;;;....;;..;;;..;...;;;;.;..;...;..;;;;...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$...........................................................................................................................................................;.................................................................................................................................................................;;.................................................;;;............;............................;.......;.....................................;..................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................>....>....>>..>>>>...>..>>>>..>>..>>>>..>>...>>...>>..>>>...>>..>>>..>>>>.>>>>..>>..>..>.>>>.....>.>..>.>....>..>.>..>..>>..>>>...>>..>>>...>>..>>>..>..>.>..>.>..>.>..>.>.>..>>>>...>...>>..............>.....>.............>...>.....>..>....>>>..>>>...........................................................>...>.>......>............>........>.......>.....>.....>..>....>>.......................................>...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................>.>..>>...>..>....>..>>..>....>.......>.>..>.>..>.>..>.>..>.>..>.>..>.>....>....>..>.>..>..>......>.>.>..>....>>>>.>>.>.>..>.>..>.>..>.>..>.>..>..>...>..>.>..>.>..>.>..>.>.>.....>...>..>..>..>.>...>>>..>..>.>.>..>...>.>..>.....>...>....>...>......>....>..>.......>.>......>.................................>>...>.>......>............>.......>.>......>..............>.....>.......................................>...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................>.>...>......>..>>..>.>..>>>..>>>....>...>>..>..>.>..>.>>>..>....>..>.>>>..>>>..>....>>>>..>......>.>>...>....>>>>.>>.>.>..>.>..>.>..>.>..>..>....>...>..>.>..>.>..>..>>..>.>....>....>..>.>>.>>>>>.>.>.....>......>.>...>...>.....>..>>....>>..>......>...>....>.....>...>.....>.......>>>...>....>...................>.>..>>>.>>>...>>...>>>..>>...>....>>>.>>>..>>.....>..>.>...>...>.>..>>>...>>..>>>...>>>.>>>...>>>.>>>..>..>.>.>..>..>.>..>.>..>.>>>>...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................>.>...>.....>.....>.>>>>....>.>..>...>..>..>..>>>.>>>>.>..>.>....>..>.>....>....>.>>.>..>..>......>.>>...>....>..>.>.>>.>..>.>>>..>..>.>>>....>...>...>..>.>..>.>>>>..>>...>....>.....>..>.>>..>.>...>>>...>........>...>>>..>.....>...>....>...>......>..>......>...>.....>..>>>>>.>>>....................................>..>.>..>.>....>..>.>.>>.>>>..>..>.>..>..>.....>..>>....>...>>>>.>..>.>..>.>..>.>..>.>..>.>>....>...>..>.>.>..>..>..>>..>..>...>............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................>.>...>....>...>..>...>..>..>.>..>..>...>..>....>.>..>.>..>.>..>.>..>.>....>....>..>.>..>..>...>..>.>.>..>....>..>.>.>>.>..>.>....>>.>.>.>..>..>..>...>..>..>>..>>>>.>..>..>...>.........>....>>>>>...>.>.>..>.....>.>...>...>.....>...>....>...>......>...>....>...>.......>...>.......>>>...>....>.........>>............>.>>.>..>.>....>..>.>>....>....>>..>..>..>.....>..>.>...>...>..>.>..>.>..>.>..>.>..>.>......>>..>...>..>.>.>..>>>>..>>...>.>..>.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................>...>>>..>>>>..>>....>...>>...>>...>....>>...>>..>..>.>>>...>>..>>>..>>>>.>.....>>>.>..>.>>>...>>..>..>.>>>>.>..>.>..>..>>..>.....>>..>..>..>>...>....>>...>>..>..>.>..>..>...>>>>...>...>>...>.>...>>>.....>......>.>.>.>...>...>.....>..>....>>>..>>>....>..>................>.................>.....>....>>.............>.>.>>>...>>...>>>..>>...>...>....>..>.>>>..>.>..>..>.>>>..>..>.>..>..>>..>>>...>>>.>....>>>....>>..>>>..>...>>>>.>..>...>..>>>>...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$...........................................................................................................................................................>.................................................................................................................................................................>>.................................................>>>............>............................>.......>.....................................>..................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................,....,....,,..,,,,...,..,,,,..,,..,,,,..,,...,,...,,..,,,...,,..,,,..,,,,.,,,,..,,..,..,.,,,.....,.,..,.,....,..,.,..,..,,..,,,...,,..,,,...,,..,,,..,..,.,..,.,..,.,..,.,.,..,,,,...,...,,..............,.....,.............,...,.....,..,....,,,..,,,...........................................................,...,.,......,............,........,.......,.....,.....,..,....,,.......................................,...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................,.,..,,...,..,....,..,,..,....,.......,.,..,.,..,.,..,.,..,.,..,.,..,.,....,....,..,.,..,..,......,.,.,..,....,,,,.,,.,.,..,.,..,.,..,.,..,.,..,..,...,..,.,..,.,..,.,..,.,.,.....,...,..,..,..,.,...,,,..,..,.,.,..,...,.,..,.....,...,....,...,......,....,..,.......,.,......,.................................,,...,.,......,............,.......,.,......,..............,.....,.......................................,...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................,.,...,......,..,,..,.,..,,,..,,,....,...,,..,..,.,..,.,,,..,....,..,.,,,..,,,..,....,,,,..,......,.,,...,....,,,,.,,.,.,..,.,..,.,..,.,..,..,....,...,..,.,..,.,..,..,,..,.,....,....,..,.,,.,,,,,.,.,.....,......,.,...,...,.....,..,,....,,..,......,...,....,.....,...,.....,.......,,,...,....,...................,.,..,,,.,,,...,,...,,,..,,...,....,,,.,,,..,,.....,..,.,...,...,.,..,,,...,,..,,,...,,,.,,,...,,,.,,,..,..,.,.,..,..,.,..,.,..,.,,,,...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................,.,...,.....,.....,.,,,,....,.,..,...,..,..,..,,,.,,,,.,..,.,....,..,.,....,....,.,,.,..,..,......,.,,...,....,..,.,.,,.,..,.,,,..,..,.,,,....,...,...,..,.,..,.,,,,..,,...,....,.....,..,.,,..,.,...,,,...,........,...,,,..,.....,...,....,...,......,..,......,...,.....,..,,,,,.,,,....................................,..,.,..,.,....,..,.,.,,.,,,..,..,.,..,..,.....,..,,....,...,,,,.,..,.,..,.,..,.,..,.,..,.,,....,...,..,.,.,..,..,..,,..,..,...,............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................,.,...,....,...,..,...,..,..,.,..,..,...,..,....,.,..,.,..,.,..,.,..,.,....,....,..,.,..,..,...,..,.,.,..,....,..,.,.,,.,..,.,....,,.,.,.,..,..,..,...,..,..,,..,,,,.,..,..,...,.........,....,,,,,...,.,.,..,.....,.,...,...,.....,...,....,...,......,...,....,...,.......,...,.......,,,...,....,.........,,............,.,,.,..,.,....,..,.,,....,....,,..,..,..,.....,..,.,...,...,..,.,..,.,..,.,..,.,..,.,......,,..,...,..,.,.,..,,,,..,,...,.,..,.............................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................,...,,,..,,,,..,,....,...,,...,,...,....,,...,,..,..,.,,,...,,..,,,..,,,,.,.....,,,.,..,.,,,...,,..,..,.,,,,.,..,.,..,..,,..,.....,,..,..,..,,...,....,,...,,..,..,.,..,..,...,,,,...,...,,...,.,...,,,.....,......,.,.,.,...,...,.....,..,....,,,..,,,....,..,................,.................,.....,....,,.............,.,.,,,...,,...,,,..,,...,...,....,..,.,,,..,.,..,..,.,,,..,..,.,..,..,,..,,,...,,,.,....,,,....,,..,,,..,...,,,,.,..,...,..,,,,...........................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$...........................................................................................................................................................,.................................................................................................................................................................,,.................................................,,,............,............................,.......,.....................................,..................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$.......................'....'....''..''''...'..''''..''..''''..''...''...''..'''...''..'''..''''.''''..''..'..'.'''.....'.'..'.'....'..'.'..'..''..'''...''..'''...''..'''..'..'.'..'.'..'.'..'.'.'..''''...'...''..............'.....'.............'...'.....'..'....'''..'''...........................................................'...'.'......'............'........'.......'.....'.....'..'....''.......................................'...........................................................................................+@@.......................................................%@@$",
+".+@@.......................................................%@@$......................'.'..''...'..'....'..''..'....'.......'.'..'.'..'.'..'.'..'.'..'.'..'.'....'....'..'.'..'..'......'.'.'..'....''''.''.'.'..'.'..'.'..'.'..'.'..'..'...'..'.'..'.'..'.'..'.'.'.....'...'..'..'..'.'...'''..'..'.'.'..'...'.'..'.....'...'....'...'......'....'..'.......'.'......'.................................''...'.'......'............'.......'.'......'..............'.....'.......................................'...........................................................................................+@@.......................................................%@@$",
+".+@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@$......................'.'...'......'..''..'.'..'''..'''....'...''..'..'.'..'.'''..'....'..'.'''..'''..'....''''..'......'.''...'....''''.''.'.'..'.'..'.'..'.'..'..'....'...'..'.'..'.'..'..''..'.'....'....'..'.''.'''''.'.'.....'......'.'...'...'.....'..''....''..'......'...'....'.....'...'.....'.......'''...'....'...................'.'..'''.'''...''...'''..''...'....'''.'''..''.....'..'.'...'...'.'..'''...''..'''...'''.'''...'''.'''..'..'.'.'..'..'.'..'.'..'.''''...........................................................+@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@@$",
+".+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$......................'.'...'.....'.....'.''''....'.'..'...'..'..'..'''.''''.'..'.'....'..'.'....'....'.''.'..'..'......'.''...'....'..'.'.''.'..'.'''..'..'.'''....'...'...'..'.'..'.''''..''...'....'.....'..'.''..'.'...'''...'........'...'''..'.....'...'....'...'......'..'......'...'.....'..'''''.'''....................................'..'.'..'.'....'..'.'.''.'''..'..'.'..'..'.....'..''....'...''''.'..'.'..'.'..'.'..'.'..'.''....'...'..'.'.'..'..'..''..'..'...'............................................................+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$",
+".+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$......................'.'...'....'...'..'...'..'..'.'..'..'...'..'....'.'..'.'..'.'..'.'..'.'....'....'..'.'..'..'...'..'.'.'..'....'..'.'.''.'..'.'....''.'.'.'..'..'..'...'..'..''..''''.'..'..'...'.........'....'''''...'.'.'..'.....'.'...'...'.....'...'....'...'......'...'....'...'.......'...'.......'''...'....'.........''............'.''.'..'.'....'..'.''....'....''..'..'..'.....'..'.'...'...'..'.'..'.'..'.'..'.'..'.'......''..'...'..'.'.'..''''..''...'.'..'.............................................................+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$",
+".@$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$.......................'...'''..''''..''....'...''...''...'....''...''..'..'.'''...''..'''..''''.'.....'''.'..'.'''...''..'..'.''''.'..'.'..'..''..'.....''..'..'..''...'....''...''..'..'.'..'..'...''''...'...''...'.'...'''.....'......'.'.'.'...'...'.....'..'....'''..'''....'..'................'.................'.....'....''.............'.'.'''...''...'''..''...'...'....'..'.'''..'.'..'..'.'''..'..'.'..'..''..'''...'''.'....'''....''..'''..'...''''.'..'...'..''''...........................................................@$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
+"..........................................................................................................................................................................................................................'.................................................................................................................................................................''.................................................'''............'............................'.......'.....................................'................................................................................................................................",
+".........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................."};
diff --git a/wmjiface/src/jDockApp/jDockApp_mask.xbm
b/wmjiface/src/jDockApp/jDockApp_mask.xbm
new file mode 100644
index 0000000..c6f20cf
--- /dev/null
+++ b/wmjiface/src/jDockApp/jDockApp_mask.xbm
@@ -0,0 +1,39 @@
+#define mask_width 64
+#define mask_height 64
+static char jDockApp_mask_xpm[] = {
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,
+ 0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,
+ 0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,
+ 0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,
+ 0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,
+ 0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,
+ 0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,
+ 0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00
+};
diff --git a/wmjiface/src/jDockApp/jprintf.c b/wmjiface/src/jDockApp/jprintf.c
new file mode 100644
index 0000000..8f55ddd
--- /dev/null
+++ b/wmjiface/src/jDockApp/jprintf.c
@@ -0,0 +1,144 @@
+#include <stdarg.h>
+#include "jDockApp.h"
+
+#define char_width 5
+#define char_height 7
+
+#define left_edge 5
+#define right_edge 59
+#define top_edge 6
+#define stop_edge 12
+
+#define num_start 85
+#define Letter_start 135
+#define letter_start 400
+
+#define cc(X, Y, Z) case X: copy_start = Y; copy_width = Z; break
+#define cw(X, Y) case X: copy_width = Y; break
+
+int start_x;
+int start_y;
+int line_position;
+
+void jprintf_internal(int, const char*);
+
+void jpprintf(int x, int y, int color, const char *format, ...) {
+ va_list arguments;
+ char line[80];
+
+ if(y<=5 && y>=1) {
+ start_y = stop_edge + y * char_height + y-1;
+ } else if ( !y ) {
+ start_y = top_edge;
+ } else {
+ printf("You can't jprintf to line %i.\n", y);
+ printf(" The range is currently: 0-6.\n");
+ exit(1);
+ }
+
+ start_x = left_edge+1 + x * char_width;
+ line_position = 0;
+
+ va_start(arguments, format);
+ vsnprintf(line, 80, format, arguments);
+ va_end(arguments);
+
+ jprintf_internal(color, line);
+}
+
+void jprintf(int color, const char *format, ...) {
+ va_list arguments;
+ char line[80];
+
+ va_start(arguments, format);
+ vsnprintf(line, 80, format, arguments);
+ va_end(arguments);
+
+ jprintf_internal(color, line);
+}
+
+void jprintf_internal(int color, const char *line) {
+ char cur_char;
+ int string_position;
+ int copy_start;
+ int copy_width;
+
+ if(!start_x) {
+ printf("You must make at least one call to jpprintf()\n");
+ exit(1);
+ }
+
+ string_position = 0;
+
+ while(line[string_position] != '\0') {
+ cur_char = line[string_position];
+ copy_start = 0;
+ copy_width = char_width;
+
+ if(cur_char>='0' && cur_char<='9') {
+ copy_start = (cur_char-'0')*char_width+num_start;
+ }
+ else if(cur_char>='A' && cur_char<='Z') {
+ copy_start = (cur_char-'A')*char_width+Letter_start;
+ }
+ else if(cur_char>='a' && cur_char<='z') {
+ copy_start = (cur_char-'a')*char_width+letter_start;
+ }
+
+ switch(cur_char) {
+ cw('l', 4);
+ cw('T', 4);
+ cw('I', 4);
+ cw('1', 4);
+ cw('Y', 4);
+ cw('c', 4);
+ cw('0', 4);
+ cw('i', 4);
+ cw('v', 4);
+ cw(' ', 3);
+
+ cc( '!', 267, 2);
+ cc( '@', 270, 5);
+ cc( '#', 275, 6);
+ cc( '$', 281, 6);
+ cc( '%', 287, 5);
+ cc( '^', 292, 4);
+ cc( '&', 296, 4);
+ cc( '*', 301, 4);
+ cc( '(', 306, 3);
+ cc( ')', 311, 3);
+ cc( '{', 315, 4);
+ cc( '}', 320, 4);
+ cc( '[', 325, 4);
+ cc( ']', 330, 4);
+ cc( '<', 335, 4);
+ cc( '>', 340, 4);
+ cc( '/', 345, 5);
+ cc('\\', 350, 5);
+ cc( '+', 355, 6);
+ cc( '-', 362, 3);
+ cc( '=', 365, 4);
+ cc( ':', 371, 2);
+ cc( ';', 375, 3);
+ cc( ',', 380, 3);
+ cc( '.', 386, 3);
+ cc('\'', 391, 3);
+ cc( '"', 396, 4);
+ }
+
+ if(start_x+line_position+char_width > right_edge)
+ break;
+
+ if(copy_start) copyXPMArea(
+ copy_start,
+ color,
+ copy_width,
+ char_height,
+ start_x+line_position,
+ start_y
+ );
+
+ line_position += copy_width;
+ string_position++;
+ }
+}
diff --git a/wmjiface/src/jDockApp/locations.h
b/wmjiface/src/jDockApp/locations.h
new file mode 100644
index 0000000..a813f6c
--- /dev/null
+++ b/wmjiface/src/jDockApp/locations.h
@@ -0,0 +1 @@
+#define NUMBERS 96
diff --git a/wmjiface/src/svr.client/cattheprocinfo
b/wmjiface/src/svr.client/cattheprocinfo
new file mode 100755
index 0000000..00309a5
--- /dev/null
+++ b/wmjiface/src/svr.client/cattheprocinfo
@@ -0,0 +1,44 @@
+#!/usr/bin/perl
+
+use IO::Socket;
+
+$port = 7654;
+
+## This could really do anything you want...
+sub print_stuff {
+ open in, "/proc/net/dev";
+ while(<in>) {
+ print $client "$_" if /eth[01]:/ or /ppp[01]:/;
+ }
+ close in;
+}
+
+
+## Run the farqin thing:
+$bn = `basename $0`;
+`killall -v -q -1 $bn`;
+
+if (fork) {
+ print "Forkin away...\n";
+ exit 0;
+} else {
+ $0 = "$bn [$port]";
+ &open_it;
+ &listen_to_it;
+}
+
+sub open_it {
+ $sock = new IO::Socket::INET (
+ LocalPort => "$port",
+ Proto => tcp,
+ Reuse => 1,
+ Listen => 1
+ ) or die "Could not create socket: $!\n";
+}
+
+sub listen_to_it {
+ while($client = $sock->accept) {
+ &print_stuff;
+ shutdown $client, 2;
+ }
+}
diff --git a/wmjiface/src/svr.client/ifacechk.client
b/wmjiface/src/svr.client/ifacechk.client
new file mode 100755
index 0000000..467e8ad
--- /dev/null
+++ b/wmjiface/src/svr.client/ifacechk.client
@@ -0,0 +1,152 @@
+#!/usr/bin/perl
+
+$firewallip="192.168.1.1"; # please change me?
+
+
+################
+# cat /proc/net/dev
+#Inter-| Receive | Transmit
+# face |bytes packets errs drop fifo frame compressed multicast|bytes
packets errs drop fifo colls carrier compressed
+# lo:22905347 39915 0 0 0 0 0 0 22905347
39915 0 0 0 0 0 0
+# eth0: 923454 7885 0 0 0 0 0 347 1987558
6791 0 0 0 0 0 0
+# ppp0: 7080806 7876 2 0 0 2 0 0 314121
5267 0 0 0 0 0 0
+# ppp1: 331265 7810 0 0 0 0 0 0 233915
8563 0 0 0 0 0 0
+#########################
+
+$ppid=getppid();
+
+use IO::Socket;
+
+$staname="$ENV{HOME}/.wmjiface.stat.$ppid";
+
+@statusFiles=`ls $ENV{HOME}/.wmjiface.stat.* 2>/dev/null`;
+
+foreach (@statusFiles) {
+ s/^.*[.]wmjiface[.]stat[.]//;
+ chomp;
+ system("rm $ENV{HOME}/.wmjiface.stat.$_") if not ( -d "/proc/$_" );
+}
+
+$now=time();
+
+$then; # aquired during read_stat;
+
+%statso; # aquired during read_stat;
+%statsc; # aquired during read_proc;
+
+&read_proc();
+
+if(&read_stat()) {
+ $tdiff = $now - $then;
+
+ foreach (keys %statsc) {
+ if($statso{$_}) {
+ $bytesin = $statsc{$_}{bytesi} - $statso{$_}{bytesi};
+ $bytesout = $statsc{$_}{byteso} - $statso{$_}{byteso};
+
+ #$packetsin = $statsc{$_}{packetsi} - $statso{$_}{packetsi};
+ #$packetsout = $statsc{$_}{packetso} - $statso{$_}{packetso};
+
+ $bytesin_ps = $bytesin/$tdiff if $tdiff > 0;
+ $bytesout_ps = $bytesout/$tdiff if $tdiff > 0;
+
+ #$packetsin_ps = $packetsin/$tdiff if $tdiff > 0;
+ #$packetsout_ps = $packetsout/$tdiff if $tdiff > 0;
+
+ printf "%s %i %i\n", $_, $bytesin_ps, $bytesout_ps;
+ }
+ }
+
+}
+
+&write_stat();
+exit;
+
+
+##################################################################3
+
+sub write_stat() {
+ open sta, ">$staname" or die;
+
+ printf sta "%i\n", $now;
+
+ foreach (keys %statsc) {
+ printf sta "%s:%i:%i:%i:%i:%i\n",
+ $_,
+ $statsc{$_}{bytesi},
+ $statsc{$_}{byteso},
+ $statsc{$_}{packetsi},
+ $statsc{$_}{packetso};
+ }
+
+ close sta;
+}
+
+sub read_stat() {
+ open sta, "$staname" or return ();
+
+ $then = <sta>;
+ chomp $then;
+
+ while(<sta>) {
+ chomp;
+
+ ($face, $bytesi, $byteso, $packetsi, $packetso) = split ":";
+
+ $statso{$face} = { bytesi => $bytesi,
+ byteso => $byteso,
+ packetsi => $byteso,
+ packetso => $byteso };
+ }
+
+ close sta;
+ return 1;
+}
+
+sub read_proc() {
+ $dev = $dev = new IO::Socket::INET (
+ PeerAddr => "$firewallip",
+ PeerPort => "7654",
+ Proto => tcp,
+ Reuse => 1
+ ) or die "Could not create socket: $!\n";
+
+ $waste = $sock; # title
+ $waste = $sock; # title
+ $waste = $sock; # lo
+
+ $devfilesexist = `ls /var/run/ppp*.dev 2>/dev/null`; chomp $devfilesexist;
+
+ while(<$dev>) {
+ close $dev if //;
+ last if //;
+ chomp; s/[ ]+/:/g; s/^://; s/:$//; s/[:]+/:/g;
+
+ s/([0-9]+)([0-9]{9})/$2/g;
+
+ ($face,
+ $bytesi, $packetsi, $errsi, $dropi, $fifoi, $frame,
$compressedi, $multicast,
+ $byteso, $packetso, $errso, $dropo, $fifoo, $colls, $carrier,
$compressedo
+ ) = split ":";
+
+ if($devfilesexist !~ /^$/ and $face =~ /ppp/) {
+ $tosser = `grep $face /var/run/*.dev /dev/null | head -1`;
+ chomp $tosser;
+ $tosser =~ s/^[^-]*-//;
+ $tosser =~ s/.dev:.*//;
+ if($tosser !~ /^$/) {
+ $statsc{$tosser} = { bytesi => $bytesi,
+ byteso => $byteso,
+ packetsi => $byteso,
+ packetso => $byteso };
+ }
+ } else {
+ $statsc{$face} = { bytesi => $bytesi,
+ byteso => $byteso,
+ packetsi => $byteso,
+ packetso => $byteso };
+ }
+ }
+
+ close dev;
+}
diff --git a/wmjiface/src/wmjiface.c b/wmjiface/src/wmjiface.c
new file mode 100644
index 0000000..fbef97a
--- /dev/null
+++ b/wmjiface/src/wmjiface.c
@@ -0,0 +1,163 @@
+#include "jDockApp/jDockApp.h"
+#include "jDockApp/colors.h"
+#include <getopt.h>
+
+int delay;
+
+int skip = 0;
+int out = 0;
+int hw1 = 2000;
+int hw2 = 4000;
+int showboth = 0;
+int use_expavg;
+
+double alpha = 0.4;
+double beta = 1.0;
+double exp_avg[2][5];
+
+void show_help() {
+ printf("wmjiface version %s was built on %s.\n\n", VERSION, BDATE);
+ printf("-s <sec>: Seconds between executions of ifacechk\n");
+ printf("-o : Show the traffic headed out instead.\n");
+ printf("-D : Doommaker's Show-Both (in&out traf simultaneously).\n");
+ printf("-A : Use approximate exponential averaging.\n");
+ printf("-a <num>: Alpha for the exp. avg. {default %f}.\n", alpha);
+ printf("-b <num>: Beta: subst for alpha if bps==0 {default %f}.\n", beta);
+ printf("-l <num>: Skip <num> lines before showing the first device.\n");
+ printf("-1 <num>: High-water-mark 1 (red color) {default %i B/s}.\n",hw1);
+ printf("-2 <num>: High-water-mark 2 (red color) {default %i B/s}.\n",hw2);
+
+ exit(0);
+}
+
+void setup(int argc, char** argv) {
+ //char c;
+ int c; // thanx to a PowerPC user named Carine Bournez
+ int i = 0;
+
+ while( -1 != (c = getopt(argc, argv, "hoADua:b:s:l:1:2:"))) {
+ switch(c) {
+ case '?': exit(1);
+ case 'h': show_help();
+
+ case 'o': out = 1; break;
+ case 'A': use_expavg = 1; break;
+ case 'D': showboth = 1; break;
+
+ case 'a': alpha=atof(optarg); break;
+ case 'b': beta=atof(optarg); break;
+
+ case 's': i=atoi(optarg); break;
+ case 'l': skip=atoi(optarg); break;
+
+ case '1': hw1=atoi(optarg); break;
+ case '2': hw2=atoi(optarg); break;
+ }
+ }
+ delay = (i) ? i : 1;
+ set_update_delay(delay); /* seconds */
+ set_loop_delay(1000); /* mu seconds */
+}
+
+void clear_avg() {
+ int i;
+ for(i=0; i<5; i++) {
+ exp_avg[0][i] = 0;
+ exp_avg[1][i] = 0;
+ }
+}
+
+void do_print_one_dev(char iface[5], char io, int bps_, int row) {
+ int color;
+ char letter;
+ float display;
+
+ jpprintf(0, row, GREEN, "%c", io);
+ if(iface[0] >= '0' && iface[0] <= '9') {
+ jprintf(RED, "%s", "unkn");
+ } else {
+ jprintf(BLUE, "%s", iface);
+ }
+ jprintf(CYAN, ":", io);
+
+ if(bps_ >= 0) {
+ if(bps_ > 1000) { display = (bps_)/1024.0; letter = 'k'; }
+ else { display = bps_; letter = ' '; }
+
+ display += 0.5; /* Round Up */
+
+ if(!bps_) { color = BLUE; }
+ else if(bps_ < hw1) { /* 2000 default */ color = GREEN; }
+ else if(bps_ < hw2) { /* 4000 default */ color = YELLOW; }
+ else { color = RED; }
+
+ if(letter=='k' && display<100) {
+ jpprintf(6, row, color, "%.1f", display);
+ } else {
+ jpprintf(6, row, color, "%.0f", display);
+ }
+
+ jprintf(ORANGE, "%c", letter);
+ } else {
+ jprintf(RED, "err");
+ clear_avg();
+ }
+}
+
+#define IN 0
+#define OUT 1
+
+#define Fal0d(X) ((X) ? alpha : beta)
+
+void do_update() {
+ FILE *f = popen("ifacechk", "r");
+ char iface[5];
+ int bps_in, bps_out;
+ int row = 2 + skip;
+ int c = 0;
+ int toshow_in, toshow_out;
+
+ clear_window();
+ jpprintf(0, 0, YELLOW, " J-Iface"); /* title */
+ jpprintf(0, 1, PINK, "Dev:"); /* desc line */
+ jpprintf(5, 1, PINK, "bits/s");
+
+ while(1 + fscanf(f, "%s%i%i", iface, &bps_in, &bps_out)) {
+ if(use_expavg) {
+ exp_avg[IN][c] =
+ (Fal0d(bps_in)*bps_in) + (1-Fal0d(bps_in))*exp_avg[IN][c];
+ exp_avg[OUT][c] =
+ (Fal0d(bps_out)*bps_out) + (1-Fal0d(bps_out))*exp_avg[OUT][c];
+ toshow_in = exp_avg[IN ][c];
+ toshow_out = exp_avg[OUT][c];
+ } else {
+ toshow_in = bps_in;
+ toshow_out = bps_out;
+ }
+
+ if(showboth) {
+ if(row > 4) break;
+ do_print_one_dev(iface, 'i', toshow_in, row++);
+ do_print_one_dev(iface, 'o', toshow_out, row++);
+ } else {
+ if(row > 5) break;
+ do_print_one_dev(
+ iface,
+ (out) ? 'o':'i',
+ (out) ? toshow_out : toshow_in,
+ row++
+ );
+ }
+ c++;
+ }
+
+ pclose(f);
+}
+
+void do_expose() {
+ do_update();
+}
+
+void do_button_release() {
+ do_update();
+}
diff --git a/wmjiface/src/xutils/Makefile b/wmjiface/src/xutils/Makefile
new file mode 100644
index 0000000..09d709f
--- /dev/null
+++ b/wmjiface/src/xutils/Makefile
@@ -0,0 +1,23 @@
+# Makefile for ${name}
+# <[email protected]>
+# based on wmWeather - see ../Credits for more information
+
+CC = gcc
+CFLAGS = #-O2 -g #-Wall # I think this option is idiotic
+INCDIR = -I/usr/X11R6/include/X11 -I/usr/X11R6/include
+DESTDIR= /usr/X11R6
+LIBDIR = -L/usr/X11R6/lib
+# for linux
+LIBS = -lXpm -lX11 -lXext
+# for Solaris
+# LIBS = -lXpm -lX11 -lXext -lsocket
+
+name=xutils
+
+${name}.o:
+ $(CC) $(CFLAGS) -D$(shell echo `uname -s`) -c ${name}.c -o ${name}.o \
+ $(INCDIR)
+ mv ${name}.o ..
+
+clean:
+ rm -f *.o
diff --git a/wmjiface/src/xutils/xutils.c b/wmjiface/src/xutils/xutils.c
new file mode 100644
index 0000000..e93976b
--- /dev/null
+++ b/wmjiface/src/xutils/xutils.c
@@ -0,0 +1,319 @@
+/*
+ * xutils.c - A collection of X-windows utilties for creating WindowMAker
+ * DockApps.
+ *
+ * This file contains alot of the lower-level X windows routines. Origins
+ * with wmppp (by Martijn Pieterse ([email protected])), but its been
+ * hacked up quite a bit and passed on from one new DockApp to the next.
+ *
+ *
+ *
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program (see the file COPYING); if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA
+ *
+ *
+ *
+ *
+ */
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <ctype.h>
+#include <stdarg.h>
+#include <X11/Xlib.h>
+#include <X11/xpm.h>
+#include <X11/extensions/shape.h>
+#include "xutils.h"
+
+
+
+/*
+ * X11 Variables
+ */
+int x_fd;
+XSizeHints mysizehints;
+XWMHints mywmhints;
+Pixel back_pix, fore_pix;
+char *Geometry = "";
+GC NormalGC;
+XpmIcon wmgen;
+Pixmap pixmask;
+
+
+
+
+
+/*
+ * flush_expose
+ */
+static int flush_expose(Window w) {
+
+ XEvent dummy;
+ int i=0;
+
+ while (XCheckTypedWindowEvent(display, w, Expose, &dummy))
+ i++;
+
+ return i;
+
+}
+
+
+
+
+
+
+
+
+
+/*
+ * RedrawWindow
+ * RedrawWindowXY
+ */
+void RedrawWindow(void) {
+
+ flush_expose(iconwin);
+ XCopyArea(display, wmgen.pixmap, iconwin, NormalGC, 0,0,
wmgen.attributes.width, wmgen.attributes.height, 0, 0);
+
+ flush_expose(win);
+ XCopyArea(display, wmgen.pixmap, win, NormalGC, 0,0,
wmgen.attributes.width, wmgen.attributes.height, 0, 0);
+
+}
+
+void RedrawWindowXY(int x, int y) {
+
+ flush_expose(iconwin);
+ XCopyArea(display, wmgen.pixmap, iconwin, NormalGC, x,y,
wmgen.attributes.width, wmgen.attributes.height, 0, 0);
+
+ flush_expose(win);
+ XCopyArea(display, wmgen.pixmap, win, NormalGC, x,y,
wmgen.attributes.width, wmgen.attributes.height, 0, 0);
+
+}
+
+
+
+
+
+
+
+/*
+ * copyXPMArea
+ * copyXBMArea
+ */
+
+
+/*void copyXPMArea(source_x, source_y, width, height, destx, desty) */
+
+
+
+void copyXPMArea(int x, int y, int sx, int sy, int dx, int dy) {
+ XCopyArea(display, wmgen.pixmap, wmgen.pixmap, NormalGC, x, y, sx, sy,
dx, dy);
+}
+
+void copyXBMArea(int x, int y, int sx, int sy, int dx, int dy) {
+
+ XCopyArea(display, wmgen.mask, wmgen.pixmap, NormalGC, x, y, sx, sy,
dx, dy);
+}
+
+
+
+/*
+ * initXwindow
+ */
+void initXwindow(int argc, char *argv[]){
+
+ int i;
+ char *display_name = NULL;
+
+ for (i=1; argv[i]; ++i) {
+ if (!strcmp(argv[i], "-display")) display_name = argv[i+1];
+ }
+
+
+ if (!(display = XOpenDisplay(display_name))) {
+ fprintf(stderr, "%s: can't open display %s\n",
+ argv[0], XDisplayName(display_name));
+ exit(1);
+ }
+
+
+ screen = DefaultScreen(display);
+ Root = RootWindow(display, screen);
+ DisplayDepth = DefaultDepth(display, screen);
+ x_fd = XConnectionNumber(display);
+
+}
+
+
+
+
+
+/*
+ * openXwindow
+ */
+void openXwindow(int argc, char *argv[], char *pixmap_bytes[], char
*pixmask_bits,
+ int pixmask_width, int pixmask_height, char *BackColor, char *LabelColor,
+ char *WindGustColor, char *DataColor, char *StationTimeColor) {
+
+ unsigned int borderwidth = 1;
+ XClassHint classHint;
+ char *wname = argv[0];
+ XTextProperty name;
+ XGCValues gcv;
+ unsigned long gcm;
+ int dummy=0;
+ XpmColorSymbol cols[5]={ {"BackColor", NULL, 0},
+ {"LabelColor", NULL, 0},
+ {"DataColor", NULL, 0},
+ {"WindGustColor", NULL, 0},
+ {"StationTimeColor", NULL, 0} };
+
+
+
+
+ /*
+ * Create Pixmap
+ */
+ cols[0].pixel = getColor(BackColor, 1.0);
+ cols[1].pixel = getColor(LabelColor, 1.0);
+ cols[2].pixel = getColor(DataColor, 1.0);
+ cols[3].pixel = getColor(WindGustColor, 1.0);
+ cols[4].pixel = getColor(StationTimeColor, 1.0);
+ wmgen.attributes.numsymbols = 5;
+ wmgen.attributes.colorsymbols = cols;
+ wmgen.attributes.exactColors = False;
+ wmgen.attributes.closeness = 40000;
+ wmgen.attributes.valuemask = XpmReturnPixels | XpmReturnExtensions |
XpmColorSymbols
+ | XpmExactColors |
XpmCloseness | XpmSize;
+ if (XpmCreatePixmapFromData(display, Root, pixmap_bytes,
+ &(wmgen.pixmap), &(wmgen.mask), &(wmgen.attributes)) != XpmSuccess){
+ fprintf(stderr, "Not enough free colorcells.\n");
+ exit(1);
+ }
+
+
+
+
+ /*
+ * Create a window
+ */
+ mysizehints.flags = USSize | USPosition;
+ mysizehints.x = 0;
+ mysizehints.y = 0;
+
+ back_pix = getColor("white", 1.0);
+ fore_pix = getColor("black", 1.0);
+
+ XWMGeometry(display, screen, Geometry, NULL, borderwidth, &mysizehints,
+ &mysizehints.x,
&mysizehints.y,&mysizehints.width,&mysizehints.height, &dummy);
+
+ mysizehints.width = 64;
+ mysizehints.height = 64;
+
+
+
+ win = XCreateSimpleWindow(display, Root, mysizehints.x, mysizehints.y,
+ mysizehints.width, mysizehints.height,
borderwidth, fore_pix, back_pix);
+
+ iconwin = XCreateSimpleWindow(display, win, mysizehints.x, mysizehints.y,
+ mysizehints.width, mysizehints.height,
borderwidth, fore_pix, back_pix);
+
+
+
+ /*
+ * Activate hints
+ */
+ XSetWMNormalHints(display, win, &mysizehints);
+ classHint.res_name = wname;
+ classHint.res_class = wname;
+ XSetClassHint(display, win, &classHint);
+
+
+
+ /*
+ * Set up the xevents that you want the relevent windows to inherit
+ * Currently, its seems that setting KeyPress events here has no
+ * effect. I.e. for some you will need to Grab the focus and then return
+ * it after you are done...
+ */
+ XSelectInput(display, win, ButtonPressMask | ExposureMask |
ButtonReleaseMask
+ | PointerMotionMask | StructureNotifyMask | EnterWindowMask |
LeaveWindowMask
+ | KeyPressMask |
KeyReleaseMask);
+ XSelectInput(display, iconwin, ButtonPressMask | ExposureMask |
ButtonReleaseMask
+ | PointerMotionMask | StructureNotifyMask | EnterWindowMask |
LeaveWindowMask
+ | KeyPressMask |
KeyReleaseMask);
+
+
+ if (XStringListToTextProperty(&wname, 1, &name) == 0) {
+ fprintf(stderr, "%s: can't allocate window name\n", wname);
+ exit(1);
+ }
+
+
+ XSetWMName(display, win, &name);
+
+ /*
+ * Create Graphics Context (GC) for drawing
+ */
+ gcm = GCForeground | GCBackground | GCGraphicsExposures;
+ gcv.foreground = fore_pix;
+ gcv.background = back_pix;
+ gcv.graphics_exposures = 0;
+ NormalGC = XCreateGC(display, Root, gcm, &gcv);
+
+
+
+ pixmask = XCreateBitmapFromData(display, win, pixmask_bits, pixmask_width,
pixmask_height);
+ XShapeCombineMask(display, win, ShapeBounding, 0, 0, pixmask, ShapeSet);
+ XShapeCombineMask(display, iconwin, ShapeBounding, 0, 0, pixmask,
ShapeSet);
+
+
+ mywmhints.initial_state = WithdrawnState;
+ mywmhints.icon_window = iconwin;
+ mywmhints.icon_x = mysizehints.x;
+ mywmhints.icon_y = mysizehints.y;
+ mywmhints.window_group = win;
+ mywmhints.flags = StateHint | IconWindowHint | IconPositionHint |
WindowGroupHint;
+
+
+ XSetWMHints(display, win, &mywmhints);
+
+
+ XSetCommand(display, win, argv, argc);
+ XMapWindow(display, win);
+
+}
+
+unsigned long getColor(char *ColorName, float fac) {
+
+ XColor Color;
+ XWindowAttributes Attributes;
+
+ XGetWindowAttributes(display, Root, &Attributes);
+ Color.pixel = 0;
+
+ XParseColor(display, Attributes.colormap, ColorName, &Color);
+ Color.red = (unsigned short)(Color.red/fac);
+ Color.blue = (unsigned short)(Color.blue/fac);
+ Color.green = (unsigned short)(Color.green/fac);
+ Color.flags = DoRed | DoGreen | DoBlue;
+ XAllocColor(display, Attributes.colormap, &Color);
+
+ return Color.pixel;
+
+}
+
diff --git a/wmjiface/src/xutils/xutils.h b/wmjiface/src/xutils/xutils.h
new file mode 100644
index 0000000..5b6231f
--- /dev/null
+++ b/wmjiface/src/xutils/xutils.h
@@ -0,0 +1,47 @@
+#ifndef WMGENERAL_H_INCLUDED
+#define WMGENERAL_H_INCLUDED
+
+
+
+/*
+ * Typedefs
+ */
+typedef struct {
+ Pixmap pixmap;
+ Pixmap mask;
+ XpmAttributes attributes;
+} XpmIcon;
+
+
+
+
+/*
+ * Global variable
+ */
+Display *display;
+Window Root;
+Window iconwin, win;
+int screen;
+int DisplayDepth;
+
+
+
+
+
+/*
+ * Function Prototypes
+ */
+void AddMouseRegion(int, int, int, int, int);
+int CheckMouseRegion(int, int);
+void openXwindow(int, char **, char **, char *, int, int, char *,
char *, char *, char *,char *);
+void initXwindow(int, char **);
+void RedrawWindow(void);
+void RedrawWindowXY(int, int);
+void copyXPMArea(int, int, int, int, int, int);
+void copyXBMArea(int, int, int, int, int, int);
+void setMaskXY(int, int);
+unsigned long getColor(char *, float);
+void RedrawWindow(void);
+
+
+#endif
--
2.11.0
--
To unsubscribe, send mail to [email protected].