diff options
Diffstat (limited to 'conf/generate-unit-conf')
-rw-r--r-- | conf/generate-unit-conf/Makefile | 25 | ||||
-rw-r--r-- | conf/generate-unit-conf/afm-unit | 149 | ||||
-rw-r--r-- | conf/generate-unit-conf/binder.inc | 46 | ||||
-rw-r--r-- | conf/generate-unit-conf/provided.inc | 35 | ||||
-rw-r--r-- | conf/generate-unit-conf/service.inc | 115 |
5 files changed, 0 insertions, 370 deletions
diff --git a/conf/generate-unit-conf/Makefile b/conf/generate-unit-conf/Makefile deleted file mode 100644 index 5f5346b..0000000 --- a/conf/generate-unit-conf/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -.PHONY: all - -MAIN = afm-unit - -FILES = $(MAIN) binder.inc provided.inc service.inc Makefile - -DIR = .. - -#AFM_CONFIG_DIR ?= /etc/afm -AFM_CONFIG_DIR ?= "@afm_confdir@" - -C = -DAFM_CONFIG_DIR=$(AFM_CONFIG_DIR) - -D = -DAGL_DEVEL - -all: $(DIR)/afm-unit.conf.in $(DIR)/afm-unit-debug.conf.in - -$(DIR)/afm-unit.conf.in: $(FILES) - @echo generating $@ - @m4 $C $< | sed '/^[ \t]*\\*[ \t]*$$/d' > $@ - -$(DIR)/afm-unit-debug.conf.in: $(FILES) - @echo generating $@ - @m4 $C $D $< | sed '/^[ \t]*\\*[ \t]*$$/d' > $@ - diff --git a/conf/generate-unit-conf/afm-unit b/conf/generate-unit-conf/afm-unit deleted file mode 100644 index 9a8cd62..0000000 --- a/conf/generate-unit-conf/afm-unit +++ /dev/null @@ -1,149 +0,0 @@ -divert(-1) -dnl vim: set filetype=sysctl.conf.m4 syntax=sysctl.conf.m4: ------------------------------------------------------------------------ --- Set the comment character of m4 to ; instead of # --- This is needed for substitution within lines starting with # -changecom( ';') - ------------------------------------------------------------------------ --- -define( `X_EMITS', 1) -define( `X_DIVERTS', `divert(eval(-!X_EMITS()))') -define( `X_PUSH_DIVERTS', `pushdef(`X_EMITS', eval(X_EMITS() && $1))X_DIVERTS()') - -define( `X_IF', `pushdef(`X_COND', $1)X_PUSH_DIVERTS($1)') -define( `X_ELSE', `popdef(`X_EMITS')X_PUSH_DIVERTS(eval(!X_COND))') -define( `X_ELIF', `X_ELSE()X_IF($1)') -define( `X_ENDIF', `popdef(`X_EMITS')popdef(`X_COND')X_DIVERTS()') - -define( `IF', `pushdef(`ELSE',`X_ELSE()')pushdef(`ELIF',`X_ELIF($1)')pushdef(`ENDIF',`X_ENDIF()popdef(`ELSE',`ELIF',`ENDIF')')X_IF($1)') - ------------------------------------------------------------------------ --- -define( `MUSTACH_ON', `ifelse(`$2',,,`{{#$1}}`$2'{{/$1}}')ifelse(`$3',,,`{{^$1}}`$3'{{/$1}}')') -define( `MUSTACH_IF', `{{#$1}}pushdef(`ELSE',`{{/$1}}{{^$1}}')pushdef(`ENDIF',`{{/$1}}popdef(`ELSE',`ENDIF')')') -define( `MUSTACH_IF_NOT', `{{^$1}}pushdef(`ELSE',`{{/$1}}{{#$1}}')pushdef(`ENDIF',`{{/$1}}popdef(`ELSE',`ENDIF')')') - ------------------------------------------------------------------------ --- -define( `PERM', `urn:AGL:permission:$1') -define( `REQPERM', `required-permission.PERM($1)') - -define( `ON_PERM', `MUSTACH_ON(REQPERM($1),$2,$3)') -define( `IF_PERM', `MUSTACH_IF(REQPERM($1))') -define( `IF_NOT_PERM', `MUSTACH_IF_NOT(REQPERM($1))') - -define( `ON_CONTENT', `MUSTACH_ON(content.type=$1,$2,$3)') -define( `IF_CONTENT', `MUSTACH_IF(content.type=$1)') -define( `IF_NOT_CONTENT', `MUSTACH_IF_NOT(content.type=$1)') - -define( `ON_VALUE', `MUSTACH_ON(value=$1,$2,$3)') -define( `IF_VALUE', `MUSTACH_IF(value=$1)') -define( `IF_NOT_VALUE', `MUSTACH_IF_NOT(value=$1)') - ------------------------------------------------------------------------ --- - when home screen will use real ids - use TARGET={{:id}}--{{:ver}}--{{:#target}} - instead of TARGET={{idaver}}{{^#target=main}}@{{:#target}}{{/#target=main}} - -define( `TARGET', `{{idaver}}{{^#target=main}}@{{:#target}}{{/#target=main}}') -define( `UNIT_NAME_BASE', `afm-ON_PERM(`:public:hidden', `service', `appli')-{{:id}}--{{:ver}}--{{:#target}}@') -define( `UNIT_NAME_SERVICE', `UNIT_NAME_BASE%i.service') -define( `UNIT_NAME_SOCKET_FOR', `afm-api-ws-$1@%i.socket') -define( `APP_DATA_DIR', `/home/%i/app-data') -define( `USER_RUN_DIR', `/run/user/%i') - ------------------------------------------------------------------------ --- -define( `ON_AGL_DEVEL', `ifdef(`AGL_DEVEL', $1, $2)') -define( `IF_AGL_DEVEL', `IF(ON_AGL_DEVEL(1,0))') - -divert(0)dnl -;--------------------------------------------------------------------------------- -; File: -; -; afm-unit.conf -; -; Mode: -; -; ON_AGL_DEVEL(DEVEL, RELEASE) -; -; Role: -; -; Configure how installation of widget produces unit files for systemd -; -; Processing and format: -; -; 1. File load -; -; Lines beginning with ; are firstly removed -; -; 2. File instantiation -; -; Mustache (extended) substitutions are applied using JSON -; data deduced from config.xml file of the widget. -; -; 3. Extraction of units -; -; Extract produced units, pack it (remove empty lines and directives) -; -; Directives: -; -; Any directive occupy one whole line starting with % -; -; - %nl -; -; produce an empty line at the end -; -; - %begin systemd-unit -; - %end systemd-unit -; -; delimit the produced unit -; -; - %systemd-unit user -; - %systemd-unit system -; -; tells the kind of unit (user/system) -; -; - %systemd-unit service NAME -; - %systemd-unit socket NAME -; -; gives the name and type of the unit -; -; - %systemd-unit wanted-by NAME -; -; tells to install a link to unit in the wants of NAME -; -; Setting variables: -; -; AFM uses the feature of systemd that completely ignores options prefixed -; with X- -; -; Consequently, options starting with X-AFM- are recorded as public data -; about the application and options starting starting with X-AFM-- are -; recorded as private data. -; -; Examples: -; -; X-AFM-description={{description}} -; -; Records the description of the unit in the field "description" -; of both the public and private object describing the unit. -; -; X-AFM--wgtdir={{:#metadata.install-dir}} -; -; Records the installation directory path in the field "wgtdir" -; of the private object only. -; -;--------------------------------------------------------------------------------- -{{#targets}} - -include(service.inc) - -include(provided.inc) - -{{/targets}} -;--------------------------------------------------------------------------------- -; End of file afm-unit.conf mode ON_AGL_DEVEL(DEVEL, RELEASE) -;--------------------------------------------------------------------------------- diff --git a/conf/generate-unit-conf/binder.inc b/conf/generate-unit-conf/binder.inc deleted file mode 100644 index 98efd4e..0000000 --- a/conf/generate-unit-conf/binder.inc +++ /dev/null @@ -1,46 +0,0 @@ -dnl vim: set filetype=sysctl.conf.m4 syntax=sysctl.conf.m4: - -IF_AGL_DEVEL -X-AFM-http-port={{:#metadata.http-port}} -ELSE -IF_NOT_CONTENT(application/vnd.agl.service) -X-AFM--http-port={{:#metadata.http-port}} -ENDIF -ENDIF - -Type=notify -ExecStart=/usr/bin/afb-daemon \ - --name afbd-TARGET \ - --rootdir={{:#metadata.install-dir}} \ - --workdir=APP_DATA_DIR/{{id}} \ -IF_AGL_DEVEL \ - --verbose \ - --verbose \ - --monitoring \ - --port={{:#metadata.http-port}} \ - --token=HELLO \ - --roothttp=ON_CONTENT(application/vnd.agl.service, ., ON_PERM(:public:no-htdocs, ., htdocs)) \ -ELSE \ - IF_CONTENT(application/vnd.agl.service) \ - --no-httpd \ - ELSE \ - --port={{:#metadata.http-port}} \ - --random-token \ - --roothttp=ON_PERM(:public:no-htdocs, ., htdocs) \ - ENDIF \ -ENDIF \ - ON_PERM(:public:applications:read, --alias=/icons:{{:#metadata.icons-dir}}) \ - {{#required-api}} \ - ON_VALUE(auto|ws, --ws-client=unix:USER_RUN_DIR/apis/ws/{{name}}) \ - ON_VALUE(dbus, --dbus-client={{name}}) \ - ON_VALUE(link, --binding=USER_RUN_DIR/apis/lib/{{name}}) \ - ON_VALUE(cloud, --cloud-client={{name}}) \ - ON_VALUE(local, --binding={{:#metadata.install-dir}}/{{name}}) \ - {{/required-api}} \ - {{#provided-api}} \ - ON_VALUE(auto|ws, --ws-server=sd:{{name}}) \ - ON_VALUE(dbus, --dbus-server={{name}}) \ - {{/provided-api}} \ - ON_CONTENT(text/html, --exec /usr/bin/web-runtime http://localhost:@p/{{content.src}}?token=@t) \ - ON_CONTENT(application/vnd.agl.native, --exec {{:#metadata.install-dir}}/{{content.src}} @p @t) - diff --git a/conf/generate-unit-conf/provided.inc b/conf/generate-unit-conf/provided.inc deleted file mode 100644 index d9c12a0..0000000 --- a/conf/generate-unit-conf/provided.inc +++ /dev/null @@ -1,35 +0,0 @@ -dnl vim: set filetype=sysctl.conf.m4 syntax=sysctl.conf.m4: -;--------------------------------------------------------------------------------- -;---- P R O V I D E D A P I S ---- -;--------------------------------------------------------------------------------- - -{{#provided-api}} -{{#value=ws|auto}} - -%begin systemd-unit - -# auto generated by wgtpkg-unit for {{:id}} version {{:version}} target {{:#target}} of {{:idaver}} - -%systemd-unit system -%systemd-unit socket afm-api-ws-{{name}}@ - -[Socket] -SmackLabel=* -ListenStream=USER_RUN_DIR/apis/ws/{{name}} -FileDescriptorName={{name}} - -Service=UNIT_NAME_SERVICE - -%nl -[Install] -WantedBy=sockets.target -%systemd-unit wanted-by agl-user-session@.service - -%end systemd-unit - - - -{{/value=ws|auto}} -{{/provided-api}} - - diff --git a/conf/generate-unit-conf/service.inc b/conf/generate-unit-conf/service.inc deleted file mode 100644 index 7e8dd40..0000000 --- a/conf/generate-unit-conf/service.inc +++ /dev/null @@ -1,115 +0,0 @@ -dnl vim: set filetype=sysctl.conf.m4 syntax=sysctl.conf.m4: -;--------------------------------------------------------------------------------- -;---- M A I N P A R T O F T H E S E R V I C E ---- -;--------------------------------------------------------------------------------- -%begin systemd-unit - -# auto generated by wgtpkg-unit for {{:id}} version {{:version}} target {{:#target}} of {{:idaver}} -%nl - -[Unit] -Description={{description}} -X-AFM-description={{description}} -X-AFM-name={{name.content}} -X-AFM-shortname={{name.short}} -X-AFM-id=TARGET -X-AFM-version={{:version}} -X-AFM-author={{author.content}} -X-AFM-author-email={{author.email}} -X-AFM-width={{width}} -X-AFM-height={{height}} -{{#icon}} -X-AFM-icon={{:#metadata.install-dir}}/{{:src}} -{{/icon}} -X-AFM--ID={{:id}} -X-AFM--target-name={{:#target}} -X-AFM--content={{content.src}} -X-AFM--type={{content.type}} -X-AFM--wgtdir={{:#metadata.install-dir}} -X-AFM--workdir=APP_DATA_DIR/{{:id}} -%nl - -Wants=sockets.target - -# Adds check to smack -ConditionSecurity=smack -%nl - -# Automatic bound to required api -{{#required-api}} -{{#value=auto|ws}} -BindsTo=UNIT_NAME_SOCKET_FOR({{name}}) -After=UNIT_NAME_SOCKET_FOR({{name}}) -{{/value=auto|ws}} -{{/required-api}} -%nl - -[Service] -EnvironmentFile=-AFM_CONFIG_DIR/unit.env.d/* -SmackProcessLabel=User::App::{{:id}} -SuccessExitStatus=0 SIGKILL - -#PAMName=su -User=%i -Slice=user-%i.slice - -#CapabilityBoundingSet= -#AmbientCapabilities= - -ON_PERM(:platform:no-oom, OOMScoreAdjust=-500) -ON_PERM(:partner:real-time, IOSchedulingClass=realtime) -ON_PERM(:public:display, SupplementaryGroups=display) -ON_PERM(:public:syscall:clock, , SystemCallFilter=~@clock) -%nl - -WorkingDirectory=-APP_DATA_DIR/{{:id}} -ExecStartPre=/bin/mkdir -p APP_DATA_DIR/{{:id}} -Environment=AFM_APP_INSTALL_DIR={{:#metadata.install-dir}} -Environment=PATH=/usr/sbin:/usr/bin:/sbin:/bin:{{:#metadata.install-dir}} -Environment=XDG_DATA_HOME=APP_DATA_DIR/{{:id}} -Environment=XDG_CONFIG_HOME=APP_DATA_DIR/{{:id}} -Environment=XDG_CACHE_HOME=APP_DATA_DIR/{{:id}} -Environment=XDG_RUNTIME_DIR=/run/user/%i -Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/%i/bus -Environment=LD_LIBRARY_PATH=$ORIGIN/lib - -IF_AGL_DEVEL -; Needed to enable debug -Environment=AFM_ID=TARGET -EnvironmentFile=-/var/run/afm-debug/TARGET.env -ENDIF - -%systemd-unit system -%systemd-unit service UNIT_NAME_BASE - -SyslogIdentifier=afbd-TARGET -StandardInput=null -StandardOutput=journal -StandardError=journal - -;--------------------------------------------------------------------------------- -;---- text/html application/vnd.agl.native application/vnd.agl.service ---- -;--------------------------------------------------------------------------------- -{{#content.type=text/html|application/vnd.agl.native|application/vnd.agl.service}} -include(binder.inc) -{{/content.type=text/html|application/vnd.agl.native|application/vnd.agl.service}} - -;--------------------------------------------------------------------------------- -;---- application/x-executable ---- -;--------------------------------------------------------------------------------- -{{#content.type=application/x-executable}} -ExecStart={{:#metadata.install-dir}}/{{content.src}} -{{/content.type=application/x-executable}} - -IF_PERM(:system:run-by-default) -;--------------------------------------------------------------------------------- -; auto start -;--------------------------------------------------------------------------------- -[Install] -WantedBy=default.target -%systemd-unit wanted-by agl-user-session@.service -ENDIF - -%end systemd-unit - - |