Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add varlink #7062

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,9 @@
[submodule "vendor/grammars/language-typelanguage"]
path = vendor/grammars/language-typelanguage
url = https://github.com/goodmind/language-typelanguage
[submodule "vendor/grammars/language-varlink"]
path = vendor/grammars/language-varlink
url = https://github.com/varlink/language-varlink
[submodule "vendor/grammars/language-viml"]
path = vendor/grammars/language-viml
url = https://github.com/Alhadis/language-viml
Expand Down
2 changes: 2 additions & 0 deletions grammars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,8 @@ vendor/grammars/language-turing:
- source.turing
vendor/grammars/language-typelanguage:
- source.tl
vendor/grammars/language-varlink:
- source.varlink
vendor/grammars/language-viml:
- source.vim-snippet
- source.viml
Expand Down
11 changes: 11 additions & 0 deletions lib/linguist/languages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8590,6 +8590,17 @@ sed:
templ:
type: markup
color: "#66D0DD"
varlink:
type: markup
color: "#5882FA"
extensions:
- ".varlink"
ace_mode: text
tm_scope: source.varlink
language_id: 396563549
wdl:
type: programming
color: "#42f1f4"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops.

extensions:
- ".templ"
ace_mode: text
Expand Down
49 changes: 49 additions & 0 deletions samples/varlink/com.redhat.system.varlink
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#
# Source: https://github.com/varlink/com.redhat.system/blob/master/src/com.redhat.system.varlink
# Licenses:
# MIT - https://github.com/varlink/com.redhat.system/blob/master/LICENSE-MIT
# Apache - https://github.com/varlink/com.redhat.system/blob/master/LICENSE-APACHE
#
#
# The Activator Interface allows to configure and maintain a list of available
# interfaces. When an interface is accessed by a client, the activator receives
# the initial message, starts the service which implements this interface, and
# hands over the listening connection with the initial message.
interface com.redhat.system

type Executable (
path: string,
user_id: ?int,
group_id: ?int
)

type Service (
address: string,
interfaces: [string](),
executable: ?Executable,
activate_at_startup: ?bool
)

type Config (
vendor: string,
product: string,
version: string,
url: string,
services: []Service,
systems: [string]string
)

# Retrieve the current configuration.
method GetConfig() -> (config: Config)

# Add services to the list of managed services.
method AddServices(services: []Service) -> ()

# Add systems to the list of known systems.
method AddSystems(systems: [string]string) -> ()

# Remove and stop services from the list of manages services.
method RemoveServices(services: []Service) -> ()

# Remove and stop services from the list of manages services.
method RemoveSystems(systems: []string) -> ()
1 change: 1 addition & 0 deletions vendor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,7 @@ This is a list of grammars that Linguist selects to provide syntax highlighting
- **UnrealScript:** [textmate/java.tmbundle](https://github.com/textmate/java.tmbundle)
- **UrWeb:** [gwalborn/UrWeb-Language-Definition](https://github.com/gwalborn/UrWeb-Language-Definition)
- **V:** [0x9ef/vscode-vlang](https://github.com/0x9ef/vscode-vlang)
- **varlink:** [varlink/language-varlink](https://github.com/varlink/language-varlink)
- **VBA:** [serkonda7/vscode-vba](https://github.com/serkonda7/vscode-vba)
- **VBScript:** [peters-ben-0007/VBDotNetSyntax](https://github.com/peters-ben-0007/VBDotNetSyntax)
- **VCL:** [brandonwamboldt/sublime-varnish](https://github.com/brandonwamboldt/sublime-varnish)
Expand Down
1 change: 1 addition & 0 deletions vendor/grammars/language-varlink
Submodule language-varlink added at dcc59c
27 changes: 27 additions & 0 deletions vendor/licenses/grammar/language-varlink.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
type: grammar
name: language-varlink
license: mit
---

MIT License

Copyright (c) 2018 Harald Hoyer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.