Skip to main content

Palanteer scripting module

Project description

Look into Palanteer and get an omniscient view of your program

Palanteer is a set of lean and efficient tools to improve the quality of software, for C++ and Python programs.

Simple code instrumentation, mostly automatic in Python, delivers powerful features:

  • Collection of meaningful atomic events on timings, memory, locks wait and usage, context switches, data values..
  • Visual and interactive observation of record: timeline, plot, histograms, flame graph...
  • Remote command call and events observation can be scripted in Python: deep testing has never been simpler
  • C++:
    • ultra-light single-header cross-platform instrumentation library
    • compile-time selection of groups of instrumentation
    • compile-time hashing of static string to minimize their cost
    • compile-time striping of all instrumentation static strings
    • enhanced assertions, stack trace dump...
  • Python:
    • Automatic instrumentation of functions enter/leave, memory allocations, raised exceptions, garbage collection runs
    • Support of multithread, coroutines, asyncio/gevent

Palanteer is an efficient, lean and comprehensive solution for better and enjoyable software development!

Usage

This scripting module processes the events sent by instrumented programs, independently of their language (Python or C++).

Typical usages are:

  • Tests based on stimulations/configuration with CLI and events observation, as data can also be traced
  • Evaluation of the program performance
  • Monitoring
  • ...

Below is a simple example of a Python program instrumented with Palanteer and generating 100 000 random integers.
The range can be remotely configured with a user-defined Palanteer CLI.

#! /usr/bin/env python3
import sys
import random
from palanteer import *

globalMinValue, globalMaxValue =  0, 10

# Handler (=implementation) of the example CLI, which sets the range
def setBoundsCliHandler(minValue, maxValue):              # 2 parameters (both integer) as declared
    global globalMinValue, globalMaxValue
    if minValue>maxValue:                                 # Case where the CLI execution fails (non null status). The text answer contains some information about it
        return 1, "Minimum value (%d) shall be lower than the maximum value (%d)" % (minValue, maxValue)

    # Modify the state of the program
    globalMinValue, globalMaxValue = minValue, maxValue
    # CLI execution was successful (null status)
    return 0, ""


def main(argv):
    global globalMinValue, globalMaxValue

    plInitAndStart("example")                             # Start the instrumentation
    plDeclareThread("Main")                               # Declare the current thread as "Main", so that it can be identified more easily in the script
    plRegisterCli(setBoundsCliHandler, "config:setRange", "min=int max=int", "Sets the value bounds of the random generator")  # Declare the CLI
    plFreezePoint()                                       # Add a freeze point here to be able to configure the program at a controlled moment

    plBegin("Generate some random values")
    for i in range(100000):
        value = int(globalMinValue + random.random()*(globalMaxValue+1-globalMinValue))
        plData("random data", value)                      # Here are the "useful" values
    plEnd("")                                             # Shortcut for plEnd("Generate some random values")

    plStopAndUninit()                                     # Stop and uninitialize the instrumentation

# Bootstrap
if __name__ == "__main__":
    main(sys.argv)

The Python scripting module can remotely control this program, in particular:

  • call the setBoundsCliHandler to change the configuration
  • temporarily halt the program at the freeze point
  • see all "random data" values and the timing of the scope event "Generate some random values"
#! /usr/bin/env python3
import sys
import palanteer_scripting as ps

def main(argv):
    if len(sys.argv)<2:
        print("Error: missing parameters (the program to launch)")
        sys.exit(1)

    # Initialize the scripting module
    ps.initialize_scripting()

    # Enable the freeze mode so that we can safely configure the program once stopped on its freeze point
    ps.program_set_freeze_mode(True)

    # Launch the program under test
    ps.process_launch(sys.argv[1], args=sys.argv[2:])
    # From here, we are connected to the remote program

    # Configure the selection of events to receive
    my_selection = ps.EvtSpec(thread="Main", events=["random data"]) # Thread "Main", only the event "random data"
    ps.data_configure_events(my_selection)

    # Configure the program
    status, response = ps.program_cli("config:setRange min=300 max=500")
    if status!=0:
        print("Error when configuring: %s\nKeeping original settings." % response)

    # Disable the freeze mode so that the program resumes its execution
    ps.program_set_freeze_mode(False)

    # Collect the events as long as the program is alive or we got some events in the last round
    qty, sum_values, min_value, max_value, has_worked = 0, 0, 1e9, 0, True
    while ps.process_is_running() or has_worked:
        has_worked = False
        for e in ps.data_collect_events(timeout_sec=1.):  # Loop on received events, per batch
            has_worked, qty, sum_values, min_value, max_value = True, qty+1, sum_values+e.value, min(min_value, e.value), max(max_value, e.value)

    # Display the result of the processed collection of data
    print("Quantity: %d\nMinimum : %d\nAverage : %d\nMaximum : %d" % (qty, min_value, sum_values/max(qty,1), max_value))

    # Cleaning
    ps.process_stop()            # Kills the launched process, if still running
    ps.uninitialize_scripting()  # Uninitialize the scripting module


# Bootstrap
if __name__ == "__main__":
    main(sys.argv)

The execution of this last script, with the first one as parameter, gives the following output:

> ./remoteScript.py example.py
Quantity: 100000
Minimum : 300
Average : 400
Maximum : 500

Details can be found here.

Installation of the scripting module

Directly from the PyPI storage (from sources on Linux, binary on Windows)

pip install palanteer_scripting

Directly from GitHub sources

