Program architecture and Classes¶
Modules and Classes and Methods docs.¶
The following are the documentation for Modules, Classes, and Methods.
Configure and Constant¶
The following is description of Configure and Constant.
Class |
Filename |
Description |
---|---|---|
config.py |
Configure class. There are various configure variables. Example: config_customize.py |
|
|
config.py |
Constant class. |
ObjectFactory¶
ObjectFactory
class provide customizing classes and creating original classes. Important classes are generated in ObjectFactory
.
If you’d like to create original factory class , extending ObjectFactory
. And injecting to IpServerCmd
class.
Attribute |
Value |
---|---|
Class |
|
Path |
./core/object_factory.py |
Example |
object_factory_original_headers.py |
Pipeline¶
Pipeline
class provide catching and customizing the data in each processing. Pipeline
class allows for modifying process behaviors or adding specifications without a lot of class extensions or changing the structure.
It’s available to very fine data control.
Attribute |
Value |
---|---|
Class |
|
Path |
./core/pipeline.py |
Example |
pipeline_customize.py |
Pipeline’s methods
When Pipeline’s methods are dispatched:
Pipeline’s methods
When Pipeline’s methods are dispatched:
Methods |
When it dispatch |
Processing e.g. |
---|---|---|
|
Initializing arguments values. |
Customizing arguments and env. |
|
Before configuring arguments. |
Customizing arguments before configuring. |
|
After configuring arguments. |
Customizing arguments after configuring. |
|
Initializing with config and socket server. |
Setting up initial configurations. |
|
Creating a socket. |
Customizing socket creation. |
|
When a socket is connected. |
Handling socket connection. |
|
Handling interactive input. |
Processing interactive commands. |
|
When quiet mode is enabled. Call by interval timing. |
Handling quiet mode operations. |
|
Starting to listen on a socket. |
Customizing listening behavior. |
|
After accepting a connection. |
Handling post-accept operations. |
|
After receiving data. |
Processing received data. |
|
Completing the receive process. |
Finalizing received data. |
|
Before sending data. |
Customizing data before sending. |
|
After sending data. |
Handling post-send operations. |
|
Completing the send process. |
Finalizing sent data. |
|
Before forwarding data. |
Customizing data before forwarding. |
|
After receiving forwarded data. |
Processing forwarded data. |
|
Verifying connection restrictions. |
Customizing connection restrictions. |
|
When a socket is denied. |
Handling denied socket connections. |
|
When a socket server is closed. |
Handling closed socket server operations. |
|
When a socket is closed. |
Handling closed socket connections. |
|
Loading digest authentication users. |
Customizing digest auth user loading. |
|
Verifying digest authentication. |
Customizing digest auth verification. |
|
Before processing an HTTP request. |
Customizing HTTP request processing. |
|
Getting the HTTP app path. |
Customizing HTTP app path resolution. |
|
Checking if file upload is enabled. |
Customizing file upload enablement. |
|
Before forwarding an HTTP request. |
Customizing HTTP forwarding request. |
|
After forwarding an HTTP request. |
Processing forwarded HTTP request. |
|
Before uploading an file in HTTP mode. |
Customizing HTTP file upload. |
|
After uploading an file in HTTP mode. |
Handling post-upload operations. |
|
Before responding to an HTTP request. |
Customizing HTTP response. |
|
Getting the filename for a connection. |
Customizing filename resolution. |
|
Before writing to a file. |
Customizing file write operations. |
|
After completing all processes. |
Final processing. |
Utils¶
In ./util
, there are some util classes. Those are used in various places.
Path |
Classes |
---|---|
./util/args_util.py |
|
./util/requester.py |
|
./util/socket_client.py |
|
./util/urlparser.py |
|
Debugging¶
This description is description of development and debugging related ipserver
.
Program specification¶
Item |
Description |
---|---|
Python version |
3.6 or later. * |
Dependencies |
multipart |
Debugging¶
You can see detailed debug information by specifying --verbose=3
or --debug
. In detail, please read --verbose
option.
$ ipserver ***** --verbose=2 #INFO
$ ipserver ***** --verbose=3 #DEBUG
$ ipserver ***** --info #INFO This option is equivalent to "--verbose=2"
$ ipserver ***** --debug #DEBUG This option is equivalent to "--verbose=3"
Log sample and description¶
The following is debugging log with each comments.
Not support Python 2.7 ?¶
“ipserver” doesn’t support Python 2.7. However “ipserver” has been developed to avoid using the latest Python specifications as much as possible, So you can refactor to Python 2.7 code easily.
Refactoring points
ABC module
http.client module
urllib module
And any other few modules.