This package groups all the classes and functions exported by the GNAT Programming System.
These functions are made available through various programming languages (Python and the GPS shell at the moment). The documentation in this package is mostly oriented towards Python, but it can also be used as a reference for the GPS shell
For all functions, the list of parameters is given. The first parameter will often be called “self”, and refers to the instance of the class to which the method applies. In Python, the parameter is generally put before the method’s name, as in:
self.method(arg1, arg2)
Although it could also be called as in:
method(self, arg1, arg2)
For all other parameters, their name and type are specified. An additional default value is given when the parameter is optional. If no default value is specified, the parameter is mandatory and should always be specified. The name of the parameter is relevant if you chose to use Python’s named parameters feature, as in:
self.method(arg1="value1", arg2="value2")
which makes the call slightly more readable. The method above would be defined with three parameters in this documentation (resp. “self”, “arg1” and “arg2”).
Some examples are also provides for several functions, to help clarify the use of the function.
A very useful feature of python is that all class instances can be associated with any number of user data fields. For example, if you create an instance of the class GPS.EditorBuffer, you can associate two fields “field1” and “field2” to it (the names and number are purely for demonstration purposes, and you can use your own), as in:
ed = GPS.EditorBuffer.get(GPS.File("a.adb"))
ed.field1 = "value1"
ed.field2 = 2
GPS takes great care for most classes of always returning the same python instance for a given GUI object. For instance, if you were to get another instance of GPS.EditorBuffer for the same file as above, you would in fact receive the same Python instance, and thus the two fields are available to you, as in:
ed = GPS.EditorBuffer.get(GPS.File("a.adb"))
# ed.field1 is still "value1"
This is a very convenient way to store your own data associated with the various objects exported by GPS. These data will cease to exist when the GPS object itself is destroyed (for instance when the editor is closed in the example above).
In a lot of cases, you will need to connect to specific hooks exported by GPS to be aware of events happening in GPS (loading of a file, closing a file,...). These hooks and their use are described in the GPS manual (see also the GPS.Hook class).
Here is a small example, where the function on_gps_started is called when the GPS window is fully visible to the user:
import GPS
def on_gps_started(hook):
pass
GPS.Hook("gps_started").add(on_gps_started)
The list of parameters for the hooks is described for each hook below. The first parameter is always the name of the hook, so that the same function can be used for multiple hooks if necessary.
There are two categories of hooks: the standard hooks and the action hooks. The former return nothing, the latter return a boolean indicating whether your callback was able to perform the requested action. They are used to override some of GPS’s internal behavior.
Add a command to the navigation buttons in the toolbar. When the user presses the back button, this command will be executed, and should put GPS in a previous state. This is for instance used while navigating in the HTML browsers to handle the back button
Parameters: | command – A string |
---|
Returns the base name for the given full path name
Parameters: | filename – A string |
---|
Change the current directory to dir
Parameters: | dir – A string |
---|
Update the cross-reference information stored in GPS. This needs to be called after major changes to the sources only, since GPS itself is able to work with partially up-to-date information
Returns the context at the time the contextual menu was open.
This function will only return a valid context while the menu is open, or while an action executed from that menu is executed. You can store your own data in the returned instance, so that for instance you can precompute some internal data in the filters for the contextual actions (see <filter> in the XML files), and reuse that precomputed data when the menu is executed. See also the documentation for “contextual_menu_open” hook.
Returns: | An instance of GPS.FileContext, GPS.AreaContext,... |
---|
See also
# Here is an example that shows how to precompute some data when we
# decide whether a menu entry should be displayed in a contextual menu,
# and reuse that data when the action executed through the menu is
# reused.
import GPS
def on_contextual_open(name):
context = GPS.contextual_context()
context.private = 10
GPS.Console().write("creating data " + `context.private` + '\n')
def on_contextual_close(name):
context = GPS.contextual_context()
GPS.Console().write("destroying data " + `context.private` + '\n')
def my_own_filter():
context = GPS.contextual_context()
context.private += 1
GPS.Console().write("context.private=" + `context.private` + '\n')
return 1
def my_own_action():
context = GPS.contextual_context()
GPS.Console().write("my_own_action " + `context.private` + '\n')
GPS.parse_xml('''
<action name="myaction%gt;"
<filter shell_lang="python"
shell_cmd="contextual.my_own_filter()" />
<shell lang="python">contextual.my_own_action()</shell>
</action>
<contextual action="myaction">
<Title>Foo1</Title>
</contextual>
<contextual action="myaction">
<Title>Foo2</Title>
</contextual>
''')
GPS.Hook("contextual_menu_open").add(on_contextual_open)
GPS.Hook("contextual_menu_close").add(on_contextual_close)
# The following example does almost the same thing as the above, but
# without relying on the hooks to initialize the value. We set the value
# in the context the first time we need it, instead of every time the
# menu is open.
import GPS
def my_own_filter2():
try:
context = GPS.contextual_context()
context.private2 += 1
except AttributeError:
context.private2 = 1
GPS.Console().write("context.private2=" + `context.private2` + '\n')
return 1
def my_own_action2():
context = GPS.contextual_context()
GPS.Console().write(
"my_own_action, private2=" + `context.private2` + '\n')
GPS.parse_xml('''
<action name="myaction2">
<filter shell_lang="python"
shell_cmd="contextual.my_own_filter2()" />
<shell lang="python">contextual.my_own_action2()</shell>
</action>
<contextual action="myaction2">
<Title>Bar1</Title>
</contextual>
<contextual action="myaction2">
<Title>Bar2</Title>
</contextual>
''')
Returns the current context in GPS. This is the currently selected file, line, column, project,... depending on what window is currently active. From one call of this function to the next, a different instance is returned, and therefore you shouldn’t store your own data in the instance, since you will not be able to recover it later on
Returns: | An instance of GPS.FileContext, GPS.AreaContext,... |
---|
See also
GPS.MDI.current:() Access the current window
Delete file/directory name from the file system
Parameters: | name – A string |
---|
list files following pattern (all files by default)
Parameters: | pattern – A string |
---|---|
Returns: | A list of strings |
Returns the directory name for the given full path name
Parameters: | filename – A string |
---|
Dump string to a temporary file. Return the name of the file. If add_lf is TRUE, append a line feed at end of file
Parameters: |
|
---|---|
Returns: | A string, the name of the output file |
Writes text to filename on the disk. This is mostly intended for poor shells like the GPS shell which do not have better solutions. In python, it is recommended to use python’s own mechanisms
Parameters: |
|
---|
Dump in the file $HOME/.gps/db_dump the current contents of the cross-references database. This is intended for debugging purposes only
This function is specific to python. It executes the string given in argument in the context of the GPS Python console. If you use the standard python’s exec() function instead, the latter will only modify the current context, which generally will have no impact on the GPS console itself.
Parameters: | noname – A string |
---|
# Import a new module transparently in the console, so that users can
# immediately use it
GPS.exec_in_console("import time")
Execute one of the actions defined in GPS. Such actions are either predefined by GPS or defined by the users through customization files. See the GPS documentation for more information on how to create new actions. GPS will wait until the command completes to return the control to the caller, whether you execute a shell command, or an external process.
The action’s name can start with a ‘/’, and be a full menu path. As a result, the menu itself will be executed, just as if the user had pressed it.
The extra arguments must be strings, and are passed to the action, which can use them through $1, $2,...
The list of existing actions can be found through the Edit->Actions menu.
The action will not be executed if the current context is not appropriate for this action.
Parameters: |
|
---|
See also
GPS.execute_action(action="Split vertically")
# will split the current window vertically
This command is similar to GPS.execute_action. However, commands that execute external applications or menus are executed asynchronously: GPS.execute_asynchronous_action will immediately return, although the external application might not have completed its execution
Parameters: |
|
---|
See also
Exit GPS, asking for confirmation if any file is currently modified and unsaved. If force is True, no check is done.
Status is the exit status to return to the calling shell. 0 will generally mean success on all architectures.
Parameters: |
|
---|
Forces GPS to use the cross-reference information it already has in memory. GPS will no longer check on the disk whether more recent information is available. This can provide a significant speedup in complex scripts or scripts that need to analyze the cross-reference information for lots of files. In such cases, the script should generally call GPS.Project.update_xref to first load all the required information in memory.
You need to explicitly call GPS.thaw_xref to go back to the default GPS behavior. Note the use of the “finally” exception handling in the following example, which ensures that even if there is some unexpected exception, the script always restores properly the default behavior.
try:
GPS.Project.root().update_xref(recursive=True)
GPS.freeze_xref()
... complex computation
finally:
GPS.thaw_xref()
Return the name of the current build mode. Return an empty string if no mode is registered.
Return the result of the last compilation command
Parameters: |
|
---|---|
Returns: | A string or list, the output of the latest build for the corresponding target. |
Return the “busy” state
Return the directory that contains the user-specific files. This directory always ends with a directory separator
Returns: | The user’s GPS directory |
---|
See also
log = GPS.get_home_dir() + "log"
# will compute the name of the log file generated by GPS
Return the installation directory for GPS. This directory always ends with a directory separator
Returns: | The install directory for GPS |
---|
See also
html = GPS.get_system_dir() + "share/doc/gps/html/gps.html"
# will compute the location of GPS's documentation
Return the directory where gps creates temporary files. This directory always ends with a directory separator
Returns: | The install directory for GPS |
---|
Dynamically register a new module, reading its code from shared_lib.
The library must define the following two symbols:
This is work in progress, and not fully supported on all systems.
Parameters: |
|
---|
See also
Tell if the specified server is the local machine.
Parameters: | server – The server. Possible values are “Build_Server”, “Debug_Server”, “Execution_Server” and “Tools_Server”. |
---|---|
Returns: | A boolean |
This function returns the name of the last action executed by GPS. This name is not ultra-precise: it will be accurate only when the action is executed through a key binding. Otherwise, an empty string is returned. However, the intent here is for a command to be able to check whether it is called multiple times in a row. For this, this command will return the command set by GPS.set_last_command() if it was set.
Returns: | A string |
---|
See also
def kill_line():
'''Emulates Emacs behavior: when called multiple times, the cut line must be
appended to the previously cut one.'''
# The name of the command below is unknown to GPS. This is just a
# string we use in this implementation to detect multiple consecutive
# calls to this function. Note that this works whether the function is
# called from the same key binding or not, and from the same GPS action
# or not
append = GPS.last_command() == "my-kill-line":
GPS.set_last_command("my-kill-line")
This command returns the list of all known GPS actions. This doesn’t include menu names. All actions are lower-cased, but the order in the list is not significant.
Returns: | A list of strings |
---|
See also
Given a key binding, for instance “control-x control-b”, this function returns the list of actions that could be executed. Not all actions would be executed, though, since only the ones for which the filter matches are executed. The name of the actions is always in lower cases.
Parameters: | key – A string |
---|---|
Returns: | A list of strings |
See also
list files following pattern (all files by default)
Parameters: | pattern – A string |
---|---|
Returns: | A list of strings |
Return the list of modules that are currently registered in GPS. Each facility in GPS is provided in a separate module, so that users can choose whether to activate specific modules or not. Some modules can also be dynamically loaded
Returns: | List of strings |
---|
See also
Load an XML customization string. This string should contain one or more toplevel tags similar to what is normally found in custom files, such as <key>, <alias>, <action>,..
Optionally you can also pass the full contents of an XML file, starting from the <?xml?> header.
Parameters: | xml – The XML string to parse |
---|
GPS.parse_xml(
'''<action name="A"><shell>my_action</shell></action>
<menu action="A"><title>/Edit/A</title></menu>''')
Adds a new menu in GPS, which executes the command my_action
Print name of current/working directory
Returns: | A string |
---|
This command will have the same return value as the standard Python command os.getcwd(). The current directory can also be changed through a call to os.chdir(“dir”).
This action will execute the next one <count> times.
Parameters: | count – An integer |
---|
Reset the internal cross-reference database that GPS is using for most of its navigation facilities. You shouldn’t have to call that yourself, since in general GPS should know by itself when it is necessary to refresh its database. However, this might be used as a workaround if you think you have troubles with the cross-reference information which isn’t accurate.
Forces an immediate save of the persistent properties that GPS maintains for files and projects (for instance the text encoding, the programming language, the debugger breakpoints,...).
You do not have to call this subprogram explicitly in general, since this is done automatically by GPS on exit.
Set the current build mode. If specified mode is not a registered mode, do nothing.
Parameters: | mode – Name of the mode to set |
---|
Activate the “busy” state in GPS by animating the GPS icon. This command can be called recursively, and GPS.unset_busy should be called a corresponding number of time to stop the animation.
This function overrides the name of the last command executed by GPS. This new name will be the one returned by GPS.last_command() until the user performs a different action. Thus, multiple calls of the same action in a row will always return the value of the command parameter. See the example in GPS.last_command()
Parameters: | command – A string |
---|
See also
Return the list of languages for which GPS has special handling. Any file can be open in GPS, but some extensions are recognized specially by GPS to provide syntax highlighting, cross-references, or other special handling. See the GPS documentation on how to add support for new languages in GPS.
The returned list is sorted alphabetically, and the name of the language has been normalized (start with an upper case, and use lowercases for the rest except after an underscore character)
Returns: | List of strings |
---|
GPS.supported_languages()[0]
=> return the name of the first supported language
See GPS.freeze_xref for more information
See also
Reset the “busy” state
Return GPS version as a string.
Returns: | A string |
---|
This class gives access to the interactive commands in GPS. These are the commands to which the user can bind a key shortcut, or for which we can create a menu. Another way to manipulate those commands is through the XML tag <action>, but it might be more convenient to use python since you do not have to qualify the function name as a result
Creates a new instance of Action. This is bound with either an existing action, or with an action that will be created through GPS.Action.create(). The name of the action can either be a simple name, or a path name to reference a menu, as in /Edit/Copy for instance.
Parameters: | name – A string |
---|
Create a new contextual menu associated with the command. This function is somewhat a duplicate of GPS.Contextual.create, but with one major difference: the callback for the action is a python function that takes no argument, whereas the callback for GPS.Contextual receives one argument.
Parameters: |
|
---|
Export the function on_activate and make it interactive so that users can bind keys and menus to it. The function should not require any argument, since it will be called with none.
filter is either the name of a predefined filter (a string), or a subprogram that receives the context as a parameter, and should return True if the command can be executed within that context. This is used to disable menu items when they are not available.
category is the category of the command in the /Edit/Key Shortcuts dialog.
description is the description of the command that appears in that dialog. If you are using python, a convenient value is on_activate.__doc__, which avoids duplicating the comment.
The package gps_utils.py provides a somewhat more convenient python interface to make function interactives (see gps_utils.interactive).
Parameters: |
|
---|
Associate a default key binding with the action. This will be ignored if the user has defined his own key binding. Possible values for key can be experimented with by using the /Edit/Key Shortcuts dialog
Parameters: | key – A string |
---|
Create a new menu associated with the command. This function is somewhat a duplicate of GPS.Menu.create(), but with one major difference: the callback for the action is a python function that takes no argument, whereas the callback for GPS.Menu() receives one argument.
Parameters: |
|
---|
General interface to version control activities systems
Creates a new activity and returns its instance
Parameters: | name – Activity’s name to be given to this instance |
---|
a=GPS.Activities("Fix loading order")
print a.id()
Commit the activity
Returns the activity’s files list
Returns: | A list of files |
---|
Returns the activity containing the given file
Parameters: | file – An instance of GPS.File |
---|---|
Returns: | An instance of GPS.Activities |
Returns the activity given its id
Parameters: | id – The unique activity’s id |
---|---|
Returns: | An instance of GPS.Activities() |
See also
Returns true if the activity will be commit atomically
Returns: | A boolean |
---|
Returns true if the activity has a log present
Returns: | A boolean |
---|
Returns the activity’s unique id
Returns: | A string |
---|
Returns true if the activity is closed
Returns: | A boolean |
---|
Returns the list of all activities’s id
Returns: | A list of all activities’s id defined |
---|
Returns the activity’s log content
Returns: | A string |
---|
Returns the activity’s log file
Returns: | A file |
---|
Returns the activity’s name :return: A string
Set the activity’s closed status
Parameters: | status – A boolean |
---|
Change the activity’s group commit status
Returns the activity’s VCS name
Returns: | A string |
---|
Represents a context that contains file information and a range of lines currently selected
See also
Dummy function, whose goal is to prevent user-creation of a GPS.AreaContext instance. Such instances can only be created internally by GPS
Return the last selected line in the context
Returns: | An integer |
---|
Return the first selected line in the context
Returns: | An integer |
---|
This class provides access to the bookmarks of GPS. These are special types of markers that are saved across sessions, and can be used to save a context within GPS. They are generally associated with a specific location in an editor, but can also be used to location special boxes in a graphical browser for instance.
This function prevents the creation of a bookmark instance directly. You must use GPS.Bookmark.get() instead, which will always return the same instance for a given bookmark, thus allowing you to save your own custom data with the bookmark
See also
This function creates a new bookmark at the current location in GPS. If the current window is an editor, it creates a bookmark that will save the exact line and column, so that the user can go back to them easily. Name is the string that appears in the bookmarks window, and that can be used later to query the same instance using GPS.Bookmark.get(). This function emits the hook bookmark_added.
Parameters: | name – A string |
---|---|
Returns: | An instance of GPS.Bookmark |
See also
GPS.MDI.get("file.adb").raise_window()
bm = GPS.Bookmark.create("name")
Delete an existing bookmark. This emits the hook bookmark_removed
This function retrieves a bookmark by its name. If no such bookmark exists, an exception is raised. The same instance of GPS.Bookmark is always return for a given bookmark, so that you can store your own user data within the instance. Note however that this custom data will not be automatically preserved across GPS sessions, so you might want to save all your data when GPS exits
Parameters: | name – A string |
---|---|
Returns: | An instance of GPS.Bookmark |
See also
GPS.Bookmark.get("name").my_own_field = "GPS"
print GPS.Bookmark.get("name").my_own_field # prints "GPS"
Change the current context in GPS so that it matches the one saved in the bookmark. In particular, if the bookmark is inside an editor, this editor is raised, and the cursor moved to the correct line and column. You cannot query directly the line and column from the bookmark, since these might not exist, for instance when the editor points inside a browser.
Return the list of all existing bookmarks
Returns: | A list of GPS.Bookmark instances |
---|
# The following command returns a list with the name of all
# existing purposes
names = [bm.name() for bm in GPS.Bookmark.list()]
Return the current name of the bookmark. It might not be the same one that was used to create or get the bookmark, since the user might have used the bookmarks view to rename it
Returns: | A string |
---|
Rename an existing bookmark. This updates the bookmarks view automatically, and emits the hooks bookmark_removed and bookmark_added
Parameters: | name – A string |
---|
This class provides an interface to the GPS build targets. Build targets can be configured through XML or through the Target Configuration dialog.
Initializes a new instance of the class BuildTarget. Name must correspond to an existing target.
Parameters: | name – Name of the target associated with this instance |
---|
compile_file_target=GPS.BuildTarget("Compile File")
compile_file_target.execute()
Clone the target to a new target. All the properties of the new target are copied from the target. Any graphical element corresponding to this new target is created.
Parameters: |
|
---|
Launch the build target:
main_name indicates the base name of the main source to build, if this target acts on a main file.
file indicates the file to build if this targets acts on a file.
if force is True, this means that the target should be launched directly, even if its parameters indicate that it should be launched through an intermediary dialog.
extra_args contains any extra parameters to pass to the command line.
build_mode indicates build mode to be used for build.
if synchronous is False, build target is launched asynchronously. compilation_finished hook will be called when build target execution is completed.
param main_name: A String param file: A GPS.File param force: A Boolean param extra_args: A String param build_mode: A String param synchronous: A Boolean param directory: A String param quiet: A Boolean
Hide target from menus and toolbar.
Remove target from the list of known targets. Any graphical element corresponding to this target is also removed.
Show target in menus and toolbar where it was before hiding.
This class represents a button that can be pressed to trigger various actions
See also
Initializes a new button. When the button is pressed by the user, on_click is called with the a single parameter, self.
Parameters: |
|
---|
def on_click (button):
print "Button pressed"
button = GPS.Button ("my_id", label="Press me", on_click=on_click)
GPS.Toolbar().append (button)
Change the text that appears on the button
Parameters: | label – A string |
---|
This class provides an interface to the GPS clipboard. This clipboard contains the previous selections that were copied or cut from a text editor. Several older selections are also saved so that they can be pasted later on
This function returns the contents of the clipboard. Each item in the list corresponds to a past selection, the one at position 0 being the most recent. If you want to paste text in a buffer, you should paste the text at position GPS.Clipboard.current`() rather than the first in the list
Returns: | A list of strings |
---|
Copies a given static text into the clipboard. It is better in general to use GPS.EditorBuffer.copy(), but it might happen that you need to append text that doesn’t exist in the buffer.
Parameters: |
|
---|
See also
This function returns the index, in GPS.Clipboard.contents(), of the text that was last pasted by the user. If you were to select the menu /Edit/Paste, that would be the text pasted by GPS. If you select /Edit/Paste Previous, current will be incremented by 1, and the next selection in the clipboard will be pasted
Returns: | An integer |
---|
This function merges two levels of the clipboard, so that the one at index index1 now contains the concatenation of both. The one at index2 is removed.
Parameters: |
|
---|
This class is a toolset that allows to handle CodeAnalysis instances.
Raises an exception to prevent users from creating new instances.
Adds coverage information of every source files referenced in the current project loaded in GPS, and every imported projects.
Adds coverage information provided by a .gcov file parsing. The data is read from the cov parameter, that should have been created from the specified src file.
Parameters: |
|
---|
a = GPS.CodeAnalysis.get ("Coverage Report")
a.add_gcov_file_info (src=GPS.File ("source_file.adb"), cov=GPS.File ("source_file.adb.gcov"))
Adds coverage information of every source files referenced in the given ‘prj’ gnat project file (.gpr).
Parameters: | prj – A GPS.File instance |
---|
Removes all code analysis information from memory.
Create an xml-formated file that contains a representation of the given code analysis.
Parameters: | xml – A GPS.File instance |
---|
See also
a = GPS.CodeAnalysis.get ("Coverage")
a.add_all_gcov_project_info ()
a.dump_to_file (xml=GPS.File ("new_file.xml"))
Creates an empty code analysis data structure. Data can be put in this structure by using one of the primitive operations.
Parameters: | name – The name of the code analysis data structure to get or create |
---|---|
Returns: | An instance of GPS.CodeAnalysis associated to a code analysis data structure in GPS. |
a = GPS.CodeAnalysis.get ("Coverage")
a.add_all_gcov_project_info ()
a.show_coverage_information ()
Removes from the Locations view any listed coverage locations, and remove from the source editors their annotation column if any.
Replace the current coverage information in memory with the given xml-formated file one.
Parameters: | xml – A GPS.File instance |
---|
See also
a = GPS.CodeAnalysis.get ("Coverage")
a.add_all_gcov_project_info ()
a.dump_to_file (xml=GPS.File ("new_file.xml"))
a.clear ()
a.load_from_file (xml=GPS.File ("new_file.xml"))
Displays the data stored in the CodeAnalysis instance into a new MDI window. This window contains a tree view that can be interactively manipulated to analyze the results of the code analysis (Coverage, ...).
Lists in the Locations view the lines that are not covered in the files loaded in the CodeAnalysis instance. The lines are also highlighted in the corresponding source file editors, and an annotation column is added to the source editors.
This class gives access to GPS’s features for automatically fixing compilation errors
Return the instance of codefix associated with the given category
Parameters: | category – A string |
---|
Return a specific error at a given location. If message is null, then the first matching error will be taken. None is returned if no such fixable error exists.
Parameters: |
|
---|---|
Returns: | An instance of GPS.CodefixError |
List the fixable errors in that session
Returns: | A list of instances of GPS.CodefixError |
---|
Parse the output of a tool, and suggests auto-fix possibilities whenever possible. This adds small icons in the location window, so that the user can click on it to fix compilation errors. You should call Locations.parse with the same output prior to calling this command.
The regular expression specifies how locations are recognized. By default, it matches file:line:column. The various indexes indicate the index of the opening parenthesis that contains the relevant information in the regular expression. Set it to 0 if that information is not available.
Access the various suggested fixes through the methods of the Codefix class
Parameters: |
|
---|
See also
List all the existing Codefix sessions. The returned values can all be used to create a new instance of Codefix through its constructor.
Returns: | A list of strings |
---|
# After a compilation failure:
>>> GPS.Codefix.sessions()
=> ['Builder results']
This class represents a fixable error in the compilation output
Describe a new fixable error. If the message is not specified, the first error at that location is returned
Parameters: |
|
---|
Fix the error, using one of the possible fixes. The index given in parameter is the index in the list returned by “possible_fixes. By default, the first choice is taken. Choices start at index 0.
Parameters: | choice – The index of the fix to apply, see output of GPS.CodefixError.possible_fixes() |
---|
for err in GPS.Codefix ("Builder results").errors():
print err.fix()
# will automatically fix all fixable errors in the last compilation
# output
Return the location of the error
Returns: | An instance of GPS.FileLocation |
---|
Return the error message, as issues by the tool
Returns: | A string |
---|
List the possible fixes for the specific error
Returns: | A list of strings |
---|
for err in GPS.Codefix ("Builder results").errors():
print err.possible_fixes()
This class represents a combo box, ie a text entry widget with a number of predefined possible values. The user can interactively select one of multiple values through this widget
Create a new combo. The combo will graphically be preceded by some text if label was specified. on_changed will be called every time the user selects a new value for the combo box. Its parameters are the following:
Parameters: |
|
---|
Add a choice to specified entry, on_selected will be executed whenever this choice is selected. It is called with the following parameters:
Parameters: |
|
---|
Remove all choices from specified entry
Return the current selection in specified entry
Returns: | A string |
---|
Remove a choice from specified entry
Parameters: | choice – A string |
---|
See also
Set the current selection in specified entry
Parameters: | choice – A string |
---|
Interface to GPS command. This class is abstract, and shall be subclassed.
Return the list of commands of the name given in parameter, scheduled or running in the task manager
Parameters: | name – A string |
---|---|
Returns: | a list of GPS.Command |
Return the result of the command, if any. Must be overriden by children
Interrupt the current command
Return the list of commands scheduled or running in the task manager
Returns: | a list of GPS.Command |
---|
Return The name of the command
Return a list representing the current progress of the command. If current = total, then the command is finished.
Returns: | a list [current, total] |
---|
This class gives access to a command-line window that pops up on the screen. This window is short-lived (in fact there can be only one such window at any given time), and any key press is redirected to that window. As a result, it should be used to interactively query a parameter for an action, for instance.
Among other things, it is used in the implementation of the interactive search facility, where each key pressed should be added to the search pattern instead of to the editor.
class Isearch(CommandWindow):
def __init__(self):
CommandWindow.__init__(
self, prompt="Pattern",
on_key=self.on_key,
on_changed=self.on_changed)
def on_key(self, input, key, cursor_pos):
if key == "control-w":
.... # Copy current word from editor into the window
self.write(input[:cursor_pos + 1] + "FOO" + input[cursor_pos + 1:])
return True ## No further processing needed
return False
def on_changed(self, input, cursor_pos):
## Search for next occurrence of input in buffer
....
This function initializes an instance of a command window. An exception is raised if such a window is already active in GPS. Otherwise, the new window is popped up on the screen. Its location depends on the global_window parameter: if true, the command window is displayed at the bottom of the GPS window and occupies its whole width. If false, it is displayed at the bottom of the currently selected window.
The prompt is the short string displayed just before the command line itself. Its goal is to indicate to the user what he is entering.
The last four parameters are callbacks:
on_changed is called when the user has entered one or more new characters in the command line. This function is given two parameters: the current input string, and the last cursor position in this string. See the example above on how to get the part of the input before and after the cursor.
on_activate is called when the user has pressed enter. The command window has already been closed at that point if close_on_activate is True, and the focus given back to the initial MDI window that had it. This callback is given a single parameter, the final input string
on_cancel is called when the user has pressed a key that closed the dialog, for instance Esc. It is given a single parameter, the final input string. This callback is also called when you explicitly destroy the window yourself by calling self.destroy().
on_key is called when the user has pressed a new key on his keyboard, but before the corresponding character has been added to the command line. This can be used to filter out some characters, or provide special behavior for some key combination (see the example above). It is given three parameters, the current input string, the key that was pressed, and the current cursor position.
param prompt: A string param global_window: A boolean param on_changed: A subprogram param on_activate: A subprogram param on_cancel: A subprogram param on_key: A subprogram param close_on_activate: A boolean
This function returns the current contents of the command window
Returns: | A string |
---|
Change the background color of the command window. In most cases, this can be used to make the command window more obvious, or to point out errors by changing the color. If the color parameter is not specified, the color reverts to its default
Parameters: | color – A string |
---|
Changes the prompt that is displayed before the text field
Parameters: | prompt – A string |
---|
This function replaces the current content of the command line. As a result, you should make sure to preserve the character you want, as in the on_key callback in the example above. Calling this function will also result in several calls to the on_changed callback, one of them with an empty string (since gtk first deletes the contents and then writes the new contents.
The cursor parameter can be used to specify where the cursor should be left after the insertion. -1 indicates the end of the string.
param text: A string param cursor: An integer
This class is used to create and interact with the interactive consoles in GPS. It can be used to redirect the output of scripts to various consoles in GPS, or to get input from the user has needed.
# The following example shows how to redirect the output of a script to
# a new console in GPS:
console = GPS.Console("My_Script")
console.write("Hello world") # Explicit redirection
# The usual python's standard output can also be redirected to this
# console:
sys.stdout = GPS.Console("My_Script")
print "Hello world, too" # Implicit redirection
sys.stdout = GPS.Console("Python") # Back to python's console
sys.stdout = GPS.Console() # Or back to GPS's console
# The following example shows an integration between the GPS.Console
# and GPS.Process classes, so that a window containing a shell can be
# added to GPS.
# Note that this class is in fact available directly through "from
# gps_utils.console_process import Console_Process" if you need it in
# your own scripts.
import GPS
class Console_Process(GPS.Console, GPS.Process):
def on_output(self, matched, unmatched):
self.write(unmatched + matched)
def on_exit(self, status, unmatched_output):
try:
self.destroy()
except:
pass # Might already have been destroyed
def on_input(self, input):
self.send(input)
def on_destroy(self):
self.kill() # Will call on_exit
def __init__(self, process, args=""):
GPS.Console.__init__(
self, process,
on_input=Console_Process.on_input,
on_destroy=Console_Process.on_destroy,
force=True)
GPS.Process.__init__(
self, process + ' ' + args, ".+",
on_exit=Console_Process.on_exit,
on_match=Console_Process.on_output)
bash = Console_Process("/bin/sh", "-i")
Create a new instance of GPS.Console. GPS will try to reuse any existing console with the same name. If none exists yet, or the parameter force is set to True, then GPS will create a new console.
You cannot create the Python and Shell consoles through this call. If you do, an exception is raised. Instead, use GPS.execute_action (“/Tools/Consoles/Python”), and then get a handle on the console through GPS.Console. This is because these two consoles are tightly associated with each of the scripting languages.
If GPS reuses an existing console, on_input overrides the callback that was already set on the console, whereas on_destroy will be called in addition to the one that was already set on the console.
If this is not the desired behavior, you can also call destroy() on the console, and call the constructor again.
The subprogram on_input is called whenever the user has entered a new command in the console and pressed <enter> to execute it. It is called with the following parameters:
- $1: The instance of the GPS.Console
- $2: The command to execute
See the subprogram GPS.Console.set_prompt_regexp for proper handling of input in the console.
The subprogram on_destroy is called whenever the user closes the console. It is called with a single parameter:
- $1: The instance of the GPS.Console
The subprogram on_completion is called whenever the user presses tab in the console. It is called with a single parameter:
- $1: The instance of the GPS.Console
The default implementation is to insert a tab character, but you could choose to add some user input through GPS.Console.add_input for instance.
The subprogram on_resize is called whenever the console is resized by the user. It is passed three parameters:
- $1 is the instance of GPS.Console
- $2 is the number of visible rows in the console,
- and $3 is the number of visible columns.
This is mostly useful when a process is running in the console, in which case you can use GPS.Process.set_size to let the process know about the size. Note that the size passed to this callback is conservative: since all characters might not have the same size, GPS tries to compute the maximal number of visible characters and pass this to the callback, but the exact number of characters might depend on the font.
The subprogram on_interrupt is called when the user presses control-c in the console. It receives a single parameter, which is the instance of GPS.Console. By default a control-c is handled by GPS itself and will kill the last process that was started.
As described above, GPS provides a high-level handling of consoles, where it manages histories, completion, command line editing and execution on its own through the callbacks described above. This is in general a good thing and provides advanced functionalities to some programs that lack them. However, there are cases where this gets in the way. For instance, if you want to run a Unix shell or a program that manipulates the console by moving the cursor around on its own, the high-level handling of GPS gets in the way. In such a case, the following parameters can be used: on_key, manage_prompt and ansi.
ansi should be set to true if GPS should emulate an ANSI terminal. These are terminals that understand certain escape sequences that applications sent to move the cursor to specific positions on screen or to change the color and attributes of text.
manage_prompt should be set to False to disable GPS’s handling of prompt. In general, this is incompatible with using the on_input callback, since GPS no longer distinguishes what was typed by the user and what was written by the external application. This also means that the application is free to write anywhere on the screen. This should in general be set to True if you expect your application to send ANSI sequences.
on_key is a subprogram that is called every time the user presses a key in the console. This is much lower-level than the other callbacks above, but if you are driving external applications you might have a need to send the keys as they happen, and not wait for a newline. on_key receives four parameters:
$1: the instance of GPS.Console
- $2: “keycode”: this is the internal keycode for the key that the user
pressed. All keys can be represented this way, but this will occasionaly be left to 0 when the user input was simulated and no real key was pressed.
- $3: “key”: this is the unicode character that the user entered. This will
be 0 when the character is not printable (for instance return, tab, key up,...). In python, you can manipulate it with code like unichr(key).encode("utf8") to get a string representation that can be sent to an external process
- $4: “modifier”: these are the state of the control, shift, mod1 and lock
keys. This is a bitmask, where shift is 1, lock is 2, control is 4 and mod1 is 8.
Parameters: |
|
---|
Return True if the console accepts input, False otherwise
Returns: | A boolean |
---|
Add some extra text to the console as if the user had typed it. As opposed to text inserted with GPS.Console.write, this text remains editable by the user
Parameters: | text – A string |
---|
Clear the current contents of the console
Removes any user input that the user has started typing (ie since the last output inserted through GPS.Console.write
Copy the selection to the clipboard
Register a regular expression that should be highlight in this console to provide hyper links. These links are searched for when calling GPS.Console.write_with_links. The part of the text that matches any of the link registered in the console through GPS.Console.create_link gets highlighted in blue and underlined, just like an hyper link in a web browser. If the user clicks on that text, on_click gets called with one parameter, the text that was clicked on. This can for instance be used to jump to an editor, open a web browser,...
If the regular expression does not contain any parenthesis, the text that matches the whole regexp is highlighted as a link. Otherwise, only the part of the text that matches the first parenthesis group is highlighted (so that you can test for the presence of text before or after the actual hyper link).
Parameters: |
|
---|
See also
Make the console accept / reject input according to the value of “enable”
Parameters: | enable – A boolean |
---|
Do nothing, needed for compatibility with Python’s file class
Return the content of the console
Returns: | A string |
---|
Return True if the console behaves like a terminal. Mostly needed for compatibility with Python’s file class
Returns: | A boolean |
---|
Read the available input in the console. Currently, this behaves exactly like readline()
Returns: | A String |
---|
Ask the user to enter a new line in the console, and returns that line. GPS is blocked until enter has been pressed in the console
Returns: | A String |
---|
Select the complete contents of the console
Output some text on the console. This text is read-only. If the user had started typing some text, that text is temporarily remove, the next text is inserted (read-only), and the user text is put back afterward.
The optional parameter mode specifies the kind of the output text: “text” for ordinary messages (this is default), “log” for log messages, and “error” for error messages.
Parameters: |
|
---|
See also
Console().write(u"\N{LATIN CAPITAL LETTER E WITH ACUTE}".encode("utf-8"))
Output some text on the console, highlight the parts of it that matches the regular expression registered by GPS.Console.create_link.
Parameters: | text – A utf8 string |
---|
import re
console = GPS.Console("myconsole")
console.create_link("(([\w-]+):(\d+))", open_editor)
console.write_with_link("a file.adb:12 location in a file")
def open_editor(text):
matched = re.match("([\w+-]+):(\d+)", text)
buffer = GPS.EditorBuffer.get(GPS.File (matched.group(1)))
buffer.current_view().goto(
GPS.EditorLocation(buffer, int(matched.group(2)), 1))
This class is a general interface to the contextual menus in GPS. It gives you control over which menus should be displayed when the user right clicks in parts of GPS
See also
Initializes a new instance of GPS.Contextual. The name is the name that was given to the contextual menu when it was created, and is a static string independent of the actual label used when the menu is displayed (and which is dynamic, depending on the context). You can get the list of valid names by checking the list of names returned by GPS.Contextual.list
Parameters: | name – A string |
---|
See also
# You could for instance decide to always hide the "Goto
# declaration" contextual menu with the following call:
GPS.Contextual ('Goto declaration of entity').hide()
# After this, the menu will never be displayed again.
Create a new contextual menu entry. Whenever this menu entry is selected by the user, GPS will execute on_activate, passing one parameter which is the context for which the menu is displayed (this is generally the same as GPS.current_contextual()).
If on_activate is None, a separator will be created.
The filter parameter can be used to filter when the entry should be displayed in the menu. It is a subprogram that receives one parameter, an instance of GPS.Context, and returns a boolean. If it returns True, the entry will be displayed, otherwise it is hidden.
The label parameter can be used to control the text displayed in the contextual menu. By default, it is the same as the contextual name (used in the constructor to GPS.Contextual.__init__). If specified, it must be a subprogram that takes an instance of GPS.Context in parameter, and returns a string, which will be displayed in the menu.
The parameters group, ref and add_before can be used to control the location of the entry within the contextual menu. group allows you to create groups of contextual menus that will be put together. Items of the same group appear before all items with a greater group number. ref is the name of another contextual menu entry, and add_before indicates whether the new entry is put before or after that second entry.
Parameters: |
|
---|
## This example demonstrates how to create a contextual
## menu with global functions
def on_contextual(context):
GPS.Console("Messages").write("You selected the custom entry")
def on_filter(context):
return isinstance(context, GPS.EntityContext)
def on_label(context):
global count
count += 1
return "Custom " + count
GPS.Contextual("Custom").create(
on_activate=on_contextual, filter=on_filter, label=on_label)
## This example is similar to the one above, but uses a python
## class to encapsulate date.
## Note how the extra parameter self can be passed to the callbacks
## thanks to the call to self.create
class My_Context(GPS.Contextual):
def on_contextual(self, context):
GPS.Console("Messages").write(
"You selected the custom entry " + self.data)
def on_filter(self, context):
return isinstance(context, GPS.EntityContext)
def on_label(self, context):
return self.data
def __init__(self):
GPS.Contextual.__init__(self, "Custom")
self.data = "Menu Name"
self.create(on_activate=self.on_contextual,
filter=self.on_filter,
label=self.label)
Create a new dynamic contextual menu.
This is a submenu of a contextual menu, where the entries are generated by the factory parameter. This parameter should return a list of strings, which will be converted to menus by GPS. These strings can contain ‘/’ characters to indicate submenus.
filter is a subprogram that takes the GPS.Context as a parameter, and returns a boolean indicating whether the submenu should be displayed.
label can be used to specify the label to use for the menu entry. It can include directory-like syntax to indicate submenus. This label can include standard macro substitution (see the GPS documentation), for instance %e for the current entity name.
on_activate is called whenever any of the entry of the menu is selected, and is passed three parameters, the context in which the contextual menu was displayed, the string representing the selected entry and the index of the selected entry within the array returned by factory (index starts at 0).
The parameters ref and add_before can be used to control the location of the entry within the contextual menu. ref is the name of another contextual menu entry, and add_before indicates whether the new entry is put before or after that second entry.
Parameters: |
|
---|
## This example shows how to create a contextual menu
## through global functions
def build_contextual(context):
return ["Choice1", "Choice2"]
def on_activate(context, choice, choice_index):
GPS.Console("Messages").write("You selected " + choice)
def filter(contextl):
return isinstance(context, GPS.EntityContext)
GPS.Contextual("My_Dynamic_Menu").create_dynamic(
on_activate=on_activate, factory=build_contextual, filter=filter)
## This example is similar to the one above, but shows how
## to create the menu through a python class.
## Note how self can be passed to the callbacks thanks to the
## call to self.create_dynamic.
class Dynamic(GPS.Contextual):
def __init__(self):
GPS.Contextual.__init__(self, "My Dynamic Menu")
self.create_dynamic(on_activate=self.on_activate,
label="References/My menu",
filter=self.filter,
factory=self.factory)
def filter(self, context):
return isinstance(context, GPS.EntityContext)
def on_activate(self, context, choice):
GPS.Console("Messages").write("You selected " + choice)
def factory(self, context):
return ["Choice1", "Choice2"]
Make sure the contextual menu will never appear when the user right clicks anywhere in GPS. This is the standard way to disable contextual menus
See also
Return the list of all registered contextual menus. This is a list of strings which are valid names that can be passed to the constructor of GPS.Contextual. These names were created when the contextual menu was registered in GPS.
Returns: | a list of strings |
---|
See also
Control whether the contextual menu is grayed-out: False if it should be grayed-out, True otherwise.
Parameters: | Sensitivity – Boolean value |
---|
Make sure the contextual menu will be shown when appropriate. The entry might still be invisible if you right clicked on a context where it doesn’t apply, but it will be checked
See also
Interface to debugger related commands. This class allows you to start a debugger and send commands to it. By connection to the various debugger_* hooks, you can also monitor the state of the debugger.
By connecting to the “debugger_command_action_hook”, you can also create your own debugger commands, that the user can then type in the debugger console. This is a nice way to implement debugger macros.
While developping such debugger interfaces, it might be useful to modify the file $HOME/.gps/traces.cfg, and add a line “GVD.Out=yes” in it. This will copy all input/output with the debuggers into the GPS log file.
See also
import GPS
def debugger_stopped(hook, debugger):
GPS.Console("Messages").write(
"hook=" + hook + " on debugger="
+ `debugger.get_num()` + "\n")
def start():
d = GPS.Debugger.spawn(GPS.File("../obj/parse"))
d.send("begin")
d.send("next")
d.send("next")
d.send("graph display A")
GPS.Hook("debugger_process_stopped").add(debugger_stopped)
It is an error to create a Debugger instance directly. Instead, use GPS.Debugger.get() or GPS.Debugger.spawn()
Closes the given debugger. This also closes all associated windows (call stack, console,...)
Return the command that is being executed in the debugger. This is often only available when called from the debugger_state_changed hook, where it might also indicate the command that just finished
Returns: | A string |
---|
This command gives access to an already running debugger, and will return an instance of GPS.Debugger attached to it. The parameter can be null, in which case the current debugger is returned; it can be an integer, in which case the corresponding debugger is returned (starting at 1); or it can be a file, in which case this function returns the debugger currently debugging that file.
Parameters: | id – Either an integer or an instance of GPS.File |
---|---|
Returns: | An instance of GPS.Debugger |
Returns the name of the executable currently debugged in that debugger
Returns: | An instance of GPS.File |
---|
See also
Returns the index of the debugger. This can be used later on to retrieve the debugger from GPS.Debugger.get(), or to get access to other windows associated with that debugger
Returns: | An integer |
---|
See also
GPS.Debugger.get_file()
Return true if the command returned by GPS.Debugger.command is likely to modify the list of breakpoints after it has finished executing
Returns: | A boolean |
---|
Returns true if the debugger is currently executing a command. In this case, it is an error to send a new command to it
Returns: | A boolean |
---|
Return true if the command returned by GPS.Debugger.command is likely to modify the current context (current task, thread,...) after it has finished executing
Returns: | A boolean |
---|
Return true if the command returned by GPS.Debugger.command is likely to modify the stack trace in the debugger (“next”, “cont”, ...)
Returns: | A boolean |
---|
This command returns the list of currently running debuggers
Returns: | A list of GPS.Debugger instances |
---|
This command works like send, but is not blocking, and does not return the result.
Parameters: |
|
---|
See also
This command executes cmd in the debugger. GPS is blocked while cmd is executing on the debugger. If output is true, the command is displayed in the console.
If show_in_console is True, the output of the command is displayed in the debugger console, but is not returned by this function. If show_in_console is False, the result is not displayed in the console, but is returned by this function
Parameters: |
|
---|---|
Returns: | A string |
See also
This command starts anew debugger. It will debug file. When file is executed, the extra arguments args are passed
Parameters: |
|
---|---|
Returns: | An instance of GPS.Debugger |
Interface for handling customized documentation generation. This class is used in conjunction with GPS.DocgenTagHandler. You cannot create directly this class, but use the ones furnished in GPS.DocgenTagHandler callbacks.
See also
Create a new Index file. The file ‘filename’ will be titled ‘name’, and will contain the general decoration along with ‘content’.
All other generated documentation file will have a link to it for convenience.
Parameters: |
|
---|
Retrieves the current analysed source file. You should call this method only from a GPS.DocgenTagHandler.on_match() callback.
Returns: | A GPS.File instance |
---|
Retrieves the directory that will contain the documentation. You should call this method only from a GPS.DocgenTagHandler.on_match() callback.
Returns: | A GPS.File instance |
---|
Registers a new CSS file to use when generating the documentation. This allows either to override a default style, or add new ones for custom tags handling
Parameters: | filename – A file name |
---|
Registers the file to be used as main page (e.g. index.html). By default, the first page generated in the Table of Contents is used.
Parameters: | filename – A file name |
---|
Registers a new tag handler. This handler will be used each time a new documentation is generated and the corresponding tag is found
Parameters: | handler – The handler to register |
---|
# register a default handler for tag <description>
# that is, -- <description>sth</description>
# will be translated as <div class="description">sth</div>
GPS.Docgen.register_tag_handler(GPS.DocgenTagHandler ("description"))
This class is used to handle user-defined documentation tags. This allows custom handling of comments such as
-- <summary>This fn does something</summary>
See also
import GPS
class ScreenshotTagHandler(GPS.DocgenTagHandler):
"Handling for <screenshot>screen.jpg</screenshot>"
def __init__(self):
GPS.DocgenTagHandler.__init__(
self, "screenshot",
on_match=self.on_match, on_start=self.on_start, on_exit=self.on_exit)
def on_start(self, docgen):
self.list = {}
def on_match(self, docgen, attrs, value, entity_name, entity_href):
# In this examples, images are in the directory _project_root_/doc/imgs/
dir = docgen.get_current_file().project().file().directory()+"doc/imgs/"
img = '<img src="%s%s" alt="%s"/>"' % (dir, value, value)
self.list[entity_name] = [entity_href, img]
return "<h3>Screenshot</h3><p>%s</p>" % (img)
def on_exit(self, docgen):
content=""
for pict in sorted(self.list.keys()):
content += "<div class='subprograms'>"
content += " <div class='class'>"
content += " <h3>%s</h3>" % (pict)
content += " <div class='comment'>"
content += " <a href="%s">%s</a>" % (self.list[pict][0], self.list[pict][1])
content += " </div>"
content += " </div>"
content += "</div>"
if content != "":
docgen.generate_index_file("Screenshots", "screenshots.html", content)
def on_gps_start(hook):
GPS.Docgen.register_css(GPS.get_system_dir() + "share/mycustomfiles/custom.css")
GPS.Docgen.register_tag_handler(ScreenshotTagHandler())
GPS.Hook("gps_started").add(on_gps_start)
on_match is a callback that is called each time a tag corresponding to the GPS.DocgenTagHandler is analysed. It takes the following parameters:
on_start is a callback that is called each time a documentation generation starts. It takes the following parameters:
on_exit is a callback that is called each time a documentation generation finishes. It takes the following parameters:
Using the default values of the callbacks (e.g. None), the GPS.DocgenTagHandler handler will translate comments of the form “– <tag>value</tag>” by “<div class=”tag”>value</div>”.
Parameters: |
|
---|
Deprecated interface to all editor-related commands
OBSOLESCENT.
Adds number_of_lines non-editable lines to the buffer editing file, starting at line start_line. If category is specified, use it for highlighting. Create a mark at beginning of block and return its ID
Parameters: |
|
---|
OBSOLESCENT.
Add name into the case exception dictionary
Parameters: | name – A string |
---|
OBSOLESCENT.
Fold the block around line. If line is not specified, fold all blocks in the file.
Parameters: |
|
---|
OBSOLESCENT.
Returns ending line number for block enclosing line
Parameters: |
|
---|---|
Returns: | An integer |
OBSOLESCENT.
Returns nested level for block enclosing line
Parameters: |
|
---|---|
Returns: | An integer |
OBSOLESCENT.
Returns name for block enclosing line
Parameters: |
|
---|---|
Returns: | A string |
OBSOLESCENT.
Returns ending line number for block enclosing line
Parameters: |
|
---|---|
Returns: | An integer |
OBSOLESCENT.
Returns type for block enclosing line
Parameters: |
|
---|---|
Returns: | A string |
OBSOLESCENT.
Unfold the block around line. If line is not specified, unfold all blocks in the file.
Parameters: |
|
---|
OBSOLESCENT.
Close all file editors for file
Parameters: | file – A string |
---|
OBSOLESCENT.
Copy the selection in the current editor
Create a mark for file_name, at position given by line and column. Length corresponds to the text length to highlight after the mark. The identifier of the mark is returned. Use the command goto_mark to jump to this mark
Parameters: |
|
---|---|
Returns: | A string |
OBSOLESCENT.
Scroll the view to center cursor
Parameters: | file – A string |
---|
OBSOLESCENT.
Returns current cursor column number
Parameters: | file – A string |
---|---|
Returns: | An integer |
OBSOLESCENT.
Returns current cursor line number
Parameters: | file – A string |
---|---|
Returns: | An integer |
OBSOLESCENT.
Set cursor to position line/column in buffer file
Parameters: |
|
---|
OBSOLESCENT.
Cut the selection in the current editor
OBSOLESCENT.
Delete the mark corresponding to identifier
Parameters: | identifier – A string |
---|
See also
OBSOLESCENT.
Open a file editor for file_name. Length is the number of characters to select after the cursor. If line and column are set to 0, then the location of the cursor is not changed if the file is already opened in an editor. If force is set to true, a reload is forced in case the file is already open. Position indicates the MDI position to open the child in (5 for default, 1 for bottom).
The filename can be a network file name, with the following general format:
protocol://username@host:port/full/path
where protocol is one of the recognized protocols (http, ftp,.. see the GPS documentation), and the username and port are optional.
Parameters: |
|
---|
OBSOLESCENT.
Returns the text contained in the current buffer for file
Parameters: | file – A string |
---|
OBSOLESCENT.
Get the characters around a certain position. Returns string between “before” characters before the mark and “after” characters after the position. If “before” or “after” is omitted, the bounds will be at the beginning and/or the end of the line.
If the line and column are not specified, then the current selection is returned, or the empty string if there is no selection
Parameters: |
|
---|---|
Returns: | A string |
OBSOLESCENT.
Returns the current column of mark
Parameters: | mark – An identifier |
---|---|
Returns: | An integer |
OBSOLESCENT.
Returns the current file of mark
Parameters: | mark – An identifier |
---|---|
Returns: | A file |
OBSOLESCENT.
Returns the number of the last line in file
Parameters: | file – A string |
---|---|
Returns: | An integer |
OBSOLESCENT.
Returns the current line of mark
Parameters: | mark – An identifier |
---|---|
Returns: | An integer |
OBSOLESCENT.
Jump to the location of the mark corresponding to identifier
Parameters: | identifier – A string |
---|
See also
OBSOLESCENT
Marks a line as belonging to a highlighting category. If line is not specified, mark all lines in file.
Parameters: |
|
---|
See also
OBSOLESCENT>
Highlights a portion of a line in a file with the given category
Parameters: |
|
---|
OBSOLESCENT.
Indent the selection (or the current line if requested) in current editor. Do nothing if the current GPS window is not an editor
Parameters: | current_line_only – A boolean |
---|
OBSOLESCENT.
Indent the current editor. Do nothing if the current GPS window is not an editor
OBSOLESCENT.
Insert a text in the current editor at the cursor position
Parameters: | text – A string |
---|
OBSOLESCENT.
Push the location in the current editor in the history of locations. This should be called before jumping to a new location on a user’s request, so that he can easily choose to go back to the previous location.
OBSOLESCENT.
Paste the selection in the current editor
OBSOLESCENT.
Print the contents of the items attached to the side of a line. This is used mainly for debugging and testing purposes.
Parameters: |
|
---|
OBSOLESCENT.
Redo the last undone edition command for file
Parameters: | file – A string |
---|
OBSOLESCENT.
Refill selected (or current) editor lines. Do nothing if the current GPS window is not an editor
OBSOLESCENT.
Create a new highlighting category with the given color. The format for color is “#RRGGBB”. If speedbar is true, then a mark will be inserted in the speedbar to the left of the editor to give a fast overview to the user of where the highlighted lines are.
Parameters: |
|
---|
OBSOLESCENT
Remove blank lines located at mark. If number is specified, remove only the number first lines
Parameters: |
|
---|
OBSOLESCENT.
Remove name from the case exception dictionary
Parameters: | name – A string |
---|
OBSOLESCENT.
Replace the characters around a certain position. “before” characters before (line, column), and up to “after” characters after are removed, and the new text is inserted instead. If “before” or “after” is omitted, the bounds will be at the beginning and/or the end of the line
Parameters: |
|
---|
OBSOLESCENT.
Save current or all files. If interactive is true, then prompt before each save. If all is true, then all files are saved
Parameters: |
|
---|
OBSOLESCENT.
Saves the text contained in the current buffer for file. If to_file is specified, the file will be saved as to_file, and the buffer status will not be modified
Parameters: |
|
---|
OBSOLESCENT.
Select the whole editor contents
OBSOLESCENT.
Select a block in the current editor
Parameters: |
|
---|
OBSOLESCENT.
Set the background color for the editors for file
Parameters: |
|
---|
OBSOLESCENT.
Synchronize the scrolling between multiple editors
Parameters: |
|
---|
OBSOLESCENT.
Change the title of the buffer containing the given file
Parameters: |
|
---|
OBSOLESCENT.
Change the Writable status for the editors for file
Parameters: |
|
---|
OBSOLESCENT.
Returns the name of the subprogram enclosing line
Parameters: |
|
---|---|
Returns: | A string |
OBSOLESCENT.
Undo the last edition command for file
Parameters: | file – A string |
---|
OBSOLESCENT.
Unmarks the line for the specified category. If line is not specified, unmark all lines in file
Parameters: |
|
---|
See also
OBSOLESCENT.
Remove highlights for a portion of a line in a file
Parameters: |
|
---|
This class represents the physical contents of a file. It is always associated with at least one view (a GPS.EditorView instance), which makes it visible to the user. The contents of the file can be manipulated through this class
This function prevents the direct creation of instances of EditorBuffer. Use GPS.EditorBuffer.get() instead
Adds one non-editable line to the buffer, starting at line start_line and contains string text. If category is specified, use it for highlighting. Create a mark at beginning of block and return it. If name is specified, retuned mark will have this name
Parameters: |
|
---|---|
Returns: | An instance of GPS.EditorMark |
See also
Applies the overlay to the given range of text. This immediately changes the rendering of the text based on the properties of the overlay
Parameters: |
|
---|
See also
Returns a location pointing to the first character in the buffer
Returns: | An instance of GPS.EditorLocation |
---|
Folds all the blocks in all the views of the buffer. Block folding is a language-dependent feature, whereby one can hide part of the source code temporarily, by keeping only the first line of the block (for instance the first line of a subprogram body, the rest is hidden). A small icon is displayed to the left of the first line so that it can be unfolded later on
Unfolds all the blocks that were previously folded in the buffer, ie make the whole source code visible. This is a language dependent feature
Returns the total number of characters in the buffer
Returns: | An integer |
---|
Closes the editor and all its views. If the buffer has been modified and not saved, a dialog is open asking the user whether to save. If force is True, do not save and do not ask the user. All changes are lost
Parameters: | force – A boolean |
---|
Copy the given range of text into the clipboard, so that it can be further pasted into other applications or other parts of GPS. If append is True, the text is appended to the last clipboard entry instead of generating a new one
Parameters: |
|
---|
See also
Create a new overlay. Properties can be set on this overlay, which can then be applied to one or more ranges of text to changes its visual rqendering or to associate user data with it. If name is specified, this function will return an existing overlay with the same name in this buffer if any can be found. If the name is not specified, a new overlay is created. Changing the properties of an existing overlay results in an immediate graphical update of the views associated with the buffer.
A number of predefined overlay exits. Among these are the ones used for syntax highlighting by GPS itself, which are “keyword”, “comment”, “string”, “character”. You can use these to navigate from one comment section to the next for instance.
Parameters: | name – A string |
---|---|
Returns: | An instance of GPS.EditorOverlay |
Returns the last view used for this buffer, ie the last view that had the focus and through which the user might have edited the buffer’s contents
Returns: | An instance of GPS.EditorView |
---|
Copy the given range of text into the clipboard, so that it can be further pasted into other applications or other parts of GPS. The text is removed from the edited buffer. If append is True, the text is appended to the last clipboard entry instead of generating a new one
Parameters: |
|
---|
Delete the given range of text from the buffer
Parameters: |
|
---|
Returns a location pointing to the last character in the buffer
Returns: | An instance of GPS.EditorLocation |
---|
Cancels the grouping of commands on the editor. See GPS.EditorBuffer.start_undo_group
If file is already opened in an editor, get a handle on its buffer. This instance is then shared with all other buffers referencing the same file. As a result, you can for instance associate your own data with the buffer, and retrieve it at any time until the buffer is closed. If the file is not opened yet, it is loaded in a new editor, and a new view is opened at the same time (and thus the editor becomes visible to the user). If file is not specified, the current editor is returned, ie the last one that had the keyboard focus.
If the file is not currently open, the behavior depends on the open parameter: if true, a new editor is created for that file, otherwise None is returned.
When a new file is open, it has received the focus. But if the editor already existed, it is not raised explicitly, and you need to do it yourself through a call to GPS.MDIWindow.raise_window (see the example below).
If force is set to true, a reload is forced in case the file is already open.
Parameters: |
|
---|---|
Returns: | An instance of GPS.EditorBuffer |
ed = GPS.EditorBuffer.get(GPS.File ("a.adb"))
GPS.MDI.get_by_child(ed.current_view()).raise_window()
ed.data = "whatever"
# ... Whatever, including modifying ed
ed = GPS.EditorBuffer.get(GPS.File("a.adb"))
ed.data # => "whatever"
Returns the contents of the buffer between the two locations given in parameter. Modifying the returned value has no effect on the buffer
Parameters: |
|
---|---|
Returns: | A string |
Check whether there is a mark with that name in the buffer, and return it. An exception is raised if there is no such mark
Parameters: | name – A string |
---|---|
Returns: | An instance of GPS.EditorMark |
See also
ed = GPS.EditorBuffer.get(GPS.File("a.adb"))
loc = GPS.EditorLocation(ed, 4, 5)
mark = loc.create_mark("name")
mark.data = "whatever"
# .. anything else
mark = ed.get_mark("name")
# mark.data is still "whatever"
Open a new editor on a blank file. This file has no name, and you’ll have to provide one when you save it
Returns: | An instance of GPS.EditorBuffer |
---|
Recompute the indentation of the given range of text. This feature is language-dependent
Parameters: |
|
---|
Inserts some text in the buffer
Parameters: |
|
---|
See also
Tests whether the buffer has been modified since it was last open or saved
Returns: | A boolean |
---|
Whether the buffer is editable or not.
Returns: | A boolean |
---|
See also
Returns the total number of lines in the buffer
Returns: | An integer |
---|
This function returns the list of all editors that are currently open in GPS.
Returns: | A list of instances of GPS.EditorBuffer |
---|
# It is possible to close all editors at once using a command like
for ed in GPS.EditorBuffer.list():
ed.close()
Paste the contents of the clipboard at the given location in the buffer
Parameters: | location – An instance of GPS.EditorLocation |
---|
Redo the last undone command on the editor
Refill the given range of text, ie cut long lines if necessary so that they fit in the limit specified in the GPS preferences
Parameters: |
|
---|
Removes all instances of the overlay in the given range of text. It isn’t an error if the overlay is not applied to any of the character in the range, it just has no effect in that case.
Parameters: |
|
---|
See also
Removes specified number of special lines at the specified mark. It doesn’t delete the mark
Parameters: |
|
---|
Saves the buffer to the given file. If interactive is true, a dialog is open to ask for confirmation from the user first, which gives him a chance to cancel the saving. “interactive” is ignored if file is specified.
Parameters: |
|
---|
Selects an area in the buffer. The boundaries are included in the selection. The order of the boundaries is irrelevant, but the cursor will be left on to
Parameters: |
|
---|
Return the character after the end of the selection. This will always be located after the start of the selection, no matter the order of parameters given to GPS.EditorBuffer.select. If the selection is empty, EditorBuffer.selection_start and EditorBuffer.selection_end will be equal.
Returns: | An instance of GPS.EditorLocation |
---|
# To get the contents of the current selection, one would use:
buffer = GPS.EditorBuffer.get()
selection = buffer.get_chars(
buffer.selection_start(), buffer.selection_end() - 1)
Return the start of the selection. This will always be located before the end of the selection, no matter the order of parameters given to GPS.EditorBuffer.select
Returns: | An instance of GPS.EditorLocation |
---|
Indicates whether the user should be able to edit the buffer interactively (through any view).
Parameters: | read_only – A boolean |
---|
See also
Starts grouping commands on the editor. All future editions will be considered as belonging to the same group. finish_undo_group should be called once for every call to start_undo_group.
Undo the last command on the editor
Cancel the current selection in the buffer
Returns the list of all views currently editing the buffer. There is always at least one such view. When the last view is destroyed, the buffer itself is destroyed
Returns: | A list of GPS.EditorView instances |
---|
This class can be used to transform source editor text into hyperlinks when the Control key is pressed. Two actions can then be associated with this hyperlink: clicking with the left mouse button on the hyperlink triggers the primary action, and clicking with the middle mouse button on the hyperlink triggers the alternate action.
Register a highlighter. The action is a Python function that takes a string as a parameter: the string being passed is the section of text which is highlighted.
Parameters: |
|
---|
# Define an action
def view_html(url):
GPS.HTML.browse (url)
def wget_url(url):
def on_exit_cb(self, code, output):
GPS.Editor.edit (GPS.dump (output))
p=GPS.Process("wget %s -O -" % url, on_exit=on_exit_cb)
# Register a highlighter to launch a browser on any URL
# left-clicking on an URL will open the default browser to this URL
# middle-clicking will call "wget" to get the source of this URL and
# open the output in a new editor
h=GPS.EditorHighlighter ("http(s)?://[^\s:,]*", view_html, 0, wget_url)
# Remove the highlighter
h.remove()
Unregister the highlighter. This cannot be called while the hyper-mode is active.
This class represents a location in a specific editor buffer. This location is not updated when the buffer changes, but will keep pointing to the same line/column even if new lines are added in the buffer. This location is no longer valid when the buffer itself is destroyed, and the use of any of these subprograms will raise an exception.
See also
Initializes a new instance. Creating two instances at the same location will not return the same instance of GPS.EditorLocation, and therefore any user data you have stored in the location will not be available in the second instance
Parameters: |
|
---|
ed = GPS.EditorBuffer.get(GPS.File("a.adb"))
loc = GPS.EditorLocation(ed, line=4, column=5)
loc.data = "MY OWN DATA"
loc2 = GPS.EditorLocation(ed, line=4, column=5)
# loc2.data is not defined at this point
Same as GPS.EditorLocation.forward_overlay, but moves backward instead. If there are no more changes, the location is left at the beginning of the buffer.
Parameters: | overlay – An instance of GPS.EditorOverlay |
---|---|
Returns: | An instance of GPS.EditorLocation |
Return a location located at the beginning of the line on which self is.
Returns: | A new instance of GPS.EditorLocation |
---|
Return the location of the end of the current block
Returns: | An instance of GPS.EditorLocation |
---|
Return the last line of the block surrounding the location. The definition of a block depends on the specific language of the source file
Returns: | An integer |
---|
Fold the block containing the location, ie make it invisible on the screen, except for its first line. Clicking on the icon next to this first line will unfold the block and make it visible to the user
See also
Return the nesting level of the block surrounding the location. The definition of a block depends on the specific programming language
Returns: | An integer |
---|
Return the name of the bock surrounding the location. The definition of a block depends on the specific language of the source file
Returns: | A string |
---|
Return the location of the beginning of the current block
Returns: | An instance of GPS.EditorLocation |
---|
Return the first line of the block surrounding the location. The definition of a block depends on the programming language
Returns: | An integer |
---|
Return the type of the block surrounding the location. This type indicates whether the block is a subprogram, an if statement,...
Returns: | A string |
---|
Unfold the block containing the location, ie make it visible any information that was hidden as a result of running GPS.EditorLocation.block_fold
See also
Return the buffer in which the location is found
Returns: | An instance of GPS.EditorBuffer |
---|
Return the column of the location
Returns: | An integer |
---|
Create a mark at that location in the buffer. The mark will stay permanently at that location, and follows if the buffer is modified. If the name is specified, this creates a named mark, which can be retrieved through a call to GPS.EditorBuffer.get_mark. If a mark with the same name already exists, it is moved to the new location, and then returned
Parameters: | name – A string |
---|---|
Returns: | An instance of GPS.EditorMark |
See also
buffer = GPS.EditorBuffer.get(GPS.File("a.adb"))
loc = GPS.EditorLocation(buffer, 3, 4)
mark = loc.create_mark()
buffer.insert(loc, "text")
loc = mark.location()
# loc.column() is now 8
Return a location located at the end of the line on which self is.
Returns: | A new instance of GPS.EditorLocation |
---|
Return true if self is currently at the end of a word. The definition of a word depends on the language used
Returns: | A boolean |
---|
Return a new location located count characters after self. If count is negative, the location is moved backward instead
Parameters: | count – An integer |
---|---|
Returns: | A new instance of GPS.EditorLocation |
Return a new location located count lines after self. The location is moved back to the beginning of the line. In case self is on the last line, the beginning of the last line is returned.
Parameters: | count – An integer |
---|---|
Returns: | A new instance of GPS.EditorLocation |
Moves to the next change in the list of overlays applying to the character. If overlay is specified, go to the next change for this specific overlay (ie the next beginning or end of range where it applies). If there are no more changes, the location is left at the end of the buffer.
Parameters: | overlay – An instance of GPS.EditorOverlay |
---|---|
Returns: | An instance of GPS.EditorLocation |
Return a new location located count words after self. If count is negative, the location is moved backward instead. The definition of a word depends on the language used
Parameters: | count – An integer |
---|---|
Returns: | A new instance of GPS.EditorLocation |
Return the character at that location in the buffer. An exception is raised when trying to read past the end of the buffer. The character might be encoded on several bytes, since it is a UTF8 string.
Returns: | A UTF8 string |
---|
char = buffer.beginning_of_buffer().get_char()
GPS.Console().write (char) ## Prints the character
# To manipulate in python, convert the string to a unicode string:
unicode = char.decode("utf-8")
This function returns the list of all the overlays that apply at this specific location. The color and font of the text is composed through the contents of these overlays.
Returns: | A list of GPS.EditorOverlay instances |
---|
This function returns True if the given overlay applies to the character at that location
Parameters: | overlay – An instance of GPS.EditorOverlay |
---|---|
Returns: | A boolean |
Return true if self is currently inside a word. The definition of a word depends on the language used
Returns: | A boolean |
---|
Return the line of the location
Returns: | An integer |
---|
Return the offset of the location in the buffer, ie the number of characters from the beginning of the buffer to the location
Returns: | An integer |
---|
This function searches for the next occurrence of Pattern in the editor, starting at the given location. If there is such a match, this function returns the two locations for the beginning of the match and the end of the match. Typically, these would be used to highlight the match in the editor.
When no match is found, this function returns null. Additionally, if dialog_on_failure is true then a dialog is displayed to the user asking whether the search should restart at the beginning of the buffer.
Parameters: |
|
---|---|
Returns: | A list of two GPS.EditorLocation |
See also
Return true if self is currently at the start of a word. The definition of a word depends on the language used
Returns: | A boolean |
---|
Return the name of the subprogram enclosing the location
Returns: | A string |
---|
This class represents a specific location in an open editor. As opposed to the GPS.EditorLocation class, the exact location is updated whenever the buffer is modified. For instance, if you add a line before the mark, then the mark is moved one line forward as well, so that it still points to the same character in the buffer.
The mark remains valid even if you close the buffer; or if you reopen it and modify it. It will always point to the same location in the file, while you have kept the python object.
GPS.EditorLocation.create_mark() allows you to create named marks which you can then retrieve through GPS.EditorBuffer.get_mark. Such named marks are only valid while the editor exists. As soon as you close the editor, you can no longer use get_mark to retrieve it (but the mark is still valid if you have kept a python object referencing it).
See also
This subprogram will always raise an exception, thus preventing the direct creation of a mark. Instead, you should use GPS.EditorLocation.create_mark() to create such a mark
Delets the physical mark from the buffer. All instances referencing the same mark will no longer be valid. If you haven’t given a name to the mark in the call to GPS.EditorLocation.create_mark(), it will automatically be destroyed when the last instance referencing it goes out of scope. Therefore, calling delete() is not mandatory in the case of unnamed marks, although it is still recommanded
Returns True if mark’s location is still present in the buffer
Returns the current location of the mark. This location will vary depending on the changes that take place in the buffer
Returns: | An instance of GPS.EditorLocation |
---|
ed = GPS.EditorBuffer.get(GPS.File("a.adb"))
loc = GPS.EditorLocation(ed, 3, 5)
mark = loc.create_mark()
# ...
loc = mark.location()
Moves the mark to a new location in the buffer. This is slightly less expensive that destroying the mark and creating a new one through GPS.EditorLocation.create_mark(), although the result is the same
Parameters: | location – An instance of GPS.EditorLocation |
---|
This class represents properties that can be applied to one or more ranges of text. This can be used to change the display properties of the text (colors, fonts,...) or store any user-specific attributes that can be retrieved later. GPS itself uses overlays to do syntax highlighting. If two or more overlays are applied to the same range of text, the final colors and fonts of the text depends on the priorities of these overlays and the order in which they were applied to the buffer.
This subprogram is used to prevent the direct creation of overlays. Overlays need to be created through GPS.EditorBuffer.create_overlay()
See also
This subprogram is used to retrieve one of the predefined properties of the overlay. This list of these properties is described for GPS.EditorOverlay.set_property
Parameters: | name – A string |
---|---|
Returns: | A string or a boolean, depending on the property |
Return the name associated with this overlay, as given to GPS.EditorBuffer.create_overlay()
Returns: | A string |
---|
See also
This function is used to change some of the predefined properties of the overlay. These are mostly used to change the visual rendering of the text,... The following attribute names are currently recognized:
foreground (value is a string with the color name)
Change the foreground color of the text.
background (value is a string with the color name)
Change the background color of the text.
font (value is a string with the font name)
Changes the font of the text
weight (value is a string, one of “light”, “normal” and “bold”)
style (value is a string, one of “normal”, “oblique” and “italic”)
editable or not
The set of predefined attributes is fixed. However, overlays are especially useful to store your own user data in the usual python manner, which you can retrieve later. This can be used to mark specially specific ranges of text which you want to be able to find easily later on, even if the buffer has been modified since then (see GPS.EditorLocation.forward_overlay)
param name: A string param value: A string or a boolean, depending on the property
One view of an editor, ie the visible part through which users can modify text files. A given GPS.EditorBuffer can be associated with multiple views. Closing the last view associated with a buffer will also close the buffer
# To get a handle on the current editor, use the following code:
view = GPS.EditorBuffer.get().current_view()
This constructor is called implicitly whenever you create a new view. It creates a new view for the given buffer, and is automatically inserted into the GPS MDI
Parameters: | buffer – An instance of GPS.EditorBuffer |
---|
Returns the buffer to which the view is attached. Editing the text of the file should be done through this instance
Returns: | An instance of GPS.EditorBuffer |
---|
Scrolls the view so that the location is centered
Parameters: | location – An instance of GPS.EditorLocation |
---|
Return the current location of the cursor in this view
Returns: | An instance of GPS.EditorLocation |
---|
Moves the cursor at the given location. Each view of a particular buffer has its own cursor position, which is where characters typed by the user will be inserted. If extend_selection is True, extend the selection from the current bound to the new location.
Parameters: |
|
---|
Whether the view is editable or not. This property is in fact shared by all views of the same buffer.
Returns: | A boolean |
---|
See also
Indicates whether the user should be able to edit interactively through this view. Setting a view Writable/Read Only will also modify the status of the other views of the same buffer.xx
Parameters: | read_only – A boolean |
---|
See also
GPS.EditorBuffer.get_read_only()
Returns the view’s title, the short title is returned if short is set to True
Parameters: | short – A boolean |
---|
Represents an entity from the source, based on the location of its declaration
See also
Initializes a new instance of the Entity class, from any reference to the entity. The file parameter should only be omitted for a predefined entity of the language. This will only work for languages for which a cross-reference engine has been defined
Parameters: |
|
---|
>>> GPS.Entity("foo", GPS.File("a.adb"), 10, 23).declaration().file().name()
=> will return the full path name of the file in which the entity "foo",
referenced in a.adb at line 10, column 23, is defined.
Return various boolean attributes of the entity: is the entity global, static, static for a class, protected,...
Returns: | A htable |
---|
Return the location at which the implementation of the entity is found. For Ada subprograms and packages, this corresponds to the body of the entity. For Ada private types, this is the location of the full declaration for the type. For entities which do not have a notion of body, this returns the location of the declaration for the entity. Some entities have several bodies. This is for instance the case of a separate subprogram in Ada, where the first body just indicates the subprogram is separate, and the second body provides the actual implementation. The nth parameter gives access to the other bodies. An exception is raised when there are not at least nth bodies.
Parameters: | nth – An integer |
---|---|
Returns: | An instance of GPS.FileLocation |
entity = GPS.Entity("bar", GPS.File("a.adb"), 10, 23)
body = entity.body()
print "The subprogram bar's implementation is found at " + body.file.name() + ':' + body.line() + ':' + body.column()
Display the list of entities that call the entity. The returned value is a dictionary whose keys are instances of Entity calling this entity, and whose value is a list of FileLocation instances where the entity is referenced. This command might take a while to execute, since GPS needs to get the cross-reference information for lots of source files. If dispatching_calls is true, then calls to self that might occur through dispatching are also listed.
Parameters: | dispatching_calls – A boolean |
---|---|
Returns: | A dictionary, see below |
Open the call graph browser to show what entities call self
Display the list of entities called by the entity. The returned value is a dictionary whose keys are instances of Entity called by this entity, and whose value is a list of FileLocation instances where the entity is referenced. If dispatching_calls is true, then calls done through dispatching will result in multiple entities being listed (ie all the possible subprograms that are called at that location)
Parameters: | dispatching_calls – A boolean |
---|---|
Returns: | A dictionary, see below |
See also
GPS.Entity.is_called_by()
Return the category of a given entity. Possible values include: label, literal, object, subprogram, package/namespace, type, unknown.
Returns: | A string |
---|
Return the location of the declaration for the entity. The file’s name is is “<predefined>” for predefined entities
Returns: | An instance of GPS.FileLocation, where the entity is declared |
---|
entity=GPS.Entity("integer")
if entity.declaration().file().name() == "<predefined>":
print "This is a predefined entity"
Return a list of all the entities that are derived from self. For object-oriented languages, this includes types that extend self. In Ada, this also includes subtypes of self.
Returns: | List of GPS.Entity |
---|
Return the list of discriminants for entity. This is a list of entities, empty if the type has no discriminant or if this notion doesn’t apply to that language
Returns: | List of instances of GPS.Entity |
---|
Return the documentation for the entity. This is the comment block found just before or just after the declaration of the entity (if any such block exists). This is also the documentation string displayed in the tooltips when you leave the mouse cursor over an entity for a while. If extended is true, then the returned documentation will include formatting and full entity description.
Parameters: | extended – A boolean |
---|---|
Returns: | A string |
Return the location at which the end of the entity is found.
Returns: | An instance of GPS.FileLocation |
---|
Return the list of fields for entity. This is a list of entities. This applies to Ada record and tagged types, or C structs for instance.
Returns: | List of instances of GPS.Entity |
---|
Display in the location window all the references to the entity. If include_implicit is true, then implicit uses of the entity will also be referenced, for instance when the entity appears as an implicit parameter to a generic instantiation in Ada
Parameters: | include_implicit – A boolean |
---|
See also
Return the full name of the entity that it to say the name of the entity prefixed with its callers and parent packages names. The casing of the name has been normalized to lower-cases for case-insensitive languages
Returns: | A string, the full name of the entity |
---|
Return the list of primitive operations (aka methods) for self. This list is not sorted
Parameters: | include_inherited – A boolean |
---|---|
Returns: | A list of instances of GPS.Entity |
Return the name of the entity. The casing of the name has been normalized to lower-cases for case-insensitive languages
Returns: | A string, the name of the entity |
---|
Refactor the code at the location, to add named parameters. This only work if the language has support for such parameters, namely Ada for the time being
Parameters: | location – An instance of GPS.FileLocation |
---|
GPS.Entity("foo", GPS.File("decl.ads")).rename_parameters(
GPS.FileLocation(GPS.File("file.adb"), 23, 34))
Return the list of parameters for entity. This is a list of entities. This applies to subprograms.
Returns: | List of instances of GPS.Entity |
---|
Return the type pointed to by entity. If self is not a pointer (or an Ada access type), None is returned. This function also applies to variables, and returns the same information as their type would
Returns: | An instance of GPS.Entity |
---|
## Given the following Ada code:
## type Int is new Integer;
## type Ptr is access Int;
## P : Ptr;
## the following requests would apply:
f = GPS.File("file.adb")
GPS.Entity("P", f).type() # Ptr
GPS.Entity("P", f).pointed_type() # Int
GPS.Entity("Ptr", f).pointed_type() # Int
Return the type for which self is a primitive operation (or a method, in other languages than Ada)
Returns: | An instance of GPS.Entity or None |
---|
List all references to the entity in the project sources. If include_implicit is true, then implicit uses of the entity will also be referenced, for instance when the entity appears as an implicit parameter to a generic instantiation in Ada.
If synchronous is True, then the result will be directly returned, otherwise a command will be returned and its result will be accessible with get_result(). The result, then, is either a list of locations (if show_kind is False), or a htable indexed by location, and whose value is a string indicating the kind of the reference (declaration, body, label, end-of-spec,...). The parameter in_file can be used to limit the search to references in a particular file. This is a lot faster. The parameter kind_in is a list of comma-separated list of reference kinds (as would be returned when show_kind is True). Only such references are returned, as opposed to all references.
Parameters: |
|
---|---|
Returns: | List of GPS.FileLocation, htable or GPS.Command |
See also
for r in GPS.Entity("GPS", GPS.File("gps.adb")).references():
print "One reference in " + r.file().name()
Rename the entity every where in the application. The source files should have been compiled first, since this operation relies on the cross-reference information which have been generated by the compiler. If include_overriding is true, then subprograms that override or are overridden by self are also renamed. Likewise, if self is a parameter to a subprogram then parameters with the same name in overriding or overridden subprograms are also renamed.
If some renaming should be performed in a read-only file, the behavior depends on the make_writable parameter: if true, the file is made writable and the renaming is performed; if false, no renaming is performed in that file, and a dialog is displayed asking whether you want to do the other renamings.
The files will be saved automatically if auto_save is true, otherwise they are left edited.
Parameters: |
|
---|
Return the return type for entity. This applies to subprograms.
Returns: | An instance of GPS.Entity |
---|
Display in the type browser the informations known about the entity: list of fields for records, list of primitive subprograms or methods, list of parameters, ...
Return the type of the entity. For a variable, it is its type
Returns: | An instance of GPS.Entity |
---|
Represents a context that contains entity information
See also
Dummy function, whose goal is to prevent user-creation of a GPS.EntityContext instance. Such instances can only be created internally by GPS
Return the entity stored in the context
Returns: | An instance of GPS.Entity |
---|
One of the exceptions that can be raised by GPS. It is a general error message, and its semantic depends on what subprogram raised the exception.
Represents a source file of your application
See also
Initializes a new instance of the class File. This doesn’t need to be called explicitly, since GPS will call it automatically when you create such an instance. If name is a base file name (no directory is specified), then GPS will attempt to search for this file in the list of source directories of the project. If a directory is specified, or the base file name wasn’t found in the source directories, then the file name is considered as relative to the current directory. If local is “true” the specified file name is to be considered as local to the current directory.
Parameters: |
|
---|
See also
file=GPS.File("/tmp/work")
print file.name()
Compile current file. This call will return only once the compilation is completed. Additional arguments can be added to the command line.
Parameters: | extra_args – A string |
---|
See also
GPS.File("a.adb").compile()
Return the directory in which the file is found
Returns: | A string |
---|
## Sorting files by TN is easily done with a loop like
dirs={}
for s in GPS.Project.root().sources():
if dirs.has_key (s.directory()):
dirs[s.directory()].append (s)
else:
dirs[s.directory()] = [s]
Return the list of entities that are either referenced (if local is false) or declared (if local is true) in self.
Parameters: | local – A boolean |
---|---|
Returns: | A list of GPS.Entity |
Generate the documentation of the file, and display it with the default browser
See also
Return the value of the property associated with the file. This property might have been set in a previous GPS session if it is persistent. An exception is raised if no such property already exists for the file
Parameters: | name – A string |
---|---|
Returns: | A string |
See also
Return the list of files that depends on file_name. This command might take some time to execute since GPS needs to parse the cross-reference information for multiple source files. If include_implicit is true, then implicit dependencies are also returned. If include_system is true, then system files from the compiler runtime are also returned.
Parameters: |
|
---|---|
Returns: | A list of files |
See also
Return the the list of files that self depends on. If include_implicit is true, then implicit dependencies are also returned. If include_system is true, then system files from the compiler runtime are also returned.
Parameters: |
|
---|---|
Returns: | A list of files |
See also
Return the name of the language this file is written in. This is based on the file extension and the naming scheme defined in the project files or the XML files. The empty string is returned when the language is unknown
Returns: | A string |
---|
Compile and link the file and all its dependencies. This call will return only once the compilation is completed. Additional arguments can be added to the command line.
Parameters: | extra_args – A string |
---|
See also
Return the name of the file associated with self. This is an absolute file name, including directories from the root of the filesystem.
If remote_server is set, then the function returns the equivalent path on the specified server. GPS_Server (default) is always the local machine.
Parameters: | remote_server – A string. Possible values are “GPS_Server” (or empty string), “Build_Server”, “Debug_Server”, “Execution_Server” and “Tools_Server”. |
---|---|
Returns: | A string, the name of the file |
Return the name of the other file semantically associated with this one. In Ada this is the spec or body of the same package depending on the type of this file. In C, this will generally be the .c or .h file with the same base name.
Returns: | An instance of GPS.File |
---|
GPS.File("tokens.ads").other_file().name()
=> will print "/full/path/to/tokens.adb" in the context of the project
=> file used for the GPS tutorial.
Return the project to which file belongs. If file is not one of the souces of the project, the returned value depends on default_to_none: if false, None is returned. Otherwise, the root project is returned.
Parameters: | default_to_root – A boolean |
---|---|
Returns: | An instance of GPS.Project |
GPS.File("tokens.ads").project().name()
=> will print "/full/path/to/sdc.gpr" in the context of the project file
=> used for the GPS tutorial
Removes a property associated with a file
Parameters: | name – A string |
---|
See also
Return the list of matches for pattern in the file. Default values are False for case_sensitive and regexp. Scope is a string, and should be any of ‘whole’, ‘comments’, ‘strings’, ‘code’. The latter will match only for text outside of comments
Parameters: |
|
---|---|
Returns: | List of GPS.FileLocation instances |
Return the next match for pattern in the file. Default values are False for case_sensitive and regexp. Scope is a string, and should be any of ‘whole’, ‘comments’, ‘strings’, ‘code’. The latter will match only for text outside of comments
Parameters: |
|
---|---|
Returns: | An instance of GPS.FileLocation |
See also
Associates a string property with the file. This property is retrievable during the whole GPS session, or across GPS sessions if persistent is set to True.
This is different than setting instance properties through Python’s standard mechanism in that there is no garantee that the same instance of GPS.File will be created for each physical file on the disk, and therefore you would not be able to associate a property with the physical file itself
Parameters: |
|
---|
Display in the dependency browser the list of files that depends on file_name. This command might take some time to execute since GPS needs to parse the cross-reference information for multiple source files
See also
Display in the dependency browser the list of files that file_name depends on.
See also
Represents a context that contains file information
See also
Dummy function, whose goal is to prevent user-creation of a GPS.FileContext instance. Such instances can only be created internally by GPS
Return the current directory in the context
Returns: | A string |
---|
Return the file location stored in the context
Returns: | An instance of GPS.FileLocation |
---|
Return the project in the context, or the root project if none was specified in the context. Return an error if no project can be determined from the context
Returns: | An instance of GPS.Project |
---|
Represents a location in a file
See also
Initializes a new instance of GPS.FileLocation.
Parameters: |
|
---|
location = GPS.FileLocation(GPS.File("a.adb"), 1, 2)
Return the column of the location
Returns: | An integer, the column of the location |
---|
Return the file of the location
Returns: | An instance of GPS.File, the file of the location |
---|
Return the line of the location
Returns: | An integer, the line of the location |
---|
This is an abstract class (ie no instances of it can be created from your code, which represents a graphical element of the GPS interface
See also
Prevents the creation of instances of GPS.GUI. Such instances are created automatically by GPS as a result of calling other functions
See also
See also
GPS.Toolbar.entry()
See also
Destroy the graphical element. It will disappear from the interface, and cannot necessarily be recreated later on
Temporarily hide the graphical element. It can be shown again through a call to GPS.GUI.show()
See also
Return False if the widget is currently greyed out, and is not clickable by users
Returns: | A boolean |
---|
See also
This function is only available if GPS was compiled with support for pygtk, and the latter was found at run time. It returns a widget that can be manipulated through the usual PyGtk functions. PyGtk is a binding to the gtk+ toolkit, and allows you to create your own windows easily, or manipulate the entire GPS GUI from python
Returns: | An instance of PyWidget |
---|
See also
# The following example makes the project view inactive. One could easily
# change the contents of the project view as well
widget = GPS.MDI.get("Project View")
widget.pywidget().set_sensitive False)
Indicate whether the associated graphical element should respond to user interaction or not. If the element is not sensitive, then the user will not be able to click on it
Parameters: | sensitive – A boolean |
---|
See also
Show again the graphical element that was hidden by hide()
See also
This class gives access to the help system of GPS, as well as to the integrated browser
Add a new directory to the GPS_DOC_PATH environment variable. This directory is searched for documentation files. If this directory contains a gps_index.xml file, it is parsed to find the list of documentation files to add to the Help menu. See the GPS documentation for more information on the format of the gps_index.xml files
Parameters: | directory – Directory that contains the documentation |
---|
Open the GPS html viewer, and load the given URL. If anchor matches a <a> tag in this file, GPS will jump to it. If URL isn’t an absolute file name, it is searched in the path set by the environment variable GPS_DOC_PATH.
If navigation is True, then the URL is saved in the navigation list, so that users can move back and forward from and to this location later on.
The URL can be a network file name, with the following general format:
protocol://username@host:port/full/path
where protocol is one of the recognized protocols (http, ftp,.. see the GPS documentation), and the username and port are optional.
Parameters: |
|
---|
See also
GPS.HTML.browse("gps.html")
=> will open the GPS documentation in the internal browser
GPS.HTML.browse("http://host.com/my/document")
=> will download documentation from the web
This class gives access to the external documentation for shell commands. This external documentation is stored in the file shell_commands.xml, part of the GPS installation, and is what you are currently seeing.
You almost never need to use this class yourself, since it is used implicitly by Python when you call the help(object) command at the GPS prompt.
The help browser understands the standard http urls, with links to specific parts of the document. For instance:
"http://remote.com/my_document"
or "#link"
As a special case, it also supports links starting with ‘%’. These are shell commands to execute within GPS, instead of a standard html file. For instance:
<a href="%shell:Editor.edit g-os_lib.ads">GNAT.OS_Lib%lt;/a%gt;
The first word after ‘%’ is the language of the shell command, the rest of the text is the command to execute
See also
Initializes the instance of the Help class. This parses the XML file that contains the description of all the commands. With python, the memory occupied by this XML tree will be automatically freed. However, with the GPS shell you need to explicitly call GPS.Help.reset()
See also
Return the name of the file that contains the description of the shell commands. You shouldn’t have to access it yourself, since you can do so through GPS.Help().getdoc() instead
Returns: | A string |
---|
See also
Search, into the XML file shell_commands.xml, the documentation for this specific command or entity. If no documentation is found, an error is raised. If html is true, the documentation is formated in HTML
Parameters: |
|
---|---|
Returns: | A string, containing the help for the command |
print GPS.Help().getdoc("GPS.Help.getdoc")
Help
Help.getdoc %1 "GPS.Help.getdoc"
Help.reset %2
Free the memory occupied by this instance. This frees the XML tree that is kept in memory. As a result, you can no longer call GPS.Help.getdoc() afterward.
General interface to hooks. Hooks are commands executed when some specific events occur in GPS, and allow you to customize some of the aspects of GPS
See also
The available hooks are:
activity_checked_hook(hookname)
Hook called when an activity has been checked, this is the last step done after the activity has been committed. It is at this point that the activity closed status is updated.
after_character_added(hookname, file, character)
Hook called when a character has been added in the editor. This hook is also called for the backspace key.
param file: | An instance of GPS.File |
---|---|
param character: | |
A character |
See also
Hook: character_added
Hook: word_added
annotation_parsed_hook(hookname)
Hook called when the last file annotation has been parsed after the corresponding VCS action.
before_exit_action_hook(hookname)
This hook is called when GPS is about to exit. If it returns 0, this exit will be prevented (it is recommended that you display a dialog to explain why, in such a case)
return: | A boolean |
---|
before_file_saved(hookname, file)
Hook called right before a file is saved
param file: | An instance of GPS.File |
---|
bookmark_added(hookname, bookmark_name)
Hook called when a new bookmark has been created by the user
param bookmark_name: A string, the name of the bookmark that has been added
bookmark_removed(hookname, bookmark_name)
Hook called when a new bookmark has been removed by the user
param bookmark_name: | |
---|---|
A string, the name of the bookmark that has been removed |
buffer_edited(hookname, file)
Hook called after the user has stopped modifying the contents of an editor
param file: | An instance of GPS.File |
---|
build_server_connected_hook(hookname)
Hook called when GPS connects to the build server in remote mode
character_added(hookname, file, character)
Hook called when a character is going to be added in the editor. It is also called when a character is going to be removed, in which case the last parameter is 8 (control-h)
param file: An instance of GPS.File param character: A character See also
Hook after_character_added
Hook word_added
clipboard_changed(hookname)
Hook called when the contents of the clipboard has changed, either because the user has done a Copy or Cut operation, or because he called Paste Previous which changes the current entry in the multi-level clipboard.
commit_done_hook(hookname)
Hook called when a commit has been done.
compilation_finished(hookname, category, target_name, mode_name, status)
Hook called when a compile operation has finished.
Among the various tasks that GPS connects to this hook are the automatic reparsing of all xref information, and the activation of the automatic-error fixes
param category: | A string, the location/highlighting category that contains the compilation output. |
---|---|
param target_name: | |
A string, name of the executed build target. | |
param mode_name: | |
A string, name of the executed build mode. | |
param status: | An integer, exit status of the execuded program. |
compilation_starting(hookname, category, quiet, shadow)
Hook called when a compile operation is about to start.
Among the various tasks that GPS connects to this hook are: check whether unsaved editors should be saved (asking the user), and stop the background task that parses all xref info. If quiet is True, then no visible modification should be done in the MDI, like raising consoles, clearing their content,..., since the compilation should happen in background mode.
Funtions connected to this hook should return False if the compilation should not occur for some reason, True if it is OK to start the compilation. Typically, the reason to reject a compilation would be because the user has explicitly cancelled it through a graphical dialog, or because running a background compilation is not suitable at this time.
param category: | A string, the location/highlighting category that contains the compilation output. |
---|---|
param quiet: | A boolean, if True then the GUI should advertise the compilation, otherwise nothing should be reported to the user, unless there is an error. |
param shadow: | A boolean, indicates whether the build launched was a Shadow builds, ie a “secondary” build launched automatically by GPS after a “real” build. For instance, when the multiple toolchains mode is activated, the builds generating cross-references are Shadow builds. |
return: | A boolean |
# The following code adds a confirmation dialog to all
# compilation commands.
def on_compilation_started(hook, category, quiet, shadow):
if not quiet:
return MDI.yes_no_dialog("Confirm compilation ?")
else:
return True
Hook("compilation_starting").add(on_compilation_started)
# If you create a script to execute your own build script, you
# should always do the following as part of your script. This
# ensures a better integration in GPS (saving unsaved editors,
# reloading xref information automatically in the end, raising
# the GPS console, parsing error messages for automatically
# fixable errors,...)
if notHook ("compilation_starting").run_until_failure(
"Builder results", False, False):
return
# ... spawn your command
Hook("compilation_finished").run("Builder results")
compute_build_targets(hookname, name)
Hook called whenever GPS needs to compute a list of subtargets for a given build target. The handler should check whether name is a known build target, and if so, return a list of tuples, where each tuple corresponds to one target and contains a display name (used in the menus, for instance) and the name of the target. If name is not known, it should return an empty list.
param name: | A string, the target type |
---|---|
return: | A string |
def compute_targets(hook, name):
if name == "my_target":
return [(display_name_1, target_1),
(display_name_2, target_2)]
return ""
GPS.Hook("compute_build_targets").add(compute_targets)
context_changed(hookname, context)
Hook called when the current context changes in GPS, ie a new file is selected, or a new entity, or a new window,...
param context: | An instance of GPS.Context |
---|
contextual_menu_close(hookname)
Hook called just before a contextual menu is destroyed. At this time, the value returned by GPS.contextual_context() is still the one used in the hook contextual_menu_open, and therefore you can still reference the data you stored in the context. This hook is called even if no action was selected by the user. However, it is always called before the action is executed, since the menu itself is closed first.
See also
contextual_menu_open hook()
contextual_menu_open(hookname)
Hook called just before a contextual menu is created. It is called before any of the filters is evaluated, and can be used to precomputed data shared by multiple filters to speed up the computation. Use GPS.contextual_context() to get the context of the contextual menu and store precomputed data in it.
See also
contextual_menu_close hook()
debugger_breakpoints_changed(hookname, debugger)
Hook called when the list of breakpoints has been refreshed. This might occur whether or not the list has changed, but is a good time to refresh any view that might depend on an up-to-date list
param debugger: | An instance of GPS.Debugger |
---|
debugger_command_action_hook(hookname, debugger, command)
This hook is emitted when the user types a command in the debugger console, or emits the console through the GPS.Debugger API. It gives you a chance to override the behavior for the command, or even define your own commands. Note that you must ensure that any debugger command you execute this way does finish with a prompt. The function should return the output of your custom command
param debugger: | An instance of GPS.Debugger |
---|---|
param command: | A string, the command the user wants to execute |
return: | A boolean |
## The following example implements a new gdb command, "hello". When the
## user types this command in the console, we end up executing "print A"
## instead. This can be used for instance to implement convenient
## macros
def debugger_commands(hook, debugger, command):
if command == "hello":
return 'A=' + debugger.send("print A", False)
else:
return ""
GPS.Hook("debugger_command_action_hook").add(debugger_commands)
debugger_context_changed(hookname, debugger)
Called when the debugger context has changed, for instance after the user has switched the current thread, has selected a new frame,...
param debugger: | An instance of GPS.Debugger |
---|
debugger_executable_changed(hookname, debugger)
Called when the file being debugged has changed
param debugger: | An instance of GPS.Debugger |
---|
debugger_process_stopped(hookname, debugger)
Called when the debugger ran and has stopped, for instance when hitting a breakpoint, or after a next command. If you need to know when the debugger just started processing a command, you can connect to the debugger_state_changed hook instead. Conceptually, you could connect to debugger_state_changed at all times instead of debugger_process_stopped and check when the state is now “idle”
param debugger: | An instance of GPS.Debugger |
---|
See also
Hook debugger_state_changed
debugger_process_terminated(hookname, debugger)
Called when the program being debugged has terminated
param debugger: | An instance of GPS.Debugger |
---|
debugger_question_action_hook(hookname, debugger, question)
Action hook called just before displaying an interactive dialog, when the debugger is asking a question to the user. This hook can be used to disable the dialog (and send the rreply directly to the debugger instead). It should return a non-empty string to pass to the debugger if the dialog should not be displayed. You cannot send commands to the debugger when inside this hook, since the debugger is blocked waiting for an answer
param debugger: | An instance of GPS.Debugger |
---|---|
param question: | A string |
return: | A string |
def gps_question(hook, debugger, str):
return "1" ## Always choose choice 1
GPS.Hook("debugger_question_action_hook").add(gps_question)
debug=GPS.Debugger.get()
deubg.send("print &foo")
debugger_started(hookname, debugger)
Hook called when a new debugger has been started
param debugger: An instance of GPS.Debugger See also
Hook debugger_state_changed
debugger_state_changed(hookname, debugger, new_state)
Indicates a change in the status of the debugger: new_state can be one of “none” (the debugger is now terminated), “idle” (the debugger is now waiting for user input) or “busy” (the debugger is now processing a command, and the process is running). As opposed to debugger_process_stopped, this hook is called when the command is just starting its executing (hence the debugger is busy while this hook is called, unless the process immediately stopped).
This hook is in fact emitted also when internal commands are sent to the debugger, and thus much more often than if it was just reacting to user input. It is therefore recommended that the callback does the minimal amount of work, possibly doing the rest of the work in an idle callback to be executed when GPS is no longer busy.
If the new state is “busy”, you cannot send additional commands to the debugger.
When the state is either “busy” or “idle”, GPS.Debugger.command will return the command that is about to be executed or the command that was just executed and just completed.
param debugger: | An instance of GPS.Debugger |
---|---|
param new_state: | |
A string |
debugger_terminated(hookname, debugger)
Hook called when the debugger session has been terminated. It is now recommended that you connect to the debugger_state_changed hook and test whether the new state is “none”.
param debugger: | An instance of GPS.Debugger |
---|
See also
Hook debugger_state_changed
diff_action_hook(hookname, vcs_file, orig_file, ref_file, diff_file, title)
Hook called to request the display of the comparison window
param vcs_file: | An instance of GPS.File |
---|---|
param orig_file: | |
An instance of GPS.File | |
param ref_file: | An instance of GPS.File |
param diff_file: | |
An instance of GPS.File | |
param title: | Buffer title |
return: | A boolean |
file_changed_detected(hookname, file)
Hook called whenever GPS detects that an opened file changed on the disk. You can connect to this hook if you want to change the default behavior, which is asking if the user wants to reload the file. Your function should return 1 if the action is handled by the function, and return 0 if the default behavior is desired.
param file: | An instance of GPS.File |
---|---|
return: | A boolean |
import GPS
def on_file_changed(hook, file):
# automatically reload the file without prompting the user
ed = GPS.EditorBuffer.get(file, force = 1)
return 1
# install a handler on "file_changed_detected" hook
GPS.Hook("file_changed_detected").add(on_file_changed)
file_changed_on_disk(hookname, file)
Hook called when some external action has changed the contents of a file on the disk, such as a VCS operation. The parameter might be a directory instead of a file, indicating that any file in that directory might have changed
param file: | An instance of GPS.File |
---|
file_closed(hookname, file)
Hook called just before the last editor for a file is closed. You can still use EditorBuffer.get() and current_view() to access the last editor for file.
param file: | An instance of GPS.File |
---|
file_deleted(hookname, file)
Hook called whenever GPS detects that a file was deleted on the disk. The parameter might be a directory instead of a file, indicating that any file within that directory has been deleted.
param file: | An instance of GPS.File |
---|
file_edited(hookname, file)
Hook called when a file editor has been opened for a file that wasn’t already opened before. Do not confuse with the hook open_file_action, which is used to request the opening of a file.
param file: | An instance of GPS.File |
---|
See also
open_file_action hook()
file_line_action_hook(hookname, identifier, file, every_line, normalize)
Hook called to request the display of new information on the side of the editors. It isn’t expected that you connect to this hook, but you might want to run it yourself to ask GPS to display some information on the side of its editors
param identifier: | |
---|---|
A string | |
param file: | An instance of GPS.File |
param every_line: | |
A boolean | |
param normalize: | |
A boolean | |
return: | A boolean |
file_renamed(hookname, file, renamed)
Hook called whenever a GPS action renamed a file on the disk. The file parameter indicates the initial location of the file, while the renamed parameter indicates the new location. The parameters might be directories instead of files, indicating that the directory has been renamed, and thus any file within that directory have their path changed.
param file: | An instance of GPS.File |
---|---|
param renamed: | An instance of GPS.File |
file_saved(hookname, file)
Hook called whenever a file has been saved
param file: | An instance of GPS.File |
---|
file_status_changed_action_hook(hookname, file, status)
Hook called when a file status has changed
param file: | An instance of GPS.File |
---|---|
param status: | A string, the new status for the file. This is the status has displyed into the GPS status line. The value is either Unmodified, Modified or Saved. |
return: | A boolean |
gps_started(hookname)
Hook called when GPS is fully loaded, and its window is visible to the user.
It isn’t recommended to do any direct graphical action before this hook has been called, so it is recommended that in most cases your start scripts connect to this hook.
html_action_hook(hookname, url_or_file, enable_navigation, anchor)
Hook called to request the display of HTML files. It is generally useful if you want to open an HTML file, and let GPS handle it in the usual manner
param url_or_file: | |
---|---|
A string | |
param enable_navigation: | |
A boolean | |
param anchor: | A string |
return: | A boolean |
location_action_hook(hookname, identifier, category, file, line, column, message)
Hook called to request the display of new information on the side of the location window
param identifier: | |
---|---|
A string | |
param category: | A string |
param file: | An instance of GPS.File |
param line: | An integer |
param column: | An integer |
param message: | A string |
return: | A boolean |
location_changed(hookname, file, line, column)
Hook called when the location in the current editor has changed, and the cursor has stopped moving.
param file: | An instance of GPS.File |
---|---|
param line: | An integer |
param column: | An integer |
log_parsed_hook(hookname)
Hook called when the last file log has been parsed after the corresponding VCS action.
marker_added_to_history(hookname)
Hook called when a new marker is added to the history list of previous locations, where the user can navigate back and forward
enable_navigation, new_file, force_reload, focus=False)
This hook is called when GPS needs to open a file. You can connect to this hook if you want to have your own editor open, instead of the internal editor of GPS. Your function should return 1 if it did open the file, 0 if the next function connected to this hook should be called.
The file should be opened directly at line and column. If column_end is not 0, the given range should be highlighted if possible. The enable_navigation parameter is set to True if the new location should be added to the history list, so that the user can navigate forward and backward across previous locations. new_file is set to True if a new file should be created when file is not found. If set to False, nothing should be done. force_reload is set to true if the file should be reloaded from the disk, discarding any change the user might have done. focus is set to true if the open editor should be given the keyboard focus
param file: | An instance of GPS.File |
---|---|
param line: | An integer |
param column: | An integer |
param column_end: | |
An integer | |
param enable_navigation: | |
A boolean | |
param new_file: | A boolean |
param force_reload: | |
A boolean | |
param focus: | A boolean |
return: | A boolean |
See also
file_edited hook()
GPS.Hook('open_file_action_hook').run(
GPS.File("gps-kernel.ads"),
322, # line
5, # column
9, # column_end
1, # enable_navigation
1, # new_file
0) # force_reload
preferences_changed(hookname)
Hook called when the value of some of the preferences changes. Modules should refresh themselves dynamically
project_changed(hookname)
Hook called when the project has changed. A new project has been loaded, and all previous settings and caches are now obsolete. In the callbacks for this hook, the attribute values have not been computed from the project yet, and will only return the default values. Connect to the project_view_changed hook instead to query the actual values
See also
Hook project_view_changed
project_changing(hookname, file)
Hook called just before a new project is loaded.
param file: | An instance of GPS.File |
---|
project_editor(hookname)
Hook called before the Project Editor is opened. This allows a custom module to perform specific actions before the actual creation of this dialog.
project_saved(hookname, project)
Hook called when a project is saved to disk. It is called for each project in the hierarchy
param project: | An instance of GPS.Project |
---|
project_view_changed(hookname)
Hook called when the project view has been changed, for instance because one of the environment variables has changed. This means that the list of directories, files or switches might now be different. In the callbacks for this hook, you can safely query the new attribute values.
revision_parsed_hook(hookname)
Hook called when the last file revision has been parsed after the corresponding VCS action.
rsync_action_hook(hookname)
For internal use only
search_functions_changed(hookname)
Hook called when the list of registered search functions changes.
search_regexps_changed(hookname)
Hook called when a new regexp has been added to the list of predefined search patterns
search_reset(hookname)
Hook called when the current search pattern is reset or changed by the user, or when the current search is no longer possible because the setup of GPS has changed.
server_config_hook(hookname, server_type, nickname)
Hook called when a server is assigned to a server operations category.
param server_type: | |
---|---|
A string, the server operations category. Can take the values “BUILD_SERVER”, “EXECUTION_SERVER” or “DEBUG_SERVER” | |
param nickname: | A string, the server’s nickname |
server_list_hook(hookname)
Hook called when the list of configured servers changed.
source_lines_revealed(hookname, context)
Hook called when a range of line becomes visible on the screen
param context: | An instance of GPS.Context |
---|
status_parsed_hook(hookname)
Hook called when the last file status has been parsed after the corresponding VCS action.
stop_macro_action_hook(hookname)
You should run this hook to request that the macro currently being replayed be stopped. No more events should be processed as part of this macro
variable_changed(hookname)
Hook called when one of the scenario variables has been renamed, removed or when one of its possible values has changed.
word_added(hookname, file)
Hook called when a word has been added in the editor
param file: | An instance of GPS.File |
---|
See also
Hook character_added
Create a new hook instance, which refers to one of the already defined hooks
Parameters: | name – A string, the name of the hook |
---|
Connect a new function to a specific hook. Any time this hook is run through run_hook, this function will be called with the same parameters passed to run_hook. If Last is True, then this function will be called after all functions currently added to this hook. If Last is False, it will be called before.
Parameters: |
|
---|
See also
An example using the GPS shell:
# in the GPS shell:
parse_xml '<action name="edited"><shell>echo "File edited hook=$1 file=$2"</shell></action>'
Hook "file_edited"
Hook.add %1 "edited"
def filed_edited(hook_name, file):
print "File edited (hook=" + hook_name + " file=" + file.name()
GPS.Hook("file_edited").add(file_edited)
List all the functions that are executed when the hook is executed. The returned list might contain <<internal> strings, which indicate that some Ada function is connected to this hook
Returns: | A list of strings |
---|
List all defined hooks. See also run_hook, register_hook and add_hook
Returns: | A list of strings |
---|
See also
List all defined type hooks
Returns: | A list of strings |
---|
See also
Defines a new hook. This hook can take any number of parameters, the default is none. The type and number of parameters is called the type of the hook, and this is described by the” optional second parameter. The value of this parameter should be either the empty string for a hook that doesn’t take any parameter. Or it could be one of the predefined types exported by GPS itself (see list_hook_types). Finally, it could be the word “”generic”” if this is a new type of hook purely defined for this scripting language
Parameters: |
|
---|
Remove function_name from the list of functions executed when the hook is run. This is the reverse of GPS.Hook.add
Parameters: | function_name – A subprogram, see the “Subprogram Parameters” section in the GPS documentation |
---|
See also
Run the hook. This will call all the functions that attached to that hook, and return the return value of the last callback (this depends on the type of the hook, most often this is always None). When the callbacks for this hook are expected to return a boolean, this command stops as soon as one the callbacks returns True
Parameters: | args – Any number of parameters to pass to the hook. |
---|
This only applies to hooks returning a boolean. This executes all functions attached to this hook, until one returns False, in which case no further function is called. This returns the returned value of the last executed function.
Parameters: | args – Any number of parameters to pass to the hook. |
---|---|
Returns: | A boolean |
This only applies to hooks returning a boolean. This executes all functions attached to this hook, until one returns True, in which case no further function is called. This returns the returned value of the last executed function. This is mostly the same as GPS.Hook.run, but makes the halt condition more explicit.
Parameters: | args – Any number of parameters to pass to the hook. |
---|---|
Returns: | A boolean |
An exception raised by GPS. Raised when calling a subprogram from the GPS module with an invalid argument type (passing an integer when a string is expected, for instance)
General interface to the locations window
Add a new entry in the location window. Nodes are created as needed for the category or file. If Highlight is specified to a non-empty string, the whole line is highlighted in the file, with a color given by that highlight category (see register_highlighting for more information). Length is the length of the highlighting. The default value of 0 indicates that the whole line should be highlighted
Parameters: |
|
---|
GPS.Editor.register_highlighting("My_Category", "blue")
GPS.Locations.add(category="Name in location window",
file=GPS.File("foo.c"),
line=320,
column=2,
message="message",
highlight="My_Category")
Dump the contents of the Locations View to the specified file, in XML format.
Parameters: | file – A string |
---|
Return the list of all categories currently displayed in the Locations window. These are the top-level nodes used to group information generally related to one command, like the result of a compilation.
Returns: | A list of strings |
---|
See also
Return the list of all file locations currently listed in the given category and file.
Parameters: |
|
---|---|
Returns: | A list of EditorLocation |
See also
Parse the contents of the string, which is supposedly the output of some tool, and add the errors and warnings to the locations window. A new category is created in the locations window if it doesn’t exist. Preexisting contents for that category is not removed, see locations_remove_category.
The regular expression specifies how locations are recognized. By default, it matches file:line:column. The various indexes indicate the index of the opening parenthesis that contains the relevant information in the regular expression. Set it to 0 if that information is not available. style_index and warning_index, if they match, force the error message in a specific category.
highlight_category, style_category and warning_category reference the colors to use in the editor to highlight the messages when the regexp has matched. If they are set to the empty string, no highlighting is done in the editor. The default values match those by GPS itself to highlight the error messages. Create these categories with GPS.Editor.register_highlighting().
Parameters: |
|
---|
See also
Remove a category from the location window. This removes all associated files
Parameters: | category – A string |
---|
See also
Sets desired sorting order for file nodes of the category. Actual sort order can be overrided by user.
Parameters: | category – A string (“Chronological” or “Alphabetical”) |
---|
This class provides an interface to the GPS logging mechanism. This can be used when debugging scripts, or even be left in production scripts for post-mortem analysis for instance. All output through this class is done in the GPS log file, in $HOME/.gps/log.
GPS comes with some predefined logging streams, which can be used to configure the format of the log file, such as whether colors should be used, whether timestamps should be logged with each message,...
Create a new logging stream. Each stream is associated with a name, which is displayed before each line in the GPS log file, and is used to distinguish between various parts of GPS. Calling this constructor with the same name multiple times will create a new class instance.
Parameters: | name – A string |
---|
log = GPS.Logger("my_script")
log.log("A message")
If condition evaluates to False, then error_message will be logged in the log file. If the condition evaluates to True, then success_message is logged if it was specified
Parameters: |
|
---|
log=GPS.Logger("my_script")
log.check(1 == 2, "Invalid addition")
Logs a message in the GPS log file
Parameters: | message – A string |
---|
Activate or deactivate a logging stream. The default for a sttream depends on the file $HOME/.gps/traces.cfg, and will generally be active. When a stream is inactive, no message is sent to the log file
Parameters: | active – A boolean |
---|
Represents GPS’s Multiple Document Interface. This gives access to general graphical commands for GPS, as well as control over the current layout of the windows within GPS
See also
If you have installed the pygtk package (see GPS’s documentation}, GPS will export a few more functions to python so that it is easier to interact with GPS itself. In particular, the GPS.MDI.add function allows you to put a widget created by pygtk under control of GPS’s MDI, so that users can interact with it as with all other GPS windows.
import GPS
## The following three lines are the usual to make pygtk visible
import pygtk
pygtk.require('2.0')
import gtk
def on_clicked(*args):
GPS.Console().write("button was pressed\n")
def create():
button=gtk.Button('press')
button.connect('clicked', on_clicked)
GPS.MDI.add(button, "From testgtk", "testgtk")
win = GPS.MDI.get('testgtk')
win.split()
create()
This function is only available if pygtk could be loaded in the python shell. You must install this library first, see the documentation for GPS.MDI itself.
This function adds a widget inside the MDI of GPS. The resulting window can then be manipulated by the user like any other standard GPS window. It can be split, floated, resized,... Title is the string used in the title bar of the window, short is the string used in the notebook tabs. You can immediately retrieve a handle to the created window by calling GPS.MDI.get (short).
Parameters: |
|
---|
Return all the windows currently in the MDI
Returns: | A list of GPS.MDIWindow |
---|
Return the window that currently has the focus, or raise an error if there is none
Returns: | An instance of GPS.MDIWindow |
---|
Display a modal dialog to report information to a user. This blocks the interpreter until the dialog is closed
Parameters: | msg – A string |
---|
Display a modal file selector. The user selected file is returned, or a file with an empty name if ‘Cancel’ is pressed.
A file filter can be defined (such as “*.ads”) to show only a category of files.
Parameters: | file_filter – A string |
---|---|
Returns: | An instance of GPS.File |
Return the window whose name is name. If there is no such window, None is returned
Parameters: | name – A string |
---|---|
Returns: | An instance of GPS.MDIWindow |
Return the window that contains child, or raise an error if there is none
Parameters: | child – An instance of GPS.GUI |
---|---|
Returns: | An instance of GPS.MDIWindow |
Hides the graphical interface of GPS.
Display a modal dialog and request some input from the user. The message is displayed at the top, and one input field is displayed for each remaining argument. The arguments can take the form “”label=value””, in which case “”value”” is used as default for this entry. If argument is prepend with ‘multiline:’ prefix field is edited as multi-line text. The return value is the value that the user has input for each of these parameters.
An empty list is returned if the user presses Cancel
Parameters: |
|
---|---|
Returns: | A list of strings |
a, b = GPS.MDI.input_dialog("Please enter values", "a", "b")
print a, b
Save all currently unsaved windows. This includes open editors, the project, and any other window that has registered some save callbacks.
If the force parameter is false, then a confirmation dialog is displayed so that the user can select which windows to save
Parameters: | force – A boolean |
---|
Shows the graphical interface of GPS.
Display a modal dialog to ask a question to the user. This blocks the interpreter until the dialog is closed. The dialog has two buttons Yes and No, and the selected button is returned to the caller
Parameters: | msg – A string |
---|---|
Returns: | A boolean |
if GPS.MDI.yes_no_dialog("Do you want to print?"):
print "You pressed yes"
This class represents one of the windows currently displayed in GPS. This includes both the windows currently visible to the user, and the ones that are temporarily hidden, for instance because they are displayed below another window. Windows acts as containers for other widgets
Prevents the creation of instances of GPS.MDIWindow. This is done by calling the various subprograms in the GPS.MDI class
Float the window, ie create a new toplevel window to display it. It is then under control of the user’s operating system or window manager. If float is False, the window is reintegrated within the GPS MDI instead
Parameters: | float – A boolean |
---|
Return the child contained in the window. The returned value might be an instance of a subclass of GPS.GUI, if that window was created from a shell command
Returns: | An instance of GPS.GUI |
---|
# Accessing the GPS.Console instance used for python can be done with:
GPS.MDI.get("Python").get_child()
Return whether the window is currently floating (ie in its own toplevel window), or False if the window is integrated into the main GPS window
Returns: | A boolean |
---|
Return the name of the window. If short is False, the long name is returned, ie the one that appears in the title bar. If short is True, the short name is returned, ie the one that appears in the notebook tabs.
Parameters: | short – A boolean |
---|---|
Returns: | A string |
Return the next window in the MDI, or window itself if there is no other window. If visible_only is true, then only the windows currently visible to the user are visible. This always returns floating windows
Parameters: | visible_only – A boolean |
---|---|
Returns: | An instance of GPS.MDIWindow |
Raise the window so that it becomes visible to the user. The window also gains the focus
Change the title used for a window. Name is the long title, as it appears in the title bar for instance, and short, if specified, is the name that appears in the notebook tabs.
Using this function might be dangereous in some contexts, since GPS keeps track of editors through their name.
Parameters: |
|
---|
Split the window in two parts, either horizontally (side by side), or vertically (one below the other). If reuse is true, attempt to reuse an existing space rather than splitting the current window. This should be used to avoid ending up with too small windows
Parameters: |
|
---|
See also
GPS.MDIWindow.single()
This class is used to manipulate GPS messages: build errors, editor annotations, etc.
Add a Message in GPS.
Parameters: |
|
---|
# Create a message
m=GPS.Message("default", GPS.File("gps-main.adb"),
1841, 20, "test message", 0)
# Remove the message
m.remove()
If the message has an associated action, execute it.
Return the message’s category.
Return the message’s column.
Return the message’s file.
Return an integer which represents the location of the message
Return the message’s line.
Return an EditorMark which was created with the message and keeps track of the location when the file is edited.
Return the message’s text.
Return a list of all messages currently stored in GPS.
Parameters: |
|
---|---|
Returns: | a list of GMS.Message |
Remove the message from GPS.
Add an action item to the message. This will add an icon to the message, and clicking on this icon will execute action.
Parameters: |
|
---|
Sets default sorting method for files in Locations view.
Parameters: |
|
---|
Set the style of the message. The second parameter indicates the length in number of characters to highlight. If 0, then highlight the whole line. If left out, this means the length of the message highlighting is not modified.
Parameters: | style – An Integer |
---|
Add an action item to the message. This will add an icon to the message, and clicking on this icon will execute the subprogram, with the messaged passed as parameter of the subprogram.
Parameters: |
|
---|
# This adds a "close" button to all the messages
[msg.set_subprogram(lambda m : m.remove(), "gtk-close", "")
for msg in GPS.Message.list()]
An exception raised by GPS. Raised when calling a subprogram from the GPS module with missing arguments
Interface to the GPS preferences, as set in the Edit/Preferences dialog. New preferences are created through XML customization files (or calls to GPS.parse_xml(), see the GPS documentation
See also
GPS.parse_xml('''
<preference name="custom-adb-file-color"
label="Background color for .adb files"
page="Editor:Fonts & Colors"
default="yellow"
type="color" />''')
print "color is " + GPS.Preference("custom-adb-file-color").get()
Initializes an instance of the GPS.Preference class, associating it with the preference given in parameter. The name is the one that can be found in the $HOME/.gps/preferences file. When you are creating a new preference, this name can include ‘/’ characters, which will result in subpages created in the Preferences dialog. The name after the last ‘/’ should only include letters and ‘-‘ characters.
Parameters: | name – A string |
---|
This function creates a new preference, and makes it visible in the preferences dialog. In the dialog, the preference appears in the page given by the name used when creating the instance of GPS.Preference. The label is used to qualify the preference, and doc will appear as a tooltip to explain the preference to users. The type describes the type of preference, and therefore how it should be edited by users.
The additional parameters depend on the type of preference you are creating:
Parameters: |
|
---|
Get value for the given preference. The exact returned type depends on the type of the preference. Note that boolean values are returned as integers, for compatibility with older versions of Pythons
Returns: | A string or an integer |
---|
if GPS.Preference("MDI-All-Floating"):
print "We are in all-floating mode"
Set value for the given preference. The type of the parameter depends on the type of the preference. If the save parameter is true, the new value is immediately saved for future GPS sessions, and the new value is taken into account by GPS itself. Otherwise, if set to false, you will need to call the hook “preferences_changed” to force it
Parameters: |
|
---|
Interface to expect-related commands. This class can be used to spawn new processes and communicate with them later on. It is similar to what GPS uses to communicate with gdb. This class is a subclass of GPS.Command.
# The following example launches a gdb process, let it print its welcome
# message, and kills it as soon as a prompt is seen in the output. In
# addition, it displays debugging messages in a new GPS window. As you
# might note, some instance-specific data is stored in the instance of
# the process, and can be retrieve in each callback.
import GPS, sys
def my_print(msg):
sys.stdout.set_console("My gdb")
print(msg)
sys.stdout.set_console()
def on_match(self, matched, unmatched):
my_print "on_match (" + self.id + ")=" + matched
self.kill()
def on_exit(self, status, remaining_output):
my_print "on_exit (" + self.id + ")"
def run():
proc = GPS.Process("gdb", "^\(gdb\)", on_match=on_match,
on_exit=on_exit)
proc.id = "first session"
run()
# A similar example can be implemented by using a new class. This is
# slightly cleaner, since it doesn't pollute the global namespace.
class My_Gdb(GPS.Process):
def matched(self, matched, unmatched):
my_print("matched " + self.id)
self.kill()
def exited(self, status, output):
my_print("exited " + self.id)
def __init__(self):
self.id = "from class"
GPS.Process.__init__(self, "gdb",
"^\(gdb\)",
on_match=My_Gdb.matched,
on_exit=My_Gdb.exited)
My_Gdb()
Spawn specified command. Command can include triple-quoted strings, similar to python, which will always be preserved as one argument.
If regexp is not-empty and on_match_action is specified, launch on_match_action when regexp is found in the process output. If on_exit_action is specified, execute it when the process terminates. Return the ID of the spawned process.
regexp is always compiled with the multi_line option, so that “^” and “$” also match at the beginning and end of each line, not just the whole output. You can optionally compile it with the single_line option whereby ”.” also matches the newline character. Likewise you can set the regexp to be case insensitive by setting case_sensitive_regexp to False.
on_match is a subprogram called with the parameters:
- $1 = the instance of GPS.Process
- $2 = the string which matched the regexp
- $3 = the string since the last match
before_kill is a subprogram called just before the process is about to be killed. It is called when the user is interrupting the process through the task manager, or when GPS exits. It is not called when the process terminates normally. When it is called, the process is still valid and can be send commands. Its parameters are:
- $1 = the instance of GPS.Process
- $2 = the entire output of the process
on_exit is a subprogram called when the process has exited. You can no longer send input to it at this stage. Its parameters are:
- $1 = the instance of GPS.Process
- $2 = the exit status
- $3 = the output of the process since the last call to on_match
If task_manager is set to True, the process will be visible in the GPS task manager, and can be interrupted or paused by users. Otherwise, it will simply be running in the background, and never visible to the user. If progress_regexp is specified, then the output of the process will be scanned for this regexp. The part that match will not be returned to on_match. Instead, they will be used to guess the current progress of the command. Two groups of parenthesis are parsed, the one at progress_current, and the one at progress_total. The number returned for each of these groups indicate the current progress of the command, and the total that must be reached for this command to complete. For instance, if your process outputs lines like “done 2 out of 5”, you should create a regular expression that matches the 2 and the 5 to guess the current progress. As a result, a progress bar is displayed in the task manager of GPS, and will allow users to monitor commands.
remote_server represents the server used to spawn the process. By default, the GPS_Server is used, which is always the local machine. See the section “Using GPS for Remote Development” in the GPS documentation for more information on this field.
If show_command is set, then the command line used to spawn the new Process is displayed in the “Messages” console.
If strip_cr is true, the output of the process will have all its ASCII.CR removed before the string is passed on to GPS and your script. This in general provides better portability to Windows systems, but might not be suitable for applications for which CR is relevant (for instance those that drive an ANSI terminal).
An exception is raised if the process could not be spawned.
Parameters: |
|
---|
See also
Block the execution of the script until either regexp has been seen in the output of the command, or the timeout has expired. If the timeout is negative, wait forever until we see the regexp or the process finishes its execution.
While in such a call, the usual on_match callback is called as usual, so you might need to add an explicit test in your on_match callback not to do anything in this case.
This command returns the output of the process since the start of the call to expect and up to the end of the text that matched regexp. Note that it will also include the output that was sent to the on_match callback while expect was running. It will not however include output already returned by a previous call to expect (nor does it guarantee that two successive calls to expect will return the full output of the process, since some output might have been matched by on_match between the two calls, and would not be returned by the second expect).
If a timeout occurred or the process terminated, an exception is raised
Parameters: |
|
---|---|
Returns: | A string |
proc = GPS.Process("/bin/sh")
print("Output till prompt=" + proc.expect (">"))
proc.send("ls")
Wait till the process terminates, and return its output. This is the output since the call to get_result, ie if you call get_result after performing some calls to expect, the returned string does not return the output that was already returned by expect.
Returns: | A string |
---|
Interrupt a process controlled by GPS
Terminate a process controlled by GPS
Send a line of text to the process. If you need to close the input stream to an external process, it often works to send the character ASCII 4, for instance through the python command chr(4).
Parameters: |
|
---|
Tells the process about the size of its terminal. Rows and columns should (but need not) be the number of visible rows and columns of the terminal in which the process is running.
Parameters: |
|
---|
Block the execution of the script until the process has finished executing. The exit callback registered when the process was started will be called before returning from this function.
This function returns the exit status of the command.
Returns: | An integer |
---|
Represents a project file. See also the GPS documentation on how to create new project attributes.
See also
Related hooks:
“project_view_changed”: Called whenever the project is recomputed, ie one of its attributes was changed by the user, the environment variables are changed,...
Then is a good time to test the list of languages (GPS.Project.languages()) that the project supports, and do language-specific customizations
“project_changed”: A new project was loaded. The hook above will be called after this one
Initializes an instance of GPS.Project. The project must be currently loaded in GPS
Parameters: | name – The project name |
---|
See also
Parameters: |
|
---|
GPS.Project.root().add_attribute_values(
"Default_Switches", "Compiler", "ada", "-gnatwa", "-gnatwe");
This commands adds a new dependency from self to the project file pointed to by path. This is the equivalent of putting a with clause in self, and means that the source files in self can depend on source files from the imported project
Parameters: | path – The path to another project to depend on |
---|
See also
Add some main units to the current project, and for the current scenario. The project is not saved automatically
Parameters: | args – Any number of arguments, at least one |
---|
Add some predefined directories to the source path or the objects path. These will be searched when GPS needs to open a file by its base name, in particular from the File->Open From Project dialog. The new paths are added in front, so that they have priorities over previously defined paths.
Parameters: |
|
---|
GPS.Project.add_predefined_paths(os.pathsep.join(sys.path))
Add a new source directory to the project. The new directory is added in front of the source path. You should call recompute() after calling this method, to recompute the list of source files. The directory is added for the current value of the scenario variables only. Note that if the current source directory for the project is not specified explicitly in the .gpr file), it will be overriden by the new directory you are adding. If the directory is already part of the source directories for the project, it is not added a second time.
Parameters: | directory – A string |
---|
Return the list of projects that might contain sources that depend on the project’s sources. When doing extensive searches it isn’t worth checking other projects. Project itself is included in the list.
This is also the list of projects that import self.
Returns: | A list of instances of GPS.Project |
---|
for p in GPS.Project("kernel").ancestor_deps():
print p.name()
# will print the name of all the projects that import kernel.gpr
Clear the values list of an attribute.
If the package is not specified, the attribute at the toplevel of the project is queried.
The index only needs to be specified if it applies to that attribute.
Parameters: |
|
---|
Return the list of projects on which self depends (either directly if recursive is False, or including indirect dependencies if recursive is True).
Parameters: | recursive – A boolean |
---|---|
Returns: | A list of GPS.Project instances |
Generate the documentation of the project and its subprojects if recursive is True, and display it with the default browser
Parameters: | recursive – A boolean |
---|
See also
Fetch the value of the attribute in the project.
If the package is not specified, the attribute at the toplevel of the project is queried.
The index only needs to be specified if it applies to that attribute.
If the attribute value is stored as a simple string, a list with a single element is returned. This function always returns the value of the attribute in the currently selected scenario.
Parameters: |
|
---|---|
Returns: | A list of strings |
# If the project file contains the following text:
#
# project Default is
# for Exec_Dir use "exec/";
# package Compiler is
# for Switches ("file.adb") use ("-c", "-g");
# end Compiler;
# end Default;
# Then the following commands;
a = GPS.Project("default").get_attribute_as_list("exec_dir")
=> a = ("exec/")
b = GPS.Project("default").get_attribute_as_list(
"switches", package="compiler", index="file.adb")
=> b = ("-c", "-g")
Fetch the value of the attribute in the project.
If the package is not specified, the attribute at the toplevel of the project is queried.
The index only needs to be specified if it applies to that attribute.
If the attribute value is stored as a list, the result string is a concatenation of all the elements of the list. This function always returns the value of the attribute in the currently selected scenario.
When the attribute is not explicitely overridden in the project, the default value is returned. This default value is the one described in an XML file (see the GPS documentation for more information). This default value is not necessarily valid, and could for instance be a string starting with a parenthesis, as explained in the GPS documentation.
Parameters: |
|
---|---|
Returns: | A string, the value of this attribute |
# If the project file contains the following text:
# project Default is
# for Exec_Dir use "exec/";
# package Compiler is
# for Switches ("file.adb") use ("-c", "-g");
# end Compiler;
# end Default;
a = GPS.Project("default").get_attribute_as_string("exec_dir")
=> a = "exec/"
b = GPS.Project("default").get_attribute_as_string(
"switches", package="compiler", index="file.adb")
=> b = "-c -g"
Return the name of the executable, either read from the project or computed from main
Parameters: | main – GPS.File |
---|---|
Returns: | A string |
Return the value of the property associated with the project. This property might have been set in a previous GPS session if it is persistent. An exception is raised if no such property already exists for the project
Parameters: | name – A string |
---|---|
Returns: | A string |
See also
Same as get_attribute_as_list, but specialized for the switches of a specific tool. Tools are defined through XML customization files, see the GPS documentation for more information
Parameters: | tool – The name of the tool whose switches you want to get |
---|---|
Returns: | A list of strings |
# If GPS has loaded a customization file that contains the following
# tags:
#
# <?xml version="1.0" ?>
# <toolexample>
# <tool name="Find">
# <switches>
# <check label="Follow links" switch="-follow" />
# </switches>
# </tool>
# </toolexample>
# The user will as a result be able to edit the switches for Find in
# the standard Project Properties editor.
# Then the python command
GPS.Project("default").get_tool_switches_as_list("Find")
# will return the list of switches that were set by the user in the
# Project Properties editor.
Same as GPS.Project.get_attribute_as_string, but specialized for a specific tool.
Parameters: | tool – The name of the tool whose switches you want to get |
---|---|
Returns: | A string |
Return True if the project has been modified but not saved yet. If recursive is true, then the return value takes into account all projects imported by self
Parameters: | recursive – A boolean |
---|---|
Returns: | A boolean |
Return the list of languages that are used for the sources of the project (and its subprojects if recursive is True). This can be used to detect whether some specific action in a module should be activated or not. Language names are always lowercase
Parameters: | recursive – A boolean |
---|---|
Returns: | A list of strings |
# The following example adds a new menu only if the current project
# supports C. This is refreshed every time the project is changed by
# the user.
import GPS
c_menu=None
def project_recomputed(hook_name):
global c_menu
try:
## Check whether python is supported
GPS.Project.root().languages(recursive=True).index("c")
if c_menu == None:
c_menu = GPS.Menu.create("/C support")
except:
if c_menu:
c_menu.destroy()
c_menu = None
GPS.Hook("project_view_changed").add(project_recomputed)
Load a new project, which replaces the current root project, and return a handle to it. All imported projects are also loaded at the same time. If the project is not found, a default project is loaded.
If force is True, then the user will not be asked whether to save the current project, whether it was modified or not.
If keep_desktop is False, then load saved desktop configuration, keep current otherwise
Parameters: |
|
---|---|
Returns: | An instance of GPS.Project |
Return the name of the project. This doesn’t include directory information, see self.file().name() if you wish to access that information
Returns: | A string, the name of the project |
---|
Return the list of object directories for this project. If Recursive is True, the source directories of imported projects is also returned. There might be duplicate directories in the returned list
Parameters: | recursive – A boolean |
---|---|
Returns: | A list of strings |
Launch a graphical properties editor for the project
Recompute the contents of a project, including the list of source files that are automatically loaded from the source directories. The project file is not reloaded from the disk, and this should only be used if you have created new source files outside of GPS for instance
GPS.Project.recompute()
many values you need at the end of the param list.
If the package is not specified, the attribute at the toplevel of the project is queried.
The index only needs to be specified if it applies to that attribute.
Parameters: |
|
---|
GPS.Project.root().remove_attribute_values(
"Default_Switches", "Compiler", "ada", "-gnatwa", "-gnatwe");
Remove a dependency between two projects. You must call GPS.Project.recompute() once you are done doing all the modifications on the projects
Parameters: | imported – An instance of GPS.Project |
---|
See also
Removes a property associated with a project
Parameters: | name – A string |
---|
See also
Remove a source directory from the project. You should call recompute() after calling this method, to recompute the list of source files. The directory is added for the current value of the scenario variables only
Parameters: | directory – A string |
---|
See also
Rename and move a project file (the project will only be put in the new directory when it is saved, but will not be removed from its original directory). You must call GPS.Project.recompute() sometime after changing the name.
Parameters: |
|
---|
Return the root project currently loaded in GPS
Returns: | An instance of GPS.Project |
---|
print "Current project is " + GPS.Project.root().name()
Return the list of scenario variables for the current project hierarchy, and their current value. These variables are visible at the top of the Project View in the GPS window. The initial value for these variables is set from the environment variables’ value when GPS is started. However, changing the value of the environment variable later on doesn’t change the value of the scenario variable.
Returns: | hash table associating variable names and values |
---|
See also
GPS.Project.scenario_variables()["foo"]
=> returns the current value for the variable foo
Return a concatenation of VARIABLE=VALUE, each preceded by the given prefix. This string will generally be used when calling external tools, for instance make or GNAT
Parameters: | prefix – String to print before each variable in the output |
---|---|
Returns: | a string |
# The following GPS action can be defined in an XML file, and will launch
# the make command with the appropriate setup for the environment
# variables:
# <action name="launch make"> # <shell lang="python">GPS.scenario_variables_cmd_line()</shell> # <external>make %1</external> # </action>
Return a hash table where keys are the various scenario variables defined in the current project and values the different values that this variable can get.
Returns: | A hash table of strings |
---|
Return the list of matches for pattern in all the files belonging to the project (and its imported projects if recursive is true (default). Scope is a string, and should be any of ‘whole’, ‘comments’, ‘strings’, ‘code’. The latter will match only for text outside of comments
Parameters: |
|
---|---|
Returns: | A list of GPS.FileLocation instances |
Sets the value of an attribute. The attribute has to be stored as a single value. If the package is not specified, the attribute at the toplevel of the project is queried. The index only needs to be specified if it applies to that attribute.
Parameters: |
|
---|
Associates a string property with the project. This property is retrievable during the whole GPS session, or across GPS sessions if persistent is set to True.
This is different than setting instance properties through Python’s standard mechanism in that there is no garantee that the same instance of GPS.Project will be created for each physical project on the disk, and therefore you would not be able to associate a property with the physical project itself
Parameters: |
|
---|
Change the value of a scenario variable. You need to call GPS.Project.recompute() to activate this change (so that multiple changes to the project can be grouped
Parameters: |
|
---|
See also
Return the list of source directories for this project. If Recursive is True, the source directories of imported projects is also returned. There might be duplicate directories in the returned list
Parameters: | recursive – A boolean |
---|---|
Returns: | A list of strings |
See also
Return the list of source files for this project. If recursive is true, then all sources from imported projects are also returned. Otherwise, only the direct sources are returned. The basenames of the returned files are always unique: not two files with the same basenames are returned, and the one returned is the first one see while traversing the project hierarchy
Parameters: | recursive – A boolean |
---|---|
Returns: | A list of instances of GPS.File |
Updates the cross-reference information in memory for all files of the project. This doesn’t regenerate that information, just read all the .ali files found in the object directory of the project (and all imported projects if recursive is True). This should generally be called before calling GPS.freeze_xref, for efficiency.
Parameters: | recursive – A boolean |
---|
This class is used to manipulate GPS Project Templates.
General interface to the revision browser
Create a link between revision_1 and revision_2 for the given file
Parameters: |
|
---|
Add a new log entry into the revision browser
Parameters: |
|
---|
Register a new symbolic name (tag or branches) corresponding to the specified revision of file
Parameters: |
|
---|
Clear file’s revision view
Parameters: | file – A string |
---|
This class is used to manipulate GPS Styles, which are used for instance to represent graphical attributes given to Messages.
Create a Style
Parameters: |
|
---|
# Create a new style
s=GPS.Style("my new style")
# Set the background color to yellow
s.set_background("#ffff00")
# Apply the style to all the messages
[m.set_style(s) for m in GPS.Message.list()]
Returns: | a string, background of the style |
---|
Returns: | a string, foreground of the style |
---|
Return a Boolean indicating whether this style is shown in the speedbar.
Returns: | a boolean |
---|
Returns: | a string, the name of the style. |
---|
Set the background of style to the given color.
Parameters: | noname – A string representing a color, for instance “blue” or “#0000ff” |
---|
Set the foreground of style to the given color.
Parameters: | noname – A string representing a color, for instance “blue” or “#0000ff” |
---|
Whether this style should appear in the speedbar.
Parameters: | noname – A Boolean |
---|
This class represents a gtk widget that can be used to edit a tool’s command line.
Creates a new SwitchesChooser widget from the tool’s name and switch description in xml format.
Parameters: |
|
---|
Return the tool’s command line parameter
Returns: | A string |
---|
Modify the widget’s aspect to reflect the command line.
Parameters: | cmd_line – A string |
---|
This class provides an interface to the background tasks being handled by GPS, such as the build commands, the query of cross references, etc. These are the same tasks that are visible through the GPS Task Manager.
Note that the classes represented with this class cannot be stored.
Interrupt the task
Return the name of the task
Returns: | A string |
---|
Pause the task
Resume the paused task
Return the status of the task
Returns: | A string |
---|
This class gives access to actions that must be executed regularly at specific intervals
See also
## Execute callback three times and remove it
import GPS;
def callback(timeout):
timeout.occur += 1
print "A timeout occur=" + `timeout.occur`
if timeout.occur == 3:
timeout.remove()
t = GPS.Timeout(500, callback)
t.occur = 0
A timeout object executes a specific action repeatedly, at a specified interval, as long as it is registered. The action takes a single argument, which is the instance of GPS.Timeout that called it.
Parameters: |
|
---|
Unregister a timeout
This class represents a button that can be inserted in the toolbar
See also
Initializes a new button. When the button is pressed by the user, on_click is called with the following single parameter:
- $1 = The instance of GPS.Button
Parameters: |
|
---|
b = GPS.ToolButton("gtk-new", "New File",
lambda x : GPS.execute_action("/File/New"))
GPS.Toolbar().insert(b, 0)
Interface to commands related to the toolbar. This allows you to add new combo boxes to the GPS toolbars. Note that this can also be done through XML files, see the GPS documentation
See also
import GPS
def on_changed(entry, choice):
print "changed " + choice + ' ' + entry.custom
def on_selected(entry, choice):
print "on_selected " + choice + ' ' + entry.custom
ent = GPS.Combo("foo", label="Foo", on_changed=on_changed)
GPS.Toolbar().append(ent, tooltip => "What it does")
ent.custom = "Foo" ## Create any field you want
ent.add(choice="Choice1", on_selected=on_selected)
ent.add(choice="Choice2", on_selected=on_selected)
ent.add(choice="Choice3", on_selected=on_selected)
It is easier to use this interface through XML customization files, see the GPS documentation. However, this can also be done through standard GPS shell commands:
Combo "foo" "Foo" "on_changed_action"
Toolbar
Toolbar.append %1 %2 "What it does"
Toolbar
Toolbar.get %1 "foo"
Combo.add %1 "Choice1" "on_selected"action"
Initializes a new instance of the toolbar, associated with the default toolbar of GPS. This is called implicitly from python
Add a new widget in the toolbar. This can be an instance of GPS.Combo, or a GPS.Button, or a GPS.ToolButton.
Parameters: |
|
---|
Return the toolbar entry matching the given id. An error is raised if no such entry exists. The same instance of GPS.Combo is always returned for each specific id, therefore you can store your own fields in this instance and access it later.
Parameters: | id – A string, the name of the entry to get |
---|---|
Returns: | An instance of GPS.Combo |
ent = GPS.Combo("foo")
GPS.Toolbar().append(ent)
ent.my_custom_field = "Whatever"
print GPS.Toolbar().get("foo").my_custom_field
=> "Whatever"
Return the position-th widget in the toolbar. If the widget was created from a scripting language, its instance is returned. Otherwise, a generic instance of GPS.GUI is returned. This can be used to remove some items from the toolbar for instance
Parameters: | position – An integer, starting at 0 |
---|---|
Returns: | An instance of a child of GPS.GUI |
GPS.Toolbar().get_by_pos(0).set_sensitive(False)
# can be used to gray out the first item in the toolbar
An exception raised by GPS. It indicates an internal error in GPS, raised by the Ada code itself. This exception is unexpected and indicates a bug in GPS itself, not in the python script, although it might be possible to modify the latter to work around the issue
General interface to version control systems
Display the annotations for file
Parameters: | file – A string |
---|
Parses the output of the annotations command (cvs annotate for instance), and add the corresponding information to the left of the editor
Parameters: |
|
---|
Commit file
Parameters: | file – A string |
---|
Show differences between local file and the head revision
Parameters: | file – A string |
---|
Show differences between local file and the working revision
Parameters: | file – A string |
---|
Return the system supported for the current project
Returns: | A string |
---|
Returns the GPS File corresponding to the log file for given file.
Parameters: | file – A string |
---|
Query the status for file
Parameters: | file – A string |
---|
Get the revision changelog for file. If revision is specified, query the changelog for this specific revision, otherwise query the entire changelog
Parameters: |
|
---|
Parses string to find log entries for file. This command uses the parser in the XML description node for the VCS corresponding to vcs_identifier.
Parameters: |
|
---|
Remove the annotations for file
Parameters: | file – A string |
---|
Returns the repository root directory, or if tag_name is specified the repository directory for the given tag or branch.
Parameters: | tag_name – A string |
---|
Returns the trunk repository path for file or if tag_name is specified the repository path on the given tag or branch path.
Parameters: |
|
---|
Parses string to find revisions tags and branches information for file. This command uses the parser in the XML description node for the VCS corresponding to vcs_identifier.
Parameters: |
|
---|
Record a reference file (the file on which a diff buffer is based for example) for a given file
Parameters: |
|
---|
Parses a string for VCS status. This command uses the parsers defined in the XML description node for the VCS corresponding to vcs_identifier.
If clear_logs is TRUE, the revision logs editors are closed for files that have the VCS status “up-to-date”. Parameter dir indicates the directory in which the files matched in string are located.
Parameters: |
|
---|
Show the list of supported VCS systems
Returns: | List of strings |
---|
Update file
Parameters: | file – A string |
---|
Parses a string for VCS status. This command uses the parsers defined in the XML description node for the VCS corresponding to vcs_identifier.
Parameter dir indicates the directory in which the files matched in string are located.
Parameters: |
|
---|
This class provides access to the graphical comparison between two or three files or two versions of the same file within GPS. A visual diff is a group of two or three editors with synchronized scrolling. Differences are rendered using blank lines and color highlighting.
This function prevents the creation of a visual diff instance directly. You must use GPS.Vdiff.create() or GPS.Vdiff.get() instead.
Close all editors implied in a visual diff.
If none of the files given as parameter is already used in a visual diff, this function creates a new visual diff and returns it. Otherwise, None is returned.
Parameters: | |
---|---|
Returns: | An instance of GPS.Vdiff |
Return the list of files used in a visual diff.
Returns: | A list of GPS.File |
---|
Return an instance of an already exisiting visual diff. If an instance already exists for this visual diff, it is returned. All files passed as parameters have to be part of the visual diff but not all files of the visual diff have to be passed for the visual diff to be returned. For example if only one file is passed the visual diff that contains it, if any, will be returned no matter it is a two or three files visual diff.
Parameters: |
---|
This function returns the list of visual diff currently opened in GPS.
Returns: | A list GPS.Vdiff |
---|
# Here is an example that demonstrates how to use GPS.Vdiff.list to
# close all the visual diff.
# First two visual diff are created
vdiff1 = GPS.Vdiff.create(GPS.File("a.adb"), GPS.File("b.adb"))
vdiff2 = GPS.Vdiff.create(GPS.File("a.adb"), GPS.File("b.adb"))
# Then we get the list of all current visual diff
vdiff_list = GPS.Vdiff.list()
# And we iterate on that list in order to close all editors used in
# each visual diff from the list.
for vdiff in vdiff_list:
files = vdiff.files()
# But before each visual diff is actually closed, we just inform
# the user of the files that will be closed.
for file in files:
print "Beware! " + file.name () + "will be closed."
# Finally, we close the visual diff
vdiff.close_editors()
Recompute a visual diff. The content of each editor used in the visual diff is saved. The files are recompared and the display is redone (blank lines and color highlighting).
This class represents Tree-based views for XML files
Create a new XMLViewer, with the given name.
columns is the number of columns that the table representation should have. The first column is always the one used for sorting the table.
parser is a subprogram called for each XML node that is parsed. It takes three arguments: the name of the XML node being visited, its attributes (in the form “attr=’foo’ attr=”bar””), and the text value of that node. This subprogram should return a list of strings, one per visible column create for the table. Each element will be put in the corresponding column.
If parser is unspecified, the default is to display in the first column the tag name, in the second column the list of attributes, and in the third column when it exists the textual contents of the node.
on_click is an optional subprogram. It is called every time the user double-click on a line, and is passed the same arguments as Parser. It has no return value.
on_select has the same profile as on_click, but is called when the user has selected a new line, not double-clicked on it.
If sorted is True, then the resulting graphical list is sorted on the first column.
Parameters: |
|
---|
# Display a very simply tree. If you click on the file name,
# the file will be edited.
import re
xml = '''<project name='foo'>
<file>source.adb</file>
</project>'''
view = GPS.XMLViewer("Dummy", 1, parser, on_click)
view.parse_string(xml)
def parser(node_name, attrs, value):
attr = dict()
for a in re.findall('''(\w+)=['"](.*?)['"]\B''', attrs):
attr[a[0]] = a[1]
if node_name == "project":
return [attr["name"]]
elif node_name == "file":
return [value]
def on_click(node_Name, attrs, value):
if node_name == "file":
GPS.EditorBuffer.get(GPS.File(value))
Create a new XMLViewer for an XML file generated by gnatmetric. Name is used as the name for the window
Parameters: | name – A string |
---|
Replace the contents of self by that of the XML file
Parameters: | filename – An XML file |
---|
Replace the contents of self by that of the XML string
Parameters: | str – A string |
---|