pip install "git+https://github.com/dfeneyrou/palanteer#egg=palanteer_scripting&subdirectory=server/scripting"

From locally retrieved sources

Get the sources:

git clone https://github.com/dfeneyrou/palanteer
cd palanteer
mkdir build
cd build

Build on Linux:

cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc) install

Build on Windows:
(vcvarsall.bat or equivalent shall be called beforehand, so that the MSVC compiler is accessible)

cmake .. -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles"
nmake install

Important!

To be useful, this module requires an "instrumentation side" in the program under analysis (C++ or Python):

  • For Python language, the instrumentation module is available on PyPI or from the github sources
  • For C++ language, the instrumentation library is a single header file available in the github sources

Also, a graphical viewer is available for non-scripted analysis of the program behaviors.

NOTE: It is strongly recommended to have a matching version between the scripting module and the instrumentation sides

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

palanteer_scripting-0.8.0.tar.gz (546.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

palanteer_scripting-0.8.0-cp313-cp313-win_amd64.whl (264.5 kB view details)

Uploaded CPython 3.13Windows x86-64

palanteer_scripting-0.8.0-cp312-cp312-win_amd64.whl (264.5 kB view details)

Uploaded CPython 3.12Windows x86-64

palanteer_scripting-0.8.0-cp311-cp311-win_amd64.whl (264.4 kB view details)

Uploaded CPython 3.11Windows x86-64

palanteer_scripting-0.8.0-cp310-cp310-win_amd64.whl (264.4 kB view details)

Uploaded CPython 3.10Windows x86-64

palanteer_scripting-0.8.0-cp39-cp39-win_amd64.whl (264.4 kB view details)

Uploaded CPython 3.9Windows x86-64

palanteer_scripting-0.8.0-cp38-cp38-win_amd64.whl (264.3 kB view details)

Uploaded CPython 3.8Windows x86-64

palanteer_scripting-0.8.0-cp37-cp37m-win_amd64.whl (264.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

File details

Details for the file palanteer_scripting-0.8.0.tar.gz.

File metadata

  • Download URL: palanteer_scripting-0.8.0.tar.gz
  • Upload date:
  • Size: 546.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for palanteer_scripting-0.8.0.tar.gz
Algorithm Hash digest
SHA256 fe104f236b38c8e298a87f3b0472e9d4f1498b5c6cb5152205fbdc4e0361d696
MD5 4d3c30a347f8f9b2e681efffcfd39366
BLAKE2b-256 fd4eb67e5df349d9b7a3841185dc5309d06a4f42bc5104c3d27212bc3a2fa7e2

See more details on using hashes here.

File details

Details for the file palanteer_scripting-0.8.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for palanteer_scripting-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 38dd52b2ccb34f4d9b411da08e9fb60795ff0440c3402b9d615c4ee5e56b6f9c
MD5 fb29ef03b1a5a0aedd93dc76c457548a
BLAKE2b-256 fef91f94fa3f4beadc8bd6986456817e9ac146773217dce5f8b3f856be4ac197

See more details on using hashes here.

File details

Details for the file palanteer_scripting-0.8.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for palanteer_scripting-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd1f09320ad18062acba810062ddf7660ca0cb4c752a63330df69bb4c8614b02
MD5 bfb83df9cbf8db34410dc2f241bf7799
BLAKE2b-256 d205eccd476ecfac342638fca49ec77e8144401eb5f53ecad8e842b74cf1bc17

See more details on using hashes here.

File details

Details for the file palanteer_scripting-0.8.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for palanteer_scripting-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56a2ab76f97378b1f5cc07a7adeee241592fa64e3e3557e15ed01ba96f77cc0b
MD5 ca2ff2cccc7af48d13e32051cd8c62c9
BLAKE2b-256 5d2c92ac3de126213eff0809f45e85337625d42d82f1ad8fcaec5625f78ac48e

See more details on using hashes here.

File details

Details for the file palanteer_scripting-0.8.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for palanteer_scripting-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc15da64282a49b556420032f8f042c9066818165b140791d8d49186daf22e98
MD5 a1c7167d8d4235a65c1d0a54d2738e63
BLAKE2b-256 84966cf3b09d2627ce5643c6bb56deae435fbaa4af299c7ff93944cfd53c618b

See more details on using hashes here.

File details

Details for the file palanteer_scripting-0.8.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for palanteer_scripting-0.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 20c3853a2e8b669b22dda069aceeeef62d7ef306a163bf37ea255ff84da67dcd
MD5 ea7050e39f0bf7f578ba96b5c6e84133
BLAKE2b-256 e61b53a4211ca8e7b059b1bd1b9e206839a3b3b8082f18ff11bc8ad8e880711e

See more details on using hashes here.

File details

Details for the file palanteer_scripting-0.8.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for palanteer_scripting-0.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 65dc1cb0267a84e6bcd1bac7d9f781981286a6b7761e9bb6aa7cb30d342b101c
MD5 d9866a0832978f3d2c9c306a1fb449cd
BLAKE2b-256 b38b02453a2bd528abc8508a0f33a9c7b2c79fdf189086ce2eed144d69a7add7

See more details on using hashes here.

File details

Details for the file palanteer_scripting-0.8.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for palanteer_scripting-0.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 034518c8b3a45e912206f85c509e6326a4302906d7074c0c1f030958f5412e12
MD5 198e13c67196c4367f146fae5ce9d979
BLAKE2b-256 1e78e1e84d0e203cdb6db09ec688fda86f8f91381bc2e2c70815d6eed09f5610

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page