Skip to content

Commit

Permalink
feat: JSII_AGENT
Browse files Browse the repository at this point in the history
Language runtimes now set JSII_AGENT to include the runtime version
such as "DotNet/1.2.3.4" or "Java/1.8.44".

Fixes #324
  • Loading branch information
Elad Ben-Israel committed Nov 29, 2018
1 parent 44c3b9b commit c487eed
Show file tree
Hide file tree
Showing 13 changed files with 201 additions and 9 deletions.
12 changes: 12 additions & 0 deletions packages/jsii-calc/lib/compliance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1196,3 +1196,15 @@ export interface LoadBalancedFargateServiceProps {
*/
publicTasks?: boolean;
}

/**
* Host runtime version should be set via JSII_AGENT
*/
export class JsiiAgent {
/**
* Returns the value of the JSII_AGENT environment variable.
*/
public static get jsiiAgent(): string | undefined {
return process.env.JSII_AGENT;
}
};
28 changes: 27 additions & 1 deletion packages/jsii-calc/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -2057,6 +2057,32 @@
}
]
},
"jsii-calc.JsiiAgent": {
"assembly": "jsii-calc",
"docs": {
"comment": "Host runtime version should be set via JSII_AGENT"
},
"fqn": "jsii-calc.JsiiAgent",
"initializer": {
"initializer": true
},
"kind": "class",
"name": "JsiiAgent",
"properties": [
{
"docs": {
"comment": "Returns the value of the JSII_AGENT environment variable."
},
"immutable": true,
"name": "jsiiAgent",
"static": true,
"type": {
"optional": true,
"primitive": "string"
}
}
]
},
"jsii-calc.LoadBalancedFargateServiceProps": {
"assembly": "jsii-calc",
"datatype": true,
Expand Down Expand Up @@ -3671,5 +3697,5 @@
}
},
"version": "0.7.11",
"fingerprint": "2o7FtEirv0LpuaJ1G+wAxoHTW7FHr4U1taZ5GcVYt2o="
"fingerprint": "Wd0MWG0v1qaBoROkgYUltcLONrS4+yQU9Y+lwHTb5NA="
}
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,12 @@ public void NullShouldBeTreatedAsUndefined()
obj.ChangeMeToUndefined = null;
obj.VerifyPropertyIsUndefined();
}

[Fact(DisplayName = Prefix + nameof(JsiiAgent))]
public void JsiiAgent()
{
Assert.Equal("DotNet/" + Environment.Version.ToString(), JsiiAgent_.JsiiAgent);
}

class NumberReturner : DeputyBase, IIReturnsNumber
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public NodeProcess(IJsiiRuntimeProvider jsiiRuntimeProvider, ILoggerFactory logg
}
};

_process.StartInfo.EnvironmentVariables.Add("JSII_AGENT", "DotNet/" + Environment.Version.ToString());

_logger.LogDebug("Starting jsii runtime...");
_logger.LogDebug($"{_process.StartInfo.FileName} {_process.StartInfo.Arguments}");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import software.amazon.jsii.tests.calculator.SyncVirtualMethods;
import software.amazon.jsii.tests.calculator.UnionProperties;
import software.amazon.jsii.tests.calculator.UsesInterfaceWithProperties;
import software.amazon.jsii.tests.calculator.JsiiAgent;
import software.amazon.jsii.tests.calculator.composition.CompositeOperation;
import software.amazon.jsii.tests.calculator.lib.EnumFromScopedModule;
import software.amazon.jsii.tests.calculator.lib.IFriendly;
Expand Down Expand Up @@ -952,6 +953,11 @@ public void nullShouldBeTreatedAsUndefined() {
obj.setChangeMeToUndefined(null);
obj.verifyPropertyIsUndefined();
}

@Test
public void testJsiiAgent() {
assertEquals("Java/" + System.getProperty("java.version"), JsiiAgent.getJsiiAgent());
}

static class MulTen extends Multiply {
public MulTen(final int value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ private void startRuntimeIfNeeded() {
if (traceEnabled) {
pb.environment().put("JSII_DEBUG", "1");
}

pb.environment().put("JSII_AGENT", "Java/" + System.getProperty("java.version"));

try {
this.childProcess = pb.start();
Expand Down
4 changes: 4 additions & 0 deletions packages/jsii-kernel/test/test.kernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,10 @@ defineTest('nulls are converted to undefined - properties', async (_test, sandbo
sandbox.invoke({ objref, method: 'verifyPropertyIsUndefined' });
});

defineTest('JSII_AGENT is undefined in node.js', async (test, sandbox) => {
test.equal(sandbox.sget({ fqn: 'jsii-calc.JsiiAgent', property: 'jsiiAgent' }).value, undefined);
});

// =================================================================================================

const testNames: { [name: string]: boolean } = { };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2057,6 +2057,32 @@
}
]
},
"jsii-calc.JsiiAgent": {
"assembly": "jsii-calc",
"docs": {
"comment": "Host runtime version should be set via JSII_AGENT"
},
"fqn": "jsii-calc.JsiiAgent",
"initializer": {
"initializer": true
},
"kind": "class",
"name": "JsiiAgent",
"properties": [
{
"docs": {
"comment": "Returns the value of the JSII_AGENT environment variable."
},
"immutable": true,
"name": "jsiiAgent",
"static": true,
"type": {
"optional": true,
"primitive": "string"
}
}
]
},
"jsii-calc.LoadBalancedFargateServiceProps": {
"assembly": "jsii-calc",
"datatype": true,
Expand Down Expand Up @@ -3671,5 +3697,5 @@
}
},
"version": "0.7.11",
"fingerprint": "2o7FtEirv0LpuaJ1G+wAxoHTW7FHr4U1taZ5GcVYt2o="
"fingerprint": "Wd0MWG0v1qaBoROkgYUltcLONrS4+yQU9Y+lwHTb5NA="
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using Amazon.JSII.Runtime.Deputy;

namespace Amazon.JSII.Tests.CalculatorNamespace
{
/// <summary>Host runtime version should be set via JSII_AGENT</summary>
[JsiiClass(typeof(JsiiAgent_), "jsii-calc.JsiiAgent", "[]")]
public class JsiiAgent_ : DeputyBase
{
public JsiiAgent_(): base(new DeputyProps(new object[]{}))
{
}

protected JsiiAgent_(ByRefValue reference): base(reference)
{
}

protected JsiiAgent_(DeputyProps props): base(props)
{
}

/// <summary>Returns the value of the JSII_AGENT environment variable.</summary>
[JsiiProperty("jsiiAgent", "{\"primitive\":\"string\",\"optional\":true}")]
public static string JsiiAgent
{
get => GetStaticProperty<string>(typeof(JsiiAgent_));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ protected Class<?> resolveClass(final String fqn) throws ClassNotFoundException
case "jsii-calc.JSObjectLiteralToNative": return software.amazon.jsii.tests.calculator.JSObjectLiteralToNative.class;
case "jsii-calc.JSObjectLiteralToNativeClass": return software.amazon.jsii.tests.calculator.JSObjectLiteralToNativeClass.class;
case "jsii-calc.JavaReservedWords": return software.amazon.jsii.tests.calculator.JavaReservedWords.class;
case "jsii-calc.JsiiAgent": return software.amazon.jsii.tests.calculator.JsiiAgent.class;
case "jsii-calc.LoadBalancedFargateServiceProps": return software.amazon.jsii.tests.calculator.LoadBalancedFargateServiceProps.class;
case "jsii-calc.Multiply": return software.amazon.jsii.tests.calculator.Multiply.class;
case "jsii-calc.MutableObjectLiteral": return software.amazon.jsii.tests.calculator.MutableObjectLiteral.class;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package software.amazon.jsii.tests.calculator;

/**
* Host runtime version should be set via JSII_AGENT
*/
@javax.annotation.Generated(value = "jsii-pacmak")
@software.amazon.jsii.Jsii(module = software.amazon.jsii.tests.calculator.$Module.class, fqn = "jsii-calc.JsiiAgent")
public class JsiiAgent extends software.amazon.jsii.JsiiObject {
protected JsiiAgent(final software.amazon.jsii.JsiiObject.InitializationMode mode) {
super(mode);
}
public JsiiAgent() {
super(software.amazon.jsii.JsiiObject.InitializationMode.Jsii);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this);
}

/**
* Returns the value of the JSII_AGENT environment variable.
*/
@javax.annotation.Nullable
public static java.lang.String getJsiiAgent() {
return software.amazon.jsii.JsiiObject.jsiiStaticGet(software.amazon.jsii.tests.calculator.JsiiAgent.class, "jsiiAgent", java.lang.String.class);
}
}
41 changes: 41 additions & 0 deletions packages/jsii-pacmak/test/expected.jsii-calc/sphinx/jsii-calc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2596,6 +2596,47 @@ JavaReservedWords
:type: string
JsiiAgent
^^^^^^^^^
.. py:class:: JsiiAgent()
**Language-specific names:**
.. tabs::
.. code-tab:: c#
using Amazon.JSII.Tests.CalculatorNamespace;
.. code-tab:: java
import software.amazon.jsii.tests.calculator.JsiiAgent;
.. code-tab:: javascript
const { JsiiAgent } = require('jsii-calc');
.. code-tab:: typescript
import { JsiiAgent } from 'jsii-calc';
Host runtime version should be set via JSII_AGENT
.. py:attribute:: jsiiAgent
Returns the value of the JSII_AGENT environment variable.
:type: string *(optional)* *(readonly)* *(static)*
LoadBalancedFargateServiceProps (interface)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
28 changes: 21 additions & 7 deletions packages/jsii-runtime/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c487eed

Please sign in to comment.