repo stringlengths 7 58 | path stringlengths 12 218 | func_name stringlengths 3 140 | original_string stringlengths 73 34.1k | language stringclasses 1
value | code stringlengths 73 34.1k | code_tokens list | docstring stringlengths 3 16k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 105 339 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(int data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_long(data);
return out_any;
} | java | public Any insert(int data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_long(data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"int",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"out_any",
".",
"insert_long",
"(",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert an int data in it.
@param data The int data to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"an",
"int",
"data",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L459-L464 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(float data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_float(data);
return out_any;
} | java | public Any insert(float data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_float(data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"float",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"out_any",
".",
"insert_float",
"(",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a float data in it.
@param data The float data to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"float",
"data",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L524-L529 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(double data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_double(data);
return out_any;
} | java | public Any insert(double data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_double(data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"double",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"out_any",
".",
"insert_double",
"(",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a double data in it.
@param data The double data to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"double",
"data",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L540-L545 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(String data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_string(data);
return out_any;
} | java | public Any insert(String data) throws DevFailed
{
Any out_any = alloc_any();
out_any.insert_string(data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"String",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"out_any",
".",
"insert_string",
"(",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a String in it.
@param data The String to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"String",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L556-L561 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(byte[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarCharArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(byte[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarCharArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"byte",
"[",
"]",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarCharArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a byte array in it.
@param data The byte array to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"byte",
"array",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L572-L577 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(short[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarShortArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(short[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarShortArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"short",
"[",
"]",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarShortArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a short array in it.
@param data The short array to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"short",
"array",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L588-L593 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(int[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarLongArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(int[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarLongArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"int",
"[",
"]",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarLongArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a int array in it.
@param data The int array to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"int",
"array",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L621-L626 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(float[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarFloatArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(float[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarFloatArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"float",
"[",
"]",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarFloatArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a float array in it.
@param data The float array to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"float",
"array",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L688-L693 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(double[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarDoubleArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(double[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarDoubleArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"double",
"[",
"]",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarDoubleArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
"}"... | Create a CORBA Any object and insert a double array in it.
@param data The double array to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"double",
"array",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L704-L709 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(String[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarStringArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(String[] data) throws DevFailed
{
Any out_any = alloc_any();
DevVarStringArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"String",
"[",
"]",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarStringArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
"}"... | Create a CORBA Any object and insert a String array in it.
@param data The String array to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"String",
"array",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L720-L725 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(DevVarLongStringArray data) throws DevFailed
{
Any out_any = alloc_any();
DevVarLongStringArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(DevVarLongStringArray data) throws DevFailed
{
Any out_any = alloc_any();
DevVarLongStringArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"DevVarLongStringArray",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarLongStringArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
... | Create a CORBA Any object and insert a DevVarLongStringArray type in it.
@param data The data to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"DevVarLongStringArray",
"type",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L736-L741 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(DevVarDoubleStringArray data) throws DevFailed
{
Any out_any = alloc_any();
DevVarDoubleStringArrayHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(DevVarDoubleStringArray data) throws DevFailed
{
Any out_any = alloc_any();
DevVarDoubleStringArrayHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"DevVarDoubleStringArray",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevVarDoubleStringArrayHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
"... | Create a CORBA Any object and insert a DevVarDoubleStringArray type in it.
@param data The data to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"DevVarDoubleStringArray",
"type",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L753-L758 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.insert | public Any insert(DevState data) throws DevFailed
{
Any out_any = alloc_any();
DevStateHelper.insert(out_any,data);
return out_any;
} | java | public Any insert(DevState data) throws DevFailed
{
Any out_any = alloc_any();
DevStateHelper.insert(out_any,data);
return out_any;
} | [
"public",
"Any",
"insert",
"(",
"DevState",
"data",
")",
"throws",
"DevFailed",
"{",
"Any",
"out_any",
"=",
"alloc_any",
"(",
")",
";",
"DevStateHelper",
".",
"insert",
"(",
"out_any",
",",
"data",
")",
";",
"return",
"out_any",
";",
"}"
] | Create a CORBA Any object and insert a device state in it.
@param data The device state to be inserted into the Any object
@exception DevFailed If the Any object creation failed.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Create",
"a",
"CORBA",
"Any",
"object",
"and",
"insert",
"a",
"device",
"state",
"in",
"it",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L770-L775 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevBoolean | public boolean extract_DevBoolean(Any in) throws DevFailed
{
boolean data = false;
try
{
data = in.extract_boolean();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevBoolean");
}
return data;
} | java | public boolean extract_DevBoolean(Any in) throws DevFailed
{
boolean data = false;
try
{
data = in.extract_boolean();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevBoolean");
}
return data;
} | [
"public",
"boolean",
"extract_DevBoolean",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"boolean",
"data",
"=",
"false",
";",
"try",
"{",
"data",
"=",
"in",
".",
"extract_boolean",
"(",
")",
";",
"}",
"catch",
"(",
"BAD_OPERATION",
"ex",
")",
"{",
... | Extract a boolean data from a CORBA Any object.
@param in The CORBA Any object
@return The extracted boolean data
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"boolean",
"data",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L802-L814 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevShort | public short extract_DevShort(Any in) throws DevFailed
{
short data = 0;
try
{
data = in.extract_short();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevShort");
}
return data;
} | java | public short extract_DevShort(Any in) throws DevFailed
{
short data = 0;
try
{
data = in.extract_short();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevShort");
}
return data;
} | [
"public",
"short",
"extract_DevShort",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"short",
"data",
"=",
"0",
";",
"try",
"{",
"data",
"=",
"in",
".",
"extract_short",
"(",
")",
";",
"}",
"catch",
"(",
"BAD_OPERATION",
"ex",
")",
"{",
"throw_bad... | Extract a short data from a CORBA Any object.
@param in The CORBA Any object
@return The extracted short data
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"short",
"data",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L827-L839 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevFloat | public float extract_DevFloat(Any in) throws DevFailed
{
float data = 0;
try
{
data = in.extract_float();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevFloat");
}
return data;
} | java | public float extract_DevFloat(Any in) throws DevFailed
{
float data = 0;
try
{
data = in.extract_float();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevFloat");
}
return data;
} | [
"public",
"float",
"extract_DevFloat",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"float",
"data",
"=",
"0",
";",
"try",
"{",
"data",
"=",
"in",
".",
"extract_float",
"(",
")",
";",
"}",
"catch",
"(",
"BAD_OPERATION",
"ex",
")",
"{",
"throw_bad... | Extract a float data from a CORBA Any object.
@param in The CORBA Any object
@return The extracted float data
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"float",
"data",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L904-L916 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevDouble | public double extract_DevDouble(Any in) throws DevFailed
{
double data = 0;
try
{
data = in.extract_double();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevDouble");
}
return data;
} | java | public double extract_DevDouble(Any in) throws DevFailed
{
double data = 0;
try
{
data = in.extract_double();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevDouble");
}
return data;
} | [
"public",
"double",
"extract_DevDouble",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"double",
"data",
"=",
"0",
";",
"try",
"{",
"data",
"=",
"in",
".",
"extract_double",
"(",
")",
";",
"}",
"catch",
"(",
"BAD_OPERATION",
"ex",
")",
"{",
"throw... | Extract a double data from a CORBA Any object.
@param in The CORBA Any object
@return The extracted double data
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"double",
"data",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L929-L941 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevString | public String extract_DevString(Any in) throws DevFailed
{
String data = null;
try
{
//data = in.extract_string();
data = DevStringHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevString");
}
return data;
} | java | public String extract_DevString(Any in) throws DevFailed
{
String data = null;
try
{
//data = in.extract_string();
data = DevStringHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevString");
}
return data;
} | [
"public",
"String",
"extract_DevString",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"String",
"data",
"=",
"null",
";",
"try",
"{",
"//data = in.extract_string();",
"data",
"=",
"DevStringHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"catch",
"(... | Extract a String from a CORBA Any object.
@param in The CORBA Any object
@return The extracted String
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"String",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L954-L967 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevUShort | public short extract_DevUShort(Any in) throws DevFailed
{
short data = 0;
try
{
data = in.extract_ushort();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevUShort");
}
return data;
} | java | public short extract_DevUShort(Any in) throws DevFailed
{
short data = 0;
try
{
data = in.extract_ushort();
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevUShort");
}
return data;
} | [
"public",
"short",
"extract_DevUShort",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"short",
"data",
"=",
"0",
";",
"try",
"{",
"data",
"=",
"in",
".",
"extract_ushort",
"(",
")",
";",
"}",
"catch",
"(",
"BAD_OPERATION",
"ex",
")",
"{",
"throw_b... | Extract a DevUShort data from a CORBA Any object.
Remenber that the TANGO DevUShort type is mapped to the java int type
@param in The CORBA Any object
@return The extracted boolean data
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.h... | [
"Extract",
"a",
"DevUShort",
"data",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L981-L993 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarCharArray | public byte[] extract_DevVarCharArray(Any in) throws DevFailed
{
byte[] data = null;
try
{
data = DevVarCharArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarCharArray");
}
return data;
} | java | public byte[] extract_DevVarCharArray(Any in) throws DevFailed
{
byte[] data = null;
try
{
data = DevVarCharArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarCharArray");
}
return data;
} | [
"public",
"byte",
"[",
"]",
"extract_DevVarCharArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"byte",
"[",
"]",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarCharArrayHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"catch",
"... | Extract a byte array from a CORBA Any object.
@param in The CORBA Any object
@return The extracted byte array
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"byte",
"array",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1058-L1070 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarShortArray | public short[] extract_DevVarShortArray(Any in) throws DevFailed
{
short[] data = null;
try
{
data = DevVarShortArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarShortArray");
}
return data;
} | java | public short[] extract_DevVarShortArray(Any in) throws DevFailed
{
short[] data = null;
try
{
data = DevVarShortArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarShortArray");
}
return data;
} | [
"public",
"short",
"[",
"]",
"extract_DevVarShortArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"short",
"[",
"]",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarShortArrayHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"catch",... | Extract a short array from a CORBA Any object.
@param in The CORBA Any object
@return The extracted short array
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"short",
"array",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1083-L1095 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarFloatArray | public float[] extract_DevVarFloatArray(Any in) throws DevFailed
{
float[] data = null;
try
{
data = DevVarFloatArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarFloatArray");
}
return data;
} | java | public float[] extract_DevVarFloatArray(Any in) throws DevFailed
{
float[] data = null;
try
{
data = DevVarFloatArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarFloatArray");
}
return data;
} | [
"public",
"float",
"[",
"]",
"extract_DevVarFloatArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"float",
"[",
"]",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarFloatArrayHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"catch",... | Extract a float array from a CORBA Any object.
@param in The CORBA Any object
@return The extracted float array
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"float",
"array",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1216-L1228 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarDoubleArray | public double[] extract_DevVarDoubleArray(Any in) throws DevFailed
{
double[] data = null;
try
{
data = DevVarDoubleArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarDoubleArray");
}
return data;
} | java | public double[] extract_DevVarDoubleArray(Any in) throws DevFailed
{
double[] data = null;
try
{
data = DevVarDoubleArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarDoubleArray");
}
return data;
} | [
"public",
"double",
"[",
"]",
"extract_DevVarDoubleArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"double",
"[",
"]",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarDoubleArrayHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"cat... | Extract a double array from a CORBA Any object.
@param in The CORBA Any object
@return The extracted double array
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specification | [
"Extract",
"a",
"double",
"array",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1241-L1253 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarUShortArray | public short[] extract_DevVarUShortArray(Any in) throws DevFailed
{
short[] data = null;
try
{
data = DevVarUShortArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarUShortArray");
}
return data;
} | java | public short[] extract_DevVarUShortArray(Any in) throws DevFailed
{
short[] data = null;
try
{
data = DevVarUShortArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarUShortArray");
}
return data;
} | [
"public",
"short",
"[",
"]",
"extract_DevVarUShortArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"short",
"[",
"]",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarUShortArrayHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"catch... | Extract a DevVarUShortArray type from a CORBA Any object.
Remenber that the TANGO DevVarUShortArray type is mapped to the java short array
type
@param in The CORBA Any object
@return The extracted short array
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango... | [
"Extract",
"a",
"DevVarUShortArray",
"type",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1268-L1280 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarStringArray | public String[] extract_DevVarStringArray(Any in) throws DevFailed
{
String[] data = null;
try
{
data = DevVarStringArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarStringArray");
}
return data;
} | java | public String[] extract_DevVarStringArray(Any in) throws DevFailed
{
String[] data = null;
try
{
data = DevVarStringArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarStringArray");
}
return data;
} | [
"public",
"String",
"[",
"]",
"extract_DevVarStringArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"String",
"[",
"]",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarStringArrayHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"cat... | Extract a DevVarStringArray type from a CORBA Any object.
@param in The CORBA Any object
@return The extracted String array
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception spe... | [
"Extract",
"a",
"DevVarStringArray",
"type",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1293-L1305 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarLongStringArray | public DevVarLongStringArray extract_DevVarLongStringArray(Any in) throws DevFailed
{
DevVarLongStringArray data = null;
try
{
data = DevVarLongStringArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarLongStringArray");
}
return data;
} | java | public DevVarLongStringArray extract_DevVarLongStringArray(Any in) throws DevFailed
{
DevVarLongStringArray data = null;
try
{
data = DevVarLongStringArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarLongStringArray");
}
return data;
} | [
"public",
"DevVarLongStringArray",
"extract_DevVarLongStringArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"DevVarLongStringArray",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarLongStringArrayHelper",
".",
"extract",
"(",
"in",
")",
";",
"... | Extract a DevVarLongStringArray type from a CORBA Any object.
@param in The CORBA Any object
@return The extracted DevVarLongStringArray object
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFail... | [
"Extract",
"a",
"DevVarLongStringArray",
"type",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1318-L1330 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevVarDoubleStringArray | public DevVarDoubleStringArray extract_DevVarDoubleStringArray(Any in) throws DevFailed
{
DevVarDoubleStringArray data = null;
try
{
data = DevVarDoubleStringArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarDoubleStringArray");
}
return data;
} | java | public DevVarDoubleStringArray extract_DevVarDoubleStringArray(Any in) throws DevFailed
{
DevVarDoubleStringArray data = null;
try
{
data = DevVarDoubleStringArrayHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevVarDoubleStringArray");
}
return data;
} | [
"public",
"DevVarDoubleStringArray",
"extract_DevVarDoubleStringArray",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"DevVarDoubleStringArray",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevVarDoubleStringArrayHelper",
".",
"extract",
"(",
"in",
")",
... | Extract a DevVarDoubleStringArray type from a CORBA Any object.
@param in The CORBA Any object
@return The extracted DevVarDoubleStringArray object
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>Dev... | [
"Extract",
"a",
"DevVarDoubleStringArray",
"type",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1343-L1355 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Command.java | Command.extract_DevState | public DevState extract_DevState(Any in) throws DevFailed
{
DevState data = null;
try
{
data = DevStateHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevState");
}
return data;
} | java | public DevState extract_DevState(Any in) throws DevFailed
{
DevState data = null;
try
{
data = DevStateHelper.extract(in);
}
catch (BAD_OPERATION ex)
{
throw_bad_type("DevState");
}
return data;
} | [
"public",
"DevState",
"extract_DevState",
"(",
"Any",
"in",
")",
"throws",
"DevFailed",
"{",
"DevState",
"data",
"=",
"null",
";",
"try",
"{",
"data",
"=",
"DevStateHelper",
".",
"extract",
"(",
"in",
")",
";",
"}",
"catch",
"(",
"BAD_OPERATION",
"ex",
"... | Extract a DevState type from a CORBA Any object.
@param in The CORBA Any object
@return The extracted DevState object
@exception DevFailed If the Any object does not contains a data of the
waited type.
Click <a href="../../tango_basic/idl_html/Tango.html#DevFailed">here</a> to read
<b>DevFailed</b> exception specifica... | [
"Extract",
"a",
"DevState",
"type",
"from",
"a",
"CORBA",
"Any",
"object",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Command.java#L1368-L1380 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventImpl.java | EventImpl.pushAttributeValueEvent | protected void pushAttributeValueEvent(ZMQ.Socket eventSocket) throws DevFailed {
xlogger.entry();
eventTrigger.setError(null);
eventTrigger.updateProperties();
if (isSendEvent()) {
sendAttributeValueEvent(eventSocket);
}
xlogger.exit();
} | java | protected void pushAttributeValueEvent(ZMQ.Socket eventSocket) throws DevFailed {
xlogger.entry();
eventTrigger.setError(null);
eventTrigger.updateProperties();
if (isSendEvent()) {
sendAttributeValueEvent(eventSocket);
}
xlogger.exit();
} | [
"protected",
"void",
"pushAttributeValueEvent",
"(",
"ZMQ",
".",
"Socket",
"eventSocket",
")",
"throws",
"DevFailed",
"{",
"xlogger",
".",
"entry",
"(",
")",
";",
"eventTrigger",
".",
"setError",
"(",
"null",
")",
";",
"eventTrigger",
".",
"updateProperties",
... | Fire an event containing a value is condition is valid.
@throws DevFailed
@param eventSocket | [
"Fire",
"an",
"event",
"containing",
"a",
"value",
"is",
"condition",
"is",
"valid",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventImpl.java#L129-L137 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventImpl.java | EventImpl.pushAttributeDataReadyEvent | protected void pushAttributeDataReadyEvent(final int counter, ZMQ.Socket eventSocket)
throws DevFailed {
xlogger.entry();
try {
final AttDataReady dataReady = new AttDataReady(attribute.getName(), attribute.getTangoType(), counter);
synchronized (eventSocket) {
... | java | protected void pushAttributeDataReadyEvent(final int counter, ZMQ.Socket eventSocket)
throws DevFailed {
xlogger.entry();
try {
final AttDataReady dataReady = new AttDataReady(attribute.getName(), attribute.getTangoType(), counter);
synchronized (eventSocket) {
... | [
"protected",
"void",
"pushAttributeDataReadyEvent",
"(",
"final",
"int",
"counter",
",",
"ZMQ",
".",
"Socket",
"eventSocket",
")",
"throws",
"DevFailed",
"{",
"xlogger",
".",
"entry",
"(",
")",
";",
"try",
"{",
"final",
"AttDataReady",
"dataReady",
"=",
"new",... | Send a data ready event
@param counter a counter value
@param eventSocket
@throws DevFailed | [
"Send",
"a",
"data",
"ready",
"event"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventImpl.java#L183-L196 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventImpl.java | EventImpl.pushDevFailedEvent | protected void pushDevFailedEvent(final DevFailed devFailed, ZMQ.Socket eventSocket) throws DevFailed {
xlogger.entry();
eventTrigger.updateProperties();
eventTrigger.setError(devFailed);
if (isSendEvent()) {
try {
synchronized (eventSocket) {
... | java | protected void pushDevFailedEvent(final DevFailed devFailed, ZMQ.Socket eventSocket) throws DevFailed {
xlogger.entry();
eventTrigger.updateProperties();
eventTrigger.setError(devFailed);
if (isSendEvent()) {
try {
synchronized (eventSocket) {
... | [
"protected",
"void",
"pushDevFailedEvent",
"(",
"final",
"DevFailed",
"devFailed",
",",
"ZMQ",
".",
"Socket",
"eventSocket",
")",
"throws",
"DevFailed",
"{",
"xlogger",
".",
"entry",
"(",
")",
";",
"eventTrigger",
".",
"updateProperties",
"(",
")",
";",
"event... | Fire an event containing a DevFailed.
@param devFailed the failed object to be sent.
@param eventSocket
@throws DevFailed | [
"Fire",
"an",
"event",
"containing",
"a",
"DevFailed",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventImpl.java#L261-L275 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventImpl.java | EventImpl.isSendEvent | private boolean isSendEvent() throws DevFailed {
boolean send = false;
if ((eventTrigger.doCheck() && eventTrigger.isSendEvent()) || !eventTrigger.doCheck()) {
send = true;
}
return send;
} | java | private boolean isSendEvent() throws DevFailed {
boolean send = false;
if ((eventTrigger.doCheck() && eventTrigger.isSendEvent()) || !eventTrigger.doCheck()) {
send = true;
}
return send;
} | [
"private",
"boolean",
"isSendEvent",
"(",
")",
"throws",
"DevFailed",
"{",
"boolean",
"send",
"=",
"false",
";",
"if",
"(",
"(",
"eventTrigger",
".",
"doCheck",
"(",
")",
"&&",
"eventTrigger",
".",
"isSendEvent",
"(",
")",
")",
"||",
"!",
"eventTrigger",
... | check if send event
@return | [
"check",
"if",
"send",
"event"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventImpl.java#L282-L288 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/SetLoggingLevelCmd.java | SetLoggingLevelCmd.execute | public Any execute(DeviceImpl device, Any in_any) throws DevFailed
{
Util.out4.println("SetLoggingLevelCmd::execute(): arrived");
DevVarLongStringArray dvlsa = null;
try {
dvlsa = extract_DevVarLongStringArray(in_any);
}
catch (DevFailed df) {
Util.out3.println("SetLoggingLevelCmd::execute() ... | java | public Any execute(DeviceImpl device, Any in_any) throws DevFailed
{
Util.out4.println("SetLoggingLevelCmd::execute(): arrived");
DevVarLongStringArray dvlsa = null;
try {
dvlsa = extract_DevVarLongStringArray(in_any);
}
catch (DevFailed df) {
Util.out3.println("SetLoggingLevelCmd::execute() ... | [
"public",
"Any",
"execute",
"(",
"DeviceImpl",
"device",
",",
"Any",
"in_any",
")",
"throws",
"DevFailed",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"SetLoggingLevelCmd::execute(): arrived\"",
")",
";",
"DevVarLongStringArray",
"dvlsa",
"=",
"null",
";",
... | Executes the SetLoggingLevelCmd TANGO command | [
"Executes",
"the",
"SetLoggingLevelCmd",
"TANGO",
"command"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/SetLoggingLevelCmd.java#L55-L74 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/device/StatusImpl.java | StatusImpl.updateStatus | public String updateStatus(final DeviceState state) throws DevFailed {
xlogger.entry();
if (getStatusMethod != null) {
try {
status = (String) getStatusMethod.invoke(businessObject);
} catch (final IllegalArgumentException e) {
throw DevFailedUtils... | java | public String updateStatus(final DeviceState state) throws DevFailed {
xlogger.entry();
if (getStatusMethod != null) {
try {
status = (String) getStatusMethod.invoke(businessObject);
} catch (final IllegalArgumentException e) {
throw DevFailedUtils... | [
"public",
"String",
"updateStatus",
"(",
"final",
"DeviceState",
"state",
")",
"throws",
"DevFailed",
"{",
"xlogger",
".",
"entry",
"(",
")",
";",
"if",
"(",
"getStatusMethod",
"!=",
"null",
")",
"{",
"try",
"{",
"status",
"=",
"(",
"String",
")",
"getSt... | Get the status of the device
@return the status
@throws DevFailed | [
"Get",
"the",
"status",
"of",
"the",
"device"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/device/StatusImpl.java#L81-L109 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/device/StatusImpl.java | StatusImpl.statusMachine | public synchronized void statusMachine(final String status, final DeviceState state) throws DevFailed {
if (status != null) {
logger.debug("Changing status to: {}", status);
this.status = status;
if (setStatusMethod != null) {
try {
setStat... | java | public synchronized void statusMachine(final String status, final DeviceState state) throws DevFailed {
if (status != null) {
logger.debug("Changing status to: {}", status);
this.status = status;
if (setStatusMethod != null) {
try {
setStat... | [
"public",
"synchronized",
"void",
"statusMachine",
"(",
"final",
"String",
"status",
",",
"final",
"DeviceState",
"state",
")",
"throws",
"DevFailed",
"{",
"if",
"(",
"status",
"!=",
"null",
")",
"{",
"logger",
".",
"debug",
"(",
"\"Changing status to: {}\"",
... | Change status of the device
@param status
@throws DevFailed | [
"Change",
"status",
"of",
"the",
"device"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/device/StatusImpl.java#L117-L137 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/ServerManager.java | ServerManager.addClass | public void addClass(final String tangoClass, final Class<?> deviceClass) {
lastClass = tangoClass;
tangoClasses.put(tangoClass, deviceClass);
} | java | public void addClass(final String tangoClass, final Class<?> deviceClass) {
lastClass = tangoClass;
tangoClasses.put(tangoClass, deviceClass);
} | [
"public",
"void",
"addClass",
"(",
"final",
"String",
"tangoClass",
",",
"final",
"Class",
"<",
"?",
">",
"deviceClass",
")",
"{",
"lastClass",
"=",
"tangoClass",
";",
"tangoClasses",
".",
"put",
"(",
"tangoClass",
",",
"deviceClass",
")",
";",
"}"
] | Add a class to the server.
@param tangoClass
The class name as defined in the tango database
@param deviceClass
The class that define a device with {@link Device} | [
"Add",
"a",
"class",
"to",
"the",
"server",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/ServerManager.java#L135-L138 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/ServerManager.java | ServerManager.stop | public void stop() throws DevFailed {
try {
if (isStarted.get()) {
tangoClasses.clear();
if (tangoExporter != null) {
tangoExporter.clearClass();
tangoExporter.unexportAll();
}
TangoCacheManager.s... | java | public void stop() throws DevFailed {
try {
if (isStarted.get()) {
tangoClasses.clear();
if (tangoExporter != null) {
tangoExporter.clearClass();
tangoExporter.unexportAll();
}
TangoCacheManager.s... | [
"public",
"void",
"stop",
"(",
")",
"throws",
"DevFailed",
"{",
"try",
"{",
"if",
"(",
"isStarted",
".",
"get",
"(",
")",
")",
"{",
"tangoClasses",
".",
"clear",
"(",
")",
";",
"if",
"(",
"tangoExporter",
"!=",
"null",
")",
"{",
"tangoExporter",
".",... | Stop the server and clear all
@throws DevFailed | [
"Stop",
"the",
"server",
"and",
"clear",
"all"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/ServerManager.java#L278-L297 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/ServerManager.java | ServerManager.checkArgs | private void checkArgs(final String[] argv) throws DevFailed {
if (argv.length < 1) {
throw DevFailedUtils.newDevFailed(INIT_ERROR, getUsage());
}
instanceName = argv[0];
useDb = true;
DatabaseFactory.setUseDb(true);
List<String> noDbDevices = new ArrayList<St... | java | private void checkArgs(final String[] argv) throws DevFailed {
if (argv.length < 1) {
throw DevFailedUtils.newDevFailed(INIT_ERROR, getUsage());
}
instanceName = argv[0];
useDb = true;
DatabaseFactory.setUseDb(true);
List<String> noDbDevices = new ArrayList<St... | [
"private",
"void",
"checkArgs",
"(",
"final",
"String",
"[",
"]",
"argv",
")",
"throws",
"DevFailed",
"{",
"if",
"(",
"argv",
".",
"length",
"<",
"1",
")",
"{",
"throw",
"DevFailedUtils",
".",
"newDevFailed",
"(",
"INIT_ERROR",
",",
"getUsage",
"(",
")",... | Check the command line arguments. The first one is mandatory and is the
server name. A -v option is authorized with an optional argument.
@param argv
@throws DevFailed | [
"Check",
"the",
"command",
"line",
"arguments",
".",
"The",
"first",
"one",
"is",
"mandatory",
"and",
"is",
"the",
"server",
"name",
".",
"A",
"-",
"v",
"option",
"is",
"authorized",
"with",
"an",
"optional",
"argument",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/ServerManager.java#L316-L345 | train |
tango-controls/JTango | client/src/main/java/fr/soleil/tango/clientapi/TangoCommand.java | TangoCommand.executeExtractList | public <T> List<T> executeExtractList(final Class<T> clazz, final Object value) throws DevFailed {
final Object r = command.executeExtract(value);
return extractList(TypeConversionUtil.castToType(clazz, r));
} | java | public <T> List<T> executeExtractList(final Class<T> clazz, final Object value) throws DevFailed {
final Object r = command.executeExtract(value);
return extractList(TypeConversionUtil.castToType(clazz, r));
} | [
"public",
"<",
"T",
">",
"List",
"<",
"T",
">",
"executeExtractList",
"(",
"final",
"Class",
"<",
"T",
">",
"clazz",
",",
"final",
"Object",
"value",
")",
"throws",
"DevFailed",
"{",
"final",
"Object",
"r",
"=",
"command",
".",
"executeExtract",
"(",
"... | Execute a command with argin which is a single value
@param <T>
@param clazz
@param value
@return
@throws DevFailed | [
"Execute",
"a",
"command",
"with",
"argin",
"which",
"is",
"a",
"single",
"value"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/client/src/main/java/fr/soleil/tango/clientapi/TangoCommand.java#L190-L193 | train |
tango-controls/JTango | client/src/main/java/fr/soleil/tango/clientapi/TangoCommand.java | TangoCommand.executeExtractList | public <T> List<T> executeExtractList(final Class<T> clazz, final Object... value) throws DevFailed {
final Object result = command.executeExtract(value);
return extractList(TypeConversionUtil.castToArray(clazz, result));
} | java | public <T> List<T> executeExtractList(final Class<T> clazz, final Object... value) throws DevFailed {
final Object result = command.executeExtract(value);
return extractList(TypeConversionUtil.castToArray(clazz, result));
} | [
"public",
"<",
"T",
">",
"List",
"<",
"T",
">",
"executeExtractList",
"(",
"final",
"Class",
"<",
"T",
">",
"clazz",
",",
"final",
"Object",
"...",
"value",
")",
"throws",
"DevFailed",
"{",
"final",
"Object",
"result",
"=",
"command",
".",
"executeExtrac... | Execute a command with argin which is an array
@param <T>
@param clazz
@param value
@return
@throws DevFailed | [
"Execute",
"a",
"command",
"with",
"argin",
"which",
"is",
"an",
"array"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/client/src/main/java/fr/soleil/tango/clientapi/TangoCommand.java#L204-L207 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/attribute/AttributeConfiguration.java | AttributeConfiguration.setType | public void setType(final Class<?> type) throws DevFailed {
if (Enum.class.isAssignableFrom(type)) {
this.type = AttributeTangoType.getTypeFromClass(type).getType();
} else {
this.type = type;
}
enumType = AttributeTangoType.getTypeFromClass(type);
tangoTy... | java | public void setType(final Class<?> type) throws DevFailed {
if (Enum.class.isAssignableFrom(type)) {
this.type = AttributeTangoType.getTypeFromClass(type).getType();
} else {
this.type = type;
}
enumType = AttributeTangoType.getTypeFromClass(type);
tangoTy... | [
"public",
"void",
"setType",
"(",
"final",
"Class",
"<",
"?",
">",
"type",
")",
"throws",
"DevFailed",
"{",
"if",
"(",
"Enum",
".",
"class",
".",
"isAssignableFrom",
"(",
"type",
")",
")",
"{",
"this",
".",
"type",
"=",
"AttributeTangoType",
".",
"getT... | Set the attribute type with Java class. Can be scalar, array or matrix
@param type
@throws DevFailed | [
"Set",
"the",
"attribute",
"type",
"with",
"Java",
"class",
".",
"Can",
"be",
"scalar",
"array",
"or",
"matrix"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/attribute/AttributeConfiguration.java#L137-L157 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/attribute/AttributeConfiguration.java | AttributeConfiguration.setTangoType | public void setTangoType(final int tangoType, final AttrDataFormat format) throws DevFailed {
setFormat(format);
this.tangoType = tangoType;
enumType = AttributeTangoType.getTypeFromTango(tangoType);
if (format.equals(AttrDataFormat.SCALAR)) {
type = enumType.getType();
... | java | public void setTangoType(final int tangoType, final AttrDataFormat format) throws DevFailed {
setFormat(format);
this.tangoType = tangoType;
enumType = AttributeTangoType.getTypeFromTango(tangoType);
if (format.equals(AttrDataFormat.SCALAR)) {
type = enumType.getType();
... | [
"public",
"void",
"setTangoType",
"(",
"final",
"int",
"tangoType",
",",
"final",
"AttrDataFormat",
"format",
")",
"throws",
"DevFailed",
"{",
"setFormat",
"(",
"format",
")",
";",
"this",
".",
"tangoType",
"=",
"tangoType",
";",
"enumType",
"=",
"AttributeTan... | Set the attribute type with Tango type.
@param tangoType
@throws DevFailed
@see TangoConst for possible values | [
"Set",
"the",
"attribute",
"type",
"with",
"Tango",
"type",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/attribute/AttributeConfiguration.java#L245-L256 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.addAttribute | public synchronized void addAttribute(final AttributeImpl attribute) throws DevFailed {
// add attribute only if it doesn't exists
AttributeImpl result = null;
for (final AttributeImpl attr : attributeList) {
if (attr.getName().equalsIgnoreCase(attribute.getName())) {
... | java | public synchronized void addAttribute(final AttributeImpl attribute) throws DevFailed {
// add attribute only if it doesn't exists
AttributeImpl result = null;
for (final AttributeImpl attr : attributeList) {
if (attr.getName().equalsIgnoreCase(attribute.getName())) {
... | [
"public",
"synchronized",
"void",
"addAttribute",
"(",
"final",
"AttributeImpl",
"attribute",
")",
"throws",
"DevFailed",
"{",
"// add attribute only if it doesn't exists",
"AttributeImpl",
"result",
"=",
"null",
";",
"for",
"(",
"final",
"AttributeImpl",
"attr",
":",
... | Add an attribute to the device
@param attribute
@throws DevFailed | [
"Add",
"an",
"attribute",
"to",
"the",
"device"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L521-L539 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.removeAttribute | public synchronized void removeAttribute(final AttributeImpl attribute) throws DevFailed {
if (attribute.getName().equalsIgnoreCase(STATUS_NAME) || attribute.getName().equalsIgnoreCase(STATE_NAME)) {
return;
}
pollingManager.removeAttributePolling(attribute.getName());
status... | java | public synchronized void removeAttribute(final AttributeImpl attribute) throws DevFailed {
if (attribute.getName().equalsIgnoreCase(STATUS_NAME) || attribute.getName().equalsIgnoreCase(STATE_NAME)) {
return;
}
pollingManager.removeAttributePolling(attribute.getName());
status... | [
"public",
"synchronized",
"void",
"removeAttribute",
"(",
"final",
"AttributeImpl",
"attribute",
")",
"throws",
"DevFailed",
"{",
"if",
"(",
"attribute",
".",
"getName",
"(",
")",
".",
"equalsIgnoreCase",
"(",
"STATUS_NAME",
")",
"||",
"attribute",
".",
"getName... | remove an attribute of the device. Not possible to remove State or Status
@param attribute
@throws DevFailed | [
"remove",
"an",
"attribute",
"of",
"the",
"device",
".",
"Not",
"possible",
"to",
"remove",
"State",
"or",
"Status"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L547-L555 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.checkInitialization | private synchronized void checkInitialization() throws DevFailed {
if (initImpl != null) {
isInitializing = initImpl.isInitInProgress();
} else {
isInitializing = false;
}
if (isInitializing) {
throw DevFailedUtils.newDevFailed("CONCURRENT_ERROR", name... | java | private synchronized void checkInitialization() throws DevFailed {
if (initImpl != null) {
isInitializing = initImpl.isInitInProgress();
} else {
isInitializing = false;
}
if (isInitializing) {
throw DevFailedUtils.newDevFailed("CONCURRENT_ERROR", name... | [
"private",
"synchronized",
"void",
"checkInitialization",
"(",
")",
"throws",
"DevFailed",
"{",
"if",
"(",
"initImpl",
"!=",
"null",
")",
"{",
"isInitializing",
"=",
"initImpl",
".",
"isInitInProgress",
"(",
")",
";",
"}",
"else",
"{",
"isInitializing",
"=",
... | Check if an init is in progress
@throws DevFailed if init is init progress | [
"Check",
"if",
"an",
"init",
"is",
"in",
"progress"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L785-L794 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.info | @Override
public DevInfo info() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Operation info");
final DevInfo info = new DevInfo();
info.dev_class = className;
info.doc_url = "Doc URL = http://www.tango-controls.org"... | java | @Override
public DevInfo info() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Operation info");
final DevInfo info = new DevInfo();
info.dev_class = className;
info.doc_url = "Doc URL = http://www.tango-controls.org"... | [
"@",
"Override",
"public",
"DevInfo",
"info",
"(",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"deviceMonitoring",
".",
"startRequest",
"(",
"\"Operation info\"",
")",
";"... | Get info of this device in IDL1
@return info
@throws DevFailed | [
"Get",
"info",
"of",
"this",
"device",
"in",
"IDL1"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L802-L815 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.info_3 | @Override
public DevInfo_3 info_3() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Operation info_3");
final DevInfo_3 info3 = new DevInfo_3();
final DevInfo info = info();
info3.dev_class = info.dev_class;
in... | java | @Override
public DevInfo_3 info_3() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Operation info_3");
final DevInfo_3 info3 = new DevInfo_3();
final DevInfo info = info();
info3.dev_class = info.dev_class;
in... | [
"@",
"Override",
"public",
"DevInfo_3",
"info_3",
"(",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"deviceMonitoring",
".",
"startRequest",
"(",
"\"Operation info_3\"",
")",... | Get info of this device in IDL3
@return info
@throws DevFailed | [
"Get",
"info",
"of",
"this",
"device",
"in",
"IDL3"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L823-L838 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.ping | @Override
public void ping() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Operation ping");
xlogger.exit();
} | java | @Override
public void ping() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Operation ping");
xlogger.exit();
} | [
"@",
"Override",
"public",
"void",
"ping",
"(",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"deviceMonitoring",
".",
"startRequest",
"(",
"\"Operation ping\"",
")",
";",
... | Dummy method to check if this device is responding
@throws DevFailed | [
"Dummy",
"method",
"to",
"check",
"if",
"this",
"device",
"is",
"responding"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L845-L851 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.black_box | @Override
public String[] black_box(final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// deviceMonitoring.addRequest("black_box");
if (maxSize <= 0) {
throw DevFailedUtils.newDevFailed(ExceptionMessages.BLACK_BOX_ARG, maxSize + " is not... | java | @Override
public String[] black_box(final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// deviceMonitoring.addRequest("black_box");
if (maxSize <= 0) {
throw DevFailedUtils.newDevFailed(ExceptionMessages.BLACK_BOX_ARG, maxSize + " is not... | [
"@",
"Override",
"public",
"String",
"[",
"]",
"black_box",
"(",
"final",
"int",
"maxSize",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"// deviceMonitoring.addRequest(\"bla... | Get the clients' requests history
@param maxSize The maximum depth of history
@return the request history | [
"Get",
"the",
"clients",
"requests",
"history"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L875-L885 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.description | @Override
public String description() {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Attribute description requested ");
String desc = "A TANGO device";
if (name.equalsIgnoreCase(ServerManager.getInstance().getAdminDeviceName())) {
... | java | @Override
public String description() {
MDC.setContextMap(contextMap);
xlogger.entry();
deviceMonitoring.startRequest("Attribute description requested ");
String desc = "A TANGO device";
if (name.equalsIgnoreCase(ServerManager.getInstance().getAdminDeviceName())) {
... | [
"@",
"Override",
"public",
"String",
"description",
"(",
")",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"deviceMonitoring",
".",
"startRequest",
"(",
"\"Attribute description requested \"",
")",
";",
... | Get a description of this device
@return description | [
"Get",
"a",
"description",
"of",
"this",
"device"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L892-L902 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.name | @Override
public String name() {
MDC.setContextMap(contextMap);
deviceMonitoring.startRequest("Device name");
xlogger.entry();
return name;
} | java | @Override
public String name() {
MDC.setContextMap(contextMap);
deviceMonitoring.startRequest("Device name");
xlogger.entry();
return name;
} | [
"@",
"Override",
"public",
"String",
"name",
"(",
")",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"deviceMonitoring",
".",
"startRequest",
"(",
"\"Device name\"",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"return",
"name",
";",
... | Get the name of the device
@return name | [
"Get",
"the",
"name",
"of",
"the",
"device"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L909-L915 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.read_attribute_history_2 | @Override
public DevAttrHistory[] read_attribute_history_2(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("read_attribute_history_2");
// TODO read_attribut... | java | @Override
public DevAttrHistory[] read_attribute_history_2(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("read_attribute_history_2");
// TODO read_attribut... | [
"@",
"Override",
"public",
"DevAttrHistory",
"[",
"]",
"read_attribute_history_2",
"(",
"final",
"String",
"attributeName",
",",
"final",
"int",
"maxSize",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",... | read an attribute history. IDL 2 version. The history is filled only be
attribute polling
@param attributeName The attribute to retrieve
@param maxSize The history maximum size returned
@throws DevFailed | [
"read",
"an",
"attribute",
"history",
".",
"IDL",
"2",
"version",
".",
"The",
"history",
"is",
"filled",
"only",
"be",
"attribute",
"polling"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L925-L933 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.read_attribute_history_3 | @Override
public DevAttrHistory_3[] read_attribute_history_3(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// TODO read_attribute_history_3
checkInitialization();
deviceMonitoring.startRequest("read_attribute... | java | @Override
public DevAttrHistory_3[] read_attribute_history_3(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// TODO read_attribute_history_3
checkInitialization();
deviceMonitoring.startRequest("read_attribute... | [
"@",
"Override",
"public",
"DevAttrHistory_3",
"[",
"]",
"read_attribute_history_3",
"(",
"final",
"String",
"attributeName",
",",
"final",
"int",
"maxSize",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".... | read an attribute history. IDL 3 version. The history is filled only be
attribute polling
@param attributeName The attribute to retrieve
@param maxSize The history maximum size returned
@throws DevFailed | [
"read",
"an",
"attribute",
"history",
".",
"IDL",
"3",
"version",
".",
"The",
"history",
"is",
"filled",
"only",
"be",
"attribute",
"polling"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L943-L951 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.read_attribute_history_4 | @Override
public DevAttrHistory_4 read_attribute_history_4(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("read_attribute_history_4");
DevAttrHistory_4 resu... | java | @Override
public DevAttrHistory_4 read_attribute_history_4(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("read_attribute_history_4");
DevAttrHistory_4 resu... | [
"@",
"Override",
"public",
"DevAttrHistory_4",
"read_attribute_history_4",
"(",
"final",
"String",
"attributeName",
",",
"final",
"int",
"maxSize",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
... | read an attribute history. IDL 4 version. The history is filled only be
attribute polling
@param attributeName The attribute to retrieve
@param maxSize The history maximum size returned
@throws DevFailed | [
"read",
"an",
"attribute",
"history",
".",
"IDL",
"4",
"version",
".",
"The",
"history",
"is",
"filled",
"only",
"be",
"attribute",
"polling"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L961-L985 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.read_attributes | @Override
public AttributeValue[] read_attributes(final String[] attributeNames) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
if (attributeNames.length != 1 || !attributeNames[0].equalsIgnoreCase(DeviceImpl.STATE_NAME)
&& !attributeNames[0].equalsIgnoreC... | java | @Override
public AttributeValue[] read_attributes(final String[] attributeNames) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
if (attributeNames.length != 1 || !attributeNames[0].equalsIgnoreCase(DeviceImpl.STATE_NAME)
&& !attributeNames[0].equalsIgnoreC... | [
"@",
"Override",
"public",
"AttributeValue",
"[",
"]",
"read_attributes",
"(",
"final",
"String",
"[",
"]",
"attributeNames",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
... | Read some attributes. IDL 1 version.
@param attributeNames The attributes names
@return The read results.
@throws DevFailed | [
"Read",
"some",
"attributes",
".",
"IDL",
"1",
"version",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L994-L1022 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.read_attributes_4 | @Override
public AttributeValue_4[] read_attributes_4(final String[] names, final DevSource source, final ClntIdent clIdent)
throws DevFailed {
// final Profiler profilerPeriod = new Profiler("period");
// profilerPeriod.start(Arrays.toString(names));
MDC.setContextMap(contextMap... | java | @Override
public AttributeValue_4[] read_attributes_4(final String[] names, final DevSource source, final ClntIdent clIdent)
throws DevFailed {
// final Profiler profilerPeriod = new Profiler("period");
// profilerPeriod.start(Arrays.toString(names));
MDC.setContextMap(contextMap... | [
"@",
"Override",
"public",
"AttributeValue_4",
"[",
"]",
"read_attributes_4",
"(",
"final",
"String",
"[",
"]",
"names",
",",
"final",
"DevSource",
"source",
",",
"final",
"ClntIdent",
"clIdent",
")",
"throws",
"DevFailed",
"{",
"// final Profiler profilerPeriod = n... | Read some attributes. IDL 4 version.
@param names The attributes names
@param source the device source (CACHE, DEV or CACHE_DEV)
@param clIdent the client ID
@return The read results.
@throws DevFailed | [
"Read",
"some",
"attributes",
".",
"IDL",
"4",
"version",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1114-L1152 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.write_attributes | @Override
public void write_attributes(final AttributeValue[] values) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("write_attributes");
clientIdentity.set(null);
final String[] names = new Stri... | java | @Override
public void write_attributes(final AttributeValue[] values) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("write_attributes");
clientIdentity.set(null);
final String[] names = new Stri... | [
"@",
"Override",
"public",
"void",
"write_attributes",
"(",
"final",
"AttributeValue",
"[",
"]",
"values",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"checkInitialization",... | Write some attributes. IDL 1 version
@param values a container for attribute values.
@throws DevFailed | [
"Write",
"some",
"attributes",
".",
"IDL",
"1",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1217-L1245 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.write_attributes_4 | @Override
public void write_attributes_4(final AttributeValue_4[] values, final ClntIdent clIdent) throws MultiDevFailed,
DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
final String[] names = new String[values.length];
for (int ... | java | @Override
public void write_attributes_4(final AttributeValue_4[] values, final ClntIdent clIdent) throws MultiDevFailed,
DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
final String[] names = new String[values.length];
for (int ... | [
"@",
"Override",
"public",
"void",
"write_attributes_4",
"(",
"final",
"AttributeValue_4",
"[",
"]",
"values",
",",
"final",
"ClntIdent",
"clIdent",
")",
"throws",
"MultiDevFailed",
",",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",... | Write some attributes. IDL 4 version
@param values a container for attribute values.
@param clIdent the client ID
@throws DevFailed | [
"Write",
"some",
"attributes",
".",
"IDL",
"4",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1290-L1322 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.command_list_query | @Override
public DevCmdInfo[] command_list_query() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// checkInitialization();
deviceMonitoring.startRequest("command_list_query");
// Retrieve number of command and allocate memory to send back info
fin... | java | @Override
public DevCmdInfo[] command_list_query() throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// checkInitialization();
deviceMonitoring.startRequest("command_list_query");
// Retrieve number of command and allocate memory to send back info
fin... | [
"@",
"Override",
"public",
"DevCmdInfo",
"[",
"]",
"command_list_query",
"(",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"// checkInitialization();",
"deviceMonitoring",
".",... | Query all commands details. IDL 1 version
@return the commands details of this device
@throws DevFailed | [
"Query",
"all",
"commands",
"details",
".",
"IDL",
"1",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1451-L1474 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.command_query | @Override
public DevCmdInfo command_query(final String commandName) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// checkInitialization();
deviceMonitoring.startRequest("command_query " + commandName);
final CommandImpl foundCmd = getCommand(commandName)... | java | @Override
public DevCmdInfo command_query(final String commandName) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// checkInitialization();
deviceMonitoring.startRequest("command_query " + commandName);
final CommandImpl foundCmd = getCommand(commandName)... | [
"@",
"Override",
"public",
"DevCmdInfo",
"command_query",
"(",
"final",
"String",
"commandName",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"// checkInitialization();",
"devi... | Query a command details. IDL 1 version.
@param commandName the command name
@return the command details of this device
@throws DevFailed | [
"Query",
"a",
"command",
"details",
".",
"IDL",
"1",
"version",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1515-L1530 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.command_inout | @Override
public Any command_inout(final String command, final Any argin) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
if (!command.equalsIgnoreCase(DeviceImpl.STATE_NAME) && !command.equalsIgnoreCase(DeviceImpl.STATUS_NAME)) {
checkInitialization();
... | java | @Override
public Any command_inout(final String command, final Any argin) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
if (!command.equalsIgnoreCase(DeviceImpl.STATE_NAME) && !command.equalsIgnoreCase(DeviceImpl.STATUS_NAME)) {
checkInitialization();
... | [
"@",
"Override",
"public",
"Any",
"command_inout",
"(",
"final",
"String",
"command",
",",
"final",
"Any",
"argin",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"if",
"... | Execute a command. IDL 1 version
@param command command name
@param argin command parameters
@return command result
@throws DevFailed | [
"Execute",
"a",
"command",
".",
"IDL",
"1",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1565-L1591 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.command_inout_4 | @Override
public Any command_inout_4(final String commandName, final Any argin, final DevSource source,
final ClntIdent clIdent) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry(commandName);
if (!commandName.equalsIgnoreCase(DeviceImpl.STATE_NAM... | java | @Override
public Any command_inout_4(final String commandName, final Any argin, final DevSource source,
final ClntIdent clIdent) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry(commandName);
if (!commandName.equalsIgnoreCase(DeviceImpl.STATE_NAM... | [
"@",
"Override",
"public",
"Any",
"command_inout_4",
"(",
"final",
"String",
"commandName",
",",
"final",
"Any",
"argin",
",",
"final",
"DevSource",
"source",
",",
"final",
"ClntIdent",
"clIdent",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"... | Execute a command. IDL 4 version
@param commandName command name
@param argin command parameters
@param source the device source (CACHE, DEV or CACHE_DEV)
@param clIdent client id
@return command result
@throws DevFailed | [
"Execute",
"a",
"command",
".",
"IDL",
"4",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1638-L1670 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.command_inout_history_2 | @Override
public DevCmdHistory[] command_inout_history_2(final String commandName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("command_inout_history_2 " + commandName);
// TODO com... | java | @Override
public DevCmdHistory[] command_inout_history_2(final String commandName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("command_inout_history_2 " + commandName);
// TODO com... | [
"@",
"Override",
"public",
"DevCmdHistory",
"[",
"]",
"command_inout_history_2",
"(",
"final",
"String",
"commandName",
",",
"final",
"int",
"maxSize",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"... | Command history. IDL 2 version.
@param commandName the command name
@param maxSize the maximum depth of history
@return the history
@throws DevFailed | [
"Command",
"history",
".",
"IDL",
"2",
"version",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1680-L1689 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.command_inout_history_4 | @Override
public DevCmdHistory_4 command_inout_history_4(final String commandName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
final long request = deviceMonitoring.startRequest("command_inout_history_4 " + commandName)... | java | @Override
public DevCmdHistory_4 command_inout_history_4(final String commandName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
final long request = deviceMonitoring.startRequest("command_inout_history_4 " + commandName)... | [
"@",
"Override",
"public",
"DevCmdHistory_4",
"command_inout_history_4",
"(",
"final",
"String",
"commandName",
",",
"final",
"int",
"maxSize",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(... | Command history. IDL 4 version.
@param commandName the command name
@param maxSize the maximum depth of history
@return the history
@throws DevFailed | [
"Command",
"history",
".",
"IDL",
"4",
"version",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1699-L1723 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.get_attribute_config_5 | @Override
public AttributeConfig_5[] get_attribute_config_5(final String[] attributeNames) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry(Arrays.toString(attributeNames));
// checkInitialization();
deviceMonitoring.startRequest("get_attribute_config_5 " + Arrays.toSt... | java | @Override
public AttributeConfig_5[] get_attribute_config_5(final String[] attributeNames) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry(Arrays.toString(attributeNames));
// checkInitialization();
deviceMonitoring.startRequest("get_attribute_config_5 " + Arrays.toSt... | [
"@",
"Override",
"public",
"AttributeConfig_5",
"[",
"]",
"get_attribute_config_5",
"(",
"final",
"String",
"[",
"]",
"attributeNames",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
"Ar... | Get attributes config. IDL5 version
@param attributeNames the attribute names or "All attributes"
@return the attribute configs
@throws DevFailed | [
"Get",
"attributes",
"config",
".",
"IDL5",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1796-L1839 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.get_attribute_config | @Override
public AttributeConfig[] get_attribute_config(final String[] attributeNames) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// checkInitialization();
deviceMonitoring.startRequest("get_attribute_config " + Arrays.toString(attributeNames));
// che... | java | @Override
public AttributeConfig[] get_attribute_config(final String[] attributeNames) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
// checkInitialization();
deviceMonitoring.startRequest("get_attribute_config " + Arrays.toString(attributeNames));
// che... | [
"@",
"Override",
"public",
"AttributeConfig",
"[",
"]",
"get_attribute_config",
"(",
"final",
"String",
"[",
"]",
"attributeNames",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
... | Get attributes config. IDL1 version
@param attributeNames the attribute names or "All attributes"
@return the attribute configs
@throws DevFailed | [
"Get",
"attributes",
"config",
".",
"IDL1",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1948-L1981 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.set_attribute_config_5 | @Override
public void set_attribute_config_5(final AttributeConfig_5[] newConf, final ClntIdent clIdent) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
clientIdentity.set(clIdent);
if (!name.equalsIgnoreCase(getAdminDeviceName())) {
... | java | @Override
public void set_attribute_config_5(final AttributeConfig_5[] newConf, final ClntIdent clIdent) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
clientIdentity.set(clIdent);
if (!name.equalsIgnoreCase(getAdminDeviceName())) {
... | [
"@",
"Override",
"public",
"void",
"set_attribute_config_5",
"(",
"final",
"AttributeConfig_5",
"[",
"]",
"newConf",
",",
"final",
"ClntIdent",
"clIdent",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
... | Set some attribute configs. IDL5 version
@param newConf the new configurations
@param clIdent client id
@throws DevFailed | [
"Set",
"some",
"attribute",
"configs",
".",
"IDL5",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L1991-L2027 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.set_attribute_config_4 | @Override
public void set_attribute_config_4(final AttributeConfig_3[] newConf, final ClntIdent clIdent) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
clientIdentity.set(clIdent);
if (!name.equalsIgnoreCase(getAdminDeviceName())) {
... | java | @Override
public void set_attribute_config_4(final AttributeConfig_3[] newConf, final ClntIdent clIdent) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
clientIdentity.set(clIdent);
if (!name.equalsIgnoreCase(getAdminDeviceName())) {
... | [
"@",
"Override",
"public",
"void",
"set_attribute_config_4",
"(",
"final",
"AttributeConfig_3",
"[",
"]",
"newConf",
",",
"final",
"ClntIdent",
"clIdent",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
... | Set some attribute configs. IDL4 version
@param newConf the new configurations
@param clIdent client id
@throws DevFailed | [
"Set",
"some",
"attribute",
"configs",
".",
"IDL4",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L2036-L2049 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.set_attribute_config_3 | @Override
public void set_attribute_config_3(final AttributeConfig_3[] newConf) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("set_attribute_config_3");
for (final AttributeConfig_3 attributeConfig : ne... | java | @Override
public void set_attribute_config_3(final AttributeConfig_3[] newConf) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("set_attribute_config_3");
for (final AttributeConfig_3 attributeConfig : ne... | [
"@",
"Override",
"public",
"void",
"set_attribute_config_3",
"(",
"final",
"AttributeConfig_3",
"[",
"]",
"newConf",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
"(",
")",
";",
"checkInitia... | Set some attribute configs. IDL3 version
@param newConf the new configurations
@throws DevFailed | [
"Set",
"some",
"attribute",
"configs",
".",
"IDL3",
"version"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L2057-L2081 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.addCommand | public synchronized void addCommand(final CommandImpl command) throws DevFailed {
CommandImpl result = null;
for (final CommandImpl cmd : commandList) {
if (command.getName().equalsIgnoreCase(cmd.getName())) {
result = command;
break;
}
}
... | java | public synchronized void addCommand(final CommandImpl command) throws DevFailed {
CommandImpl result = null;
for (final CommandImpl cmd : commandList) {
if (command.getName().equalsIgnoreCase(cmd.getName())) {
result = command;
break;
}
}
... | [
"public",
"synchronized",
"void",
"addCommand",
"(",
"final",
"CommandImpl",
"command",
")",
"throws",
"DevFailed",
"{",
"CommandImpl",
"result",
"=",
"null",
";",
"for",
"(",
"final",
"CommandImpl",
"cmd",
":",
"commandList",
")",
"{",
"if",
"(",
"command",
... | add a command
@param command the new command
@throws DevFailed | [
"add",
"a",
"command"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L2128-L2145 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/servant/DeviceImpl.java | DeviceImpl.read_attribute_history_5 | @Override
public DevAttrHistory_5 read_attribute_history_5(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("read_attribute_history_5");
DevAttrHistory_5 resu... | java | @Override
public DevAttrHistory_5 read_attribute_history_5(final String attributeName, final int maxSize) throws DevFailed {
MDC.setContextMap(contextMap);
xlogger.entry();
checkInitialization();
deviceMonitoring.startRequest("read_attribute_history_5");
DevAttrHistory_5 resu... | [
"@",
"Override",
"public",
"DevAttrHistory_5",
"read_attribute_history_5",
"(",
"final",
"String",
"attributeName",
",",
"final",
"int",
"maxSize",
")",
"throws",
"DevFailed",
"{",
"MDC",
".",
"setContextMap",
"(",
"contextMap",
")",
";",
"xlogger",
".",
"entry",
... | read an attribute history. IDL 5 version. The history is filled only be
attribute polling
@param attributeName The attribute to retrieve
@param maxSize The history maximum size returned
@throws DevFailed | [
"read",
"an",
"attribute",
"history",
".",
"IDL",
"5",
"version",
".",
"The",
"history",
"is",
"filled",
"only",
"be",
"attribute",
"polling"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/servant/DeviceImpl.java#L2540-L2571 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventManager.java | EventManager.checkEventCriteria | public static void checkEventCriteria(final AttributeImpl attribute, final EventType eventType) throws DevFailed {
switch (eventType) {
case CHANGE_EVENT:
ChangeEventTrigger.checkEventCriteria(attribute);
break;
case ARCHIVE_EVENT:
ArchiveE... | java | public static void checkEventCriteria(final AttributeImpl attribute, final EventType eventType) throws DevFailed {
switch (eventType) {
case CHANGE_EVENT:
ChangeEventTrigger.checkEventCriteria(attribute);
break;
case ARCHIVE_EVENT:
ArchiveE... | [
"public",
"static",
"void",
"checkEventCriteria",
"(",
"final",
"AttributeImpl",
"attribute",
",",
"final",
"EventType",
"eventType",
")",
"throws",
"DevFailed",
"{",
"switch",
"(",
"eventType",
")",
"{",
"case",
"CHANGE_EVENT",
":",
"ChangeEventTrigger",
".",
"ch... | Check if event criteria are set for change and archive events
@param attribute the specified attribute
@param eventType the specified event type
@throws DevFailed if event type is change or archive and no event criteria is set. | [
"Check",
"if",
"event",
"criteria",
"are",
"set",
"for",
"change",
"and",
"archive",
"events"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventManager.java#L137-L148 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventManager.java | EventManager.bindEndpoints | private void bindEndpoints(ZMQ.Socket socket, Iterable<String> ipAddresses, Map<String, ZMQ.Socket> endpoints, SocketType socketType) {
xlogger.entry(ipAddresses, endpoints, socketType);
for (String ipAddress : ipAddresses) {
final StringBuilder endpoint = new StringBuilder("tcp://").appen... | java | private void bindEndpoints(ZMQ.Socket socket, Iterable<String> ipAddresses, Map<String, ZMQ.Socket> endpoints, SocketType socketType) {
xlogger.entry(ipAddresses, endpoints, socketType);
for (String ipAddress : ipAddresses) {
final StringBuilder endpoint = new StringBuilder("tcp://").appen... | [
"private",
"void",
"bindEndpoints",
"(",
"ZMQ",
".",
"Socket",
"socket",
",",
"Iterable",
"<",
"String",
">",
"ipAddresses",
",",
"Map",
"<",
"String",
",",
"ZMQ",
".",
"Socket",
">",
"endpoints",
",",
"SocketType",
"socketType",
")",
"{",
"xlogger",
".",
... | Binds given socket types to the list of addresses
@param socket
@param ipAddresses
@param endpoints
@param socketType | [
"Binds",
"given",
"socket",
"types",
"to",
"the",
"list",
"of",
"addresses"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventManager.java#L229-L246 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventManager.java | EventManager.getEventImpl | private EventImpl getEventImpl(final String fullName) {
if (!isInitialized) {
return null;
}
// Check if subscribed
EventImpl eventImpl = eventImplMap.get(fullName);
// Check if subscription is out of time
if (eventImpl != null && !eventImpl.isStillSubscribe... | java | private EventImpl getEventImpl(final String fullName) {
if (!isInitialized) {
return null;
}
// Check if subscribed
EventImpl eventImpl = eventImplMap.get(fullName);
// Check if subscription is out of time
if (eventImpl != null && !eventImpl.isStillSubscribe... | [
"private",
"EventImpl",
"getEventImpl",
"(",
"final",
"String",
"fullName",
")",
"{",
"if",
"(",
"!",
"isInitialized",
")",
"{",
"return",
"null",
";",
"}",
"// Check if subscribed",
"EventImpl",
"eventImpl",
"=",
"eventImplMap",
".",
"get",
"(",
"fullName",
"... | Search the specified EventImpl object
@param fullName specified EventImpl name.
@return the specified EventImpl object if found, otherwise returns null. | [
"Search",
"the",
"specified",
"EventImpl",
"object"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventManager.java#L271-L294 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventManager.java | EventManager.close | public void close() {
xlogger.entry();
logger.debug("closing all event resources");
if (heartBeatExecutor != null) {
heartBeatExecutor.shutdown();
try {
heartBeatExecutor.awaitTermination(1, TimeUnit.SECONDS);
} catch (final InterruptedExcepti... | java | public void close() {
xlogger.entry();
logger.debug("closing all event resources");
if (heartBeatExecutor != null) {
heartBeatExecutor.shutdown();
try {
heartBeatExecutor.awaitTermination(1, TimeUnit.SECONDS);
} catch (final InterruptedExcepti... | [
"public",
"void",
"close",
"(",
")",
"{",
"xlogger",
".",
"entry",
"(",
")",
";",
"logger",
".",
"debug",
"(",
"\"closing all event resources\"",
")",
";",
"if",
"(",
"heartBeatExecutor",
"!=",
"null",
")",
"{",
"heartBeatExecutor",
".",
"shutdown",
"(",
"... | Close all zmq resources | [
"Close",
"all",
"zmq",
"resources"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventManager.java#L310-L333 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventManager.java | EventManager.getInfo | public DevVarLongStringArray getInfo() {
// Build the connection parameters object
final DevVarLongStringArray longStringArray = new DevVarLongStringArray();
// longStringArray.lvalue = new int[0];
longStringArray.lvalue = new int[]{EventConstants.TANGO_RELEASE, DeviceImpl.SERVER_VERSION... | java | public DevVarLongStringArray getInfo() {
// Build the connection parameters object
final DevVarLongStringArray longStringArray = new DevVarLongStringArray();
// longStringArray.lvalue = new int[0];
longStringArray.lvalue = new int[]{EventConstants.TANGO_RELEASE, DeviceImpl.SERVER_VERSION... | [
"public",
"DevVarLongStringArray",
"getInfo",
"(",
")",
"{",
"// Build the connection parameters object",
"final",
"DevVarLongStringArray",
"longStringArray",
"=",
"new",
"DevVarLongStringArray",
"(",
")",
";",
"// longStringArray.lvalue = new int[0];",
"longStringArray",
".",
... | returns the connection parameters for specified event. | [
"returns",
"the",
"connection",
"parameters",
"for",
"specified",
"event",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventManager.java#L338-L351 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventManager.java | EventManager.subscribe | public DevVarLongStringArray subscribe(final String deviceName) throws DevFailed {
xlogger.entry();
// If first time start the ZMQ management
if (!isInitialized) {
initialize();
}
// check if event is already subscribed
final String fullName = EventUtilities.... | java | public DevVarLongStringArray subscribe(final String deviceName) throws DevFailed {
xlogger.entry();
// If first time start the ZMQ management
if (!isInitialized) {
initialize();
}
// check if event is already subscribed
final String fullName = EventUtilities.... | [
"public",
"DevVarLongStringArray",
"subscribe",
"(",
"final",
"String",
"deviceName",
")",
"throws",
"DevFailed",
"{",
"xlogger",
".",
"entry",
"(",
")",
";",
"// If first time start the ZMQ management",
"if",
"(",
"!",
"isInitialized",
")",
"{",
"initialize",
"(",
... | Initialize ZMQ event system if not already done,
subscribe to the interface change event end
returns the connection parameters.
@param deviceName The specified event device name
@return the connection parameters. | [
"Initialize",
"ZMQ",
"event",
"system",
"if",
"not",
"already",
"done",
"subscribe",
"to",
"the",
"interface",
"change",
"event",
"end",
"returns",
"the",
"connection",
"parameters",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventManager.java#L439-L458 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/EventManager.java | EventManager.pushAttributeDataReadyEvent | public void pushAttributeDataReadyEvent(final String deviceName, final String attributeName, final int counter)
throws DevFailed {
xlogger.entry();
final String fullName = EventUtilities.buildEventName(deviceName, attributeName, EventType.DATA_READY_EVENT);
final EventImpl eventImpl ... | java | public void pushAttributeDataReadyEvent(final String deviceName, final String attributeName, final int counter)
throws DevFailed {
xlogger.entry();
final String fullName = EventUtilities.buildEventName(deviceName, attributeName, EventType.DATA_READY_EVENT);
final EventImpl eventImpl ... | [
"public",
"void",
"pushAttributeDataReadyEvent",
"(",
"final",
"String",
"deviceName",
",",
"final",
"String",
"attributeName",
",",
"final",
"int",
"counter",
")",
"throws",
"DevFailed",
"{",
"xlogger",
".",
"entry",
"(",
")",
";",
"final",
"String",
"fullName"... | fire event with AttDataReady
@param deviceName Specified event device
@param attributeName specified event attribute name
@param counter a counter value
@throws DevFailed | [
"fire",
"event",
"with",
"AttDataReady"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/EventManager.java#L543-L554 | train |
tango-controls/JTango | client/src/main/java/fr/soleil/tango/statecomposer/StateResolver.java | StateResolver.configurePriorities | public void configurePriorities(final String[] priorities) {
// Set the non defined state in the property at 0 priority
// Enumeration of existing state
int priority;
// Get the custom priority
for (final String state : priorities) {
// count the token separated by ",... | java | public void configurePriorities(final String[] priorities) {
// Set the non defined state in the property at 0 priority
// Enumeration of existing state
int priority;
// Get the custom priority
for (final String state : priorities) {
// count the token separated by ",... | [
"public",
"void",
"configurePriorities",
"(",
"final",
"String",
"[",
"]",
"priorities",
")",
"{",
"// Set the non defined state in the property at 0 priority",
"// Enumeration of existing state",
"int",
"priority",
";",
"// Get the custom priority",
"for",
"(",
"final",
"Str... | Configure the state priorities
@param priorities
array of String. eg, STATE,priorityValue | [
"Configure",
"the",
"state",
"priorities"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/client/src/main/java/fr/soleil/tango/statecomposer/StateResolver.java#L82-L104 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.command_inout | public Any command_inout(final String in_cmd, final Any in_any) throws DevFailed {
Util.out4.println("DeviceImpl.command_inout(): command received : " + in_cmd);
//
// Record operation request in black box
//
blackbox.insert_cmd(in_cmd, 1);
//
// Execute command
//
Any out_any = null;
try {
// If nb... | java | public Any command_inout(final String in_cmd, final Any in_any) throws DevFailed {
Util.out4.println("DeviceImpl.command_inout(): command received : " + in_cmd);
//
// Record operation request in black box
//
blackbox.insert_cmd(in_cmd, 1);
//
// Execute command
//
Any out_any = null;
try {
// If nb... | [
"public",
"Any",
"command_inout",
"(",
"final",
"String",
"in_cmd",
",",
"final",
"Any",
"in_any",
")",
"throws",
"DevFailed",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.command_inout(): command received : \"",
"+",
"in_cmd",
")",
";",
"//",
"/... | Execute a command.
It's the master method executed when a "command_inout" CORBA operation is
requested by a client. It updates the device black-box, call the TANGO
command handler and returned the output Any
@param in_cmd
The command name
@param in_any
The command input data packed in a CORBA Any
@return The command ... | [
"Execute",
"a",
"command",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L428-L484 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.name | public String name() {
Util.out4.println("DeviceImpl.name() arrived");
//
// Record attribute request in black box
//
blackbox.insert_attr(Attr_Name);
//
// Return data to caller
//
Util.out4.println("Leaving DeviceImpl.name()");
return device_name;
} | java | public String name() {
Util.out4.println("DeviceImpl.name() arrived");
//
// Record attribute request in black box
//
blackbox.insert_attr(Attr_Name);
//
// Return data to caller
//
Util.out4.println("Leaving DeviceImpl.name()");
return device_name;
} | [
"public",
"String",
"name",
"(",
")",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.name() arrived\"",
")",
";",
"//",
"// Record attribute request in black box",
"//",
"blackbox",
".",
"insert_attr",
"(",
"Attr_Name",
")",
";",
"//",
"// Return dat... | Get device name.
It's the master method executed when the device name is requested via a
CORBA attribute. It updates the device black-box and return the device
name
@return The device name | [
"Get",
"device",
"name",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L708-L723 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.adm_name | public String adm_name() {
Util.out4.println("DeviceImpl.adm_name() arrived");
//
// Record attribute request in black box
//
blackbox.insert_attr(Attr_AdmName);
//
// Return data to caller
//
Util.out4.println("Leaving DeviceImpl.adm_name()");
return adm_device_name;
} | java | public String adm_name() {
Util.out4.println("DeviceImpl.adm_name() arrived");
//
// Record attribute request in black box
//
blackbox.insert_attr(Attr_AdmName);
//
// Return data to caller
//
Util.out4.println("Leaving DeviceImpl.adm_name()");
return adm_device_name;
} | [
"public",
"String",
"adm_name",
"(",
")",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.adm_name() arrived\"",
")",
";",
"//",
"// Record attribute request in black box",
"//",
"blackbox",
".",
"insert_attr",
"(",
"Attr_AdmName",
")",
";",
"//",
"//... | Get administration device name.
It's the master method executed when the administration device name is
requested via a CORBA attribute. It updates the device black-box and
return the administration device name
@return The administration device name | [
"Get",
"administration",
"device",
"name",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L745-L760 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.description | public String description() {
Util.out4.println("DeviceImpl.description() arrived");
//
// Record attribute request in black box
//
blackbox.insert_attr(Attr_Description);
//
// Return data to caller
//
Util.out4.println("Leaving DeviceImpl.description()");
return desc;
} | java | public String description() {
Util.out4.println("DeviceImpl.description() arrived");
//
// Record attribute request in black box
//
blackbox.insert_attr(Attr_Description);
//
// Return data to caller
//
Util.out4.println("Leaving DeviceImpl.description()");
return desc;
} | [
"public",
"String",
"description",
"(",
")",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.description() arrived\"",
")",
";",
"//",
"// Record attribute request in black box",
"//",
"blackbox",
".",
"insert_attr",
"(",
"Attr_Description",
")",
";",
"... | Get device description.
It's the master method executed when the device description is requested
via a CORBA attribute. It updates the device black-box and return the
device description field
@return The device description | [
"Get",
"device",
"description",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L783-L798 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.black_box | public String[] black_box(final int n) throws DevFailed {
Util.out4.println("DeviceImpl.black_box() arrived");
final String[] ret = blackbox.read(n);
//
// Record operation request in black box
//
blackbox.insert_op(Op_BlackBox);
Util.out4.println("Leaving DeviceImpl.black_box()");
return ret;
} | java | public String[] black_box(final int n) throws DevFailed {
Util.out4.println("DeviceImpl.black_box() arrived");
final String[] ret = blackbox.read(n);
//
// Record operation request in black box
//
blackbox.insert_op(Op_BlackBox);
Util.out4.println("Leaving DeviceImpl.black_box()");
return ret;
} | [
"public",
"String",
"[",
"]",
"black_box",
"(",
"final",
"int",
"n",
")",
"throws",
"DevFailed",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.black_box() arrived\"",
")",
";",
"final",
"String",
"[",
"]",
"ret",
"=",
"blackbox",
".",
"read"... | Get device black box.
It's the master method executed when the device black box is requested.
It reads the device black box, update it and return black-box data to the
client
@param n
The number of actions description which must be returned to
the client. The number of returned element is limited to the
number of ele... | [
"Get",
"device",
"black",
"box",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L926-L940 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.command_list_query | public DevCmdInfo[] command_list_query() {
Util.out4.println("DeviceImpl.command_list_query() arrived");
//
// Retrive number of command and allocate memory to send back info
//
final int nb_cmd = device_class.get_command_list().size();
Util.out4.println(nb_cmd + " command(s) for device");
final DevCmdInfo[] ... | java | public DevCmdInfo[] command_list_query() {
Util.out4.println("DeviceImpl.command_list_query() arrived");
//
// Retrive number of command and allocate memory to send back info
//
final int nb_cmd = device_class.get_command_list().size();
Util.out4.println(nb_cmd + " command(s) for device");
final DevCmdInfo[] ... | [
"public",
"DevCmdInfo",
"[",
"]",
"command_list_query",
"(",
")",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.command_list_query() arrived\"",
")",
";",
"//",
"// Retrive number of command and allocate memory to send back info",
"//",
"final",
"int",
"nb_... | Get device command list.
Invoked when the client request the command_list_query CORBA operation.
It updates the device black box and returns an array of DevCmdInfo object
with one object for each command.
@return The device command list. One DevCmdInfo is initialised for each
device command | [
"Get",
"device",
"command",
"list",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L964-L1017 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.command_query | public DevCmdInfo command_query(final String command) throws DevFailed {
Util.out4.println("DeviceImpl.command_query() arrived");
final DevCmdInfo back = new DevCmdInfo();
//
// Try to retrieve the command in the command list
//
final String cmd_name = command.toLowerCase();
int i;
final int nb_cmd = device_... | java | public DevCmdInfo command_query(final String command) throws DevFailed {
Util.out4.println("DeviceImpl.command_query() arrived");
final DevCmdInfo back = new DevCmdInfo();
//
// Try to retrieve the command in the command list
//
final String cmd_name = command.toLowerCase();
int i;
final int nb_cmd = device_... | [
"public",
"DevCmdInfo",
"command_query",
"(",
"final",
"String",
"command",
")",
"throws",
"DevFailed",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.command_query() arrived\"",
")",
";",
"final",
"DevCmdInfo",
"back",
"=",
"new",
"DevCmdInfo",
"(",... | Get command info.
Invoked when the client request the command_query CORBA operation. It
updates the device black box and returns a DevCmdInfo object for the
command with name passed to the method as parameter.
@param command
The command name
@return A DevCmdInfo initialised for the wanted command
@exception DevFailed... | [
"Get",
"command",
"info",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L1156-L1213 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.info | public DevInfo info() {
Util.out4.println("DeviceImpl.info() arrived");
final DevInfo back = new DevInfo();
//
// Retrieve server host
//
final Util tg = Util.instance();
back.server_host = tg.get_host_name();
//
// Fill-in remaining structure fields
//
back.dev_class = device_class.get_name();
back.s... | java | public DevInfo info() {
Util.out4.println("DeviceImpl.info() arrived");
final DevInfo back = new DevInfo();
//
// Retrieve server host
//
final Util tg = Util.instance();
back.server_host = tg.get_host_name();
//
// Fill-in remaining structure fields
//
back.dev_class = device_class.get_name();
back.s... | [
"public",
"DevInfo",
"info",
"(",
")",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.info() arrived\"",
")",
";",
"final",
"DevInfo",
"back",
"=",
"new",
"DevInfo",
"(",
")",
";",
"//",
"// Retrieve server host",
"//",
"final",
"Util",
"tg",
... | Get device info.
Invoked when the client request the info CORBA operation. It updates the
black box and returns a DevInfo object with miscellaneous device info
@return A DevInfo object | [
"Get",
"device",
"info",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L1232-L1266 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.ping | public void ping() {
Util.out4.println("DeviceImpl.ping() arrived");
//
// Record operation request in black box
//
blackbox.insert_op(Op_Ping);
//
// Return to caller
//
Util.out4.println("Leaving DeviceImpl.ping()");
} | java | public void ping() {
Util.out4.println("DeviceImpl.ping() arrived");
//
// Record operation request in black box
//
blackbox.insert_op(Op_Ping);
//
// Return to caller
//
Util.out4.println("Leaving DeviceImpl.ping()");
} | [
"public",
"void",
"ping",
"(",
")",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"DeviceImpl.ping() arrived\"",
")",
";",
"//",
"// Record operation request in black box",
"//",
"blackbox",
".",
"insert_op",
"(",
"Op_Ping",
")",
";",
"//",
"// Return to caller... | Ping the device to check if it is still alive.
Invoked when the client request the ping CORBA operation. It updates the
device black box and simply returns | [
"Ping",
"the",
"device",
"to",
"check",
"if",
"it",
"is",
"still",
"alive",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L1284-L1299 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.add_attribute | public void add_attribute(final Attr new_attr) throws DevFailed {
final Vector attr_list = device_class.get_class_attr().get_attr_list();
final int old_attr_nb = attr_list.size();
//
// Check that this attribute is not already defined for this device.
// If it is alaredy there, immediately returns.
// Trick : If... | java | public void add_attribute(final Attr new_attr) throws DevFailed {
final Vector attr_list = device_class.get_class_attr().get_attr_list();
final int old_attr_nb = attr_list.size();
//
// Check that this attribute is not already defined for this device.
// If it is alaredy there, immediately returns.
// Trick : If... | [
"public",
"void",
"add_attribute",
"(",
"final",
"Attr",
"new_attr",
")",
"throws",
"DevFailed",
"{",
"final",
"Vector",
"attr_list",
"=",
"device_class",
".",
"get_class_attr",
"(",
")",
".",
"get_attr_list",
"(",
")",
";",
"final",
"int",
"old_attr_nb",
"=",... | Add a new attribute to the device attribute list.
Attributes are normally constructed in the
DeviceClass::attribute_factory() method. Nevertheless, it is still
possible to add a new attribute to a device with this method. Please,
note that if you add an attribute to a device at device creation time,
this attribute wil... | [
"Add",
"a",
"new",
"attribute",
"to",
"the",
"device",
"attribute",
"list",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L2350-L2404 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.get_logger | public Logger get_logger() {
if (logger == null) {
logger = Logger.getLogger(get_name().toLowerCase());
logger.setAdditivity(false);
logger.setLevel(Level.WARN);
last_level = Level.WARN;
}
return logger;
} | java | public Logger get_logger() {
if (logger == null) {
logger = Logger.getLogger(get_name().toLowerCase());
logger.setAdditivity(false);
logger.setLevel(Level.WARN);
last_level = Level.WARN;
}
return logger;
} | [
"public",
"Logger",
"get_logger",
"(",
")",
"{",
"if",
"(",
"logger",
"==",
"null",
")",
"{",
"logger",
"=",
"Logger",
".",
"getLogger",
"(",
"get_name",
"(",
")",
".",
"toLowerCase",
"(",
")",
")",
";",
"logger",
".",
"setAdditivity",
"(",
"false",
... | Returns the device's logger | [
"Returns",
"the",
"device",
"s",
"logger"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L2734-L2742 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java | DeviceImpl.init_logger | @SuppressWarnings( { "NestedTryStatement" })
public void init_logger() {
try {
Util.out4.println("Initializing logging for " + get_name());
// - Get Util instance
final Util util = Util.instance();
// - Get cmd line logging level then ...
final int trace_level = util.get_trace_level();
... | java | @SuppressWarnings( { "NestedTryStatement" })
public void init_logger() {
try {
Util.out4.println("Initializing logging for " + get_name());
// - Get Util instance
final Util util = Util.instance();
// - Get cmd line logging level then ...
final int trace_level = util.get_trace_level();
... | [
"@",
"SuppressWarnings",
"(",
"{",
"\"NestedTryStatement\"",
"}",
")",
"public",
"void",
"init_logger",
"(",
")",
"{",
"try",
"{",
"Util",
".",
"out4",
".",
"println",
"(",
"\"Initializing logging for \"",
"+",
"get_name",
"(",
")",
")",
";",
"// - Get Util in... | Initialize the logging for this device | [
"Initialize",
"the",
"logging",
"for",
"this",
"device"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/DeviceImpl.java#L2747-L2820 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/events/ArchiveEventTrigger.java | ArchiveEventTrigger.checkEventCriteria | public static void checkEventCriteria(final AttributeImpl attribute) throws DevFailed {
// Check if value is not numerical (always true for State and String)
if (attribute.isState() || attribute.isString()) {
return;
}
// Else check criteria
final EventPropertie... | java | public static void checkEventCriteria(final AttributeImpl attribute) throws DevFailed {
// Check if value is not numerical (always true for State and String)
if (attribute.isState() || attribute.isString()) {
return;
}
// Else check criteria
final EventPropertie... | [
"public",
"static",
"void",
"checkEventCriteria",
"(",
"final",
"AttributeImpl",
"attribute",
")",
"throws",
"DevFailed",
"{",
"// Check if value is not numerical (always true for State and String)\r",
"if",
"(",
"attribute",
".",
"isState",
"(",
")",
"||",
"attribute",
"... | Check if event criteria are set for specified attribute
@param attribute the specified attribute
@throws DevFailed if no event criteria is set for specified attribute. | [
"Check",
"if",
"event",
"criteria",
"are",
"set",
"for",
"specified",
"attribute"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/events/ArchiveEventTrigger.java#L92-L107 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/TangoDeviceAppender.java | TangoDeviceAppender.close | public void close () {
if (lc_dev_proxy != null) {
try {
DeviceData dd = new DeviceData();
dd.insert(dev_name);
lc_dev_proxy.command_inout_asynch("UnRegister", dd, true);
}
catch (DevFailed dv) {
//Ignore: some old LogViewer may not support the Unregister cmd
... | java | public void close () {
if (lc_dev_proxy != null) {
try {
DeviceData dd = new DeviceData();
dd.insert(dev_name);
lc_dev_proxy.command_inout_asynch("UnRegister", dd, true);
}
catch (DevFailed dv) {
//Ignore: some old LogViewer may not support the Unregister cmd
... | [
"public",
"void",
"close",
"(",
")",
"{",
"if",
"(",
"lc_dev_proxy",
"!=",
"null",
")",
"{",
"try",
"{",
"DeviceData",
"dd",
"=",
"new",
"DeviceData",
"(",
")",
";",
"dd",
".",
"insert",
"(",
"dev_name",
")",
";",
"lc_dev_proxy",
".",
"command_inout_as... | Release any resources allocated within the appender. | [
"Release",
"any",
"resources",
"allocated",
"within",
"the",
"appender",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/TangoDeviceAppender.java#L94-L107 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/TangoDeviceAppender.java | TangoDeviceAppender.append | public void append (LoggingEvent evt) {
if (lc_dev_proxy == null) {
return;
}
try {
String[] dvsa = new String[6];
dvsa[0] = String.valueOf(evt.timeStamp);
dvsa[1] = evt.getLevel().toString();
dvsa[2] = evt.getLoggerName();
dvsa[3] = evt.getRenderedMessage(); ... | java | public void append (LoggingEvent evt) {
if (lc_dev_proxy == null) {
return;
}
try {
String[] dvsa = new String[6];
dvsa[0] = String.valueOf(evt.timeStamp);
dvsa[1] = evt.getLevel().toString();
dvsa[2] = evt.getLoggerName();
dvsa[3] = evt.getRenderedMessage(); ... | [
"public",
"void",
"append",
"(",
"LoggingEvent",
"evt",
")",
"{",
"if",
"(",
"lc_dev_proxy",
"==",
"null",
")",
"{",
"return",
";",
"}",
"try",
"{",
"String",
"[",
"]",
"dvsa",
"=",
"new",
"String",
"[",
"6",
"]",
";",
"dvsa",
"[",
"0",
"]",
"=",... | Performs actual logging. | [
"Performs",
"actual",
"logging",
"."
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/TangoDeviceAppender.java#L112-L131 | train |
tango-controls/JTango | server/src/main/java/org/tango/server/idl/CleverAnyAttribute.java | CleverAnyAttribute.set | public static Any set(final int tangoType, final Object value) throws DevFailed {
final Any any = ORBManager.createAny();
if (value != null) {
Object array = null;
if (value.getClass().isArray()) {
// convert to array of primitives if necessary
ar... | java | public static Any set(final int tangoType, final Object value) throws DevFailed {
final Any any = ORBManager.createAny();
if (value != null) {
Object array = null;
if (value.getClass().isArray()) {
// convert to array of primitives if necessary
ar... | [
"public",
"static",
"Any",
"set",
"(",
"final",
"int",
"tangoType",
",",
"final",
"Object",
"value",
")",
"throws",
"DevFailed",
"{",
"final",
"Any",
"any",
"=",
"ORBManager",
".",
"createAny",
"(",
")",
";",
"if",
"(",
"value",
"!=",
"null",
")",
"{",... | Set a value in an any
@param tangoType
@param value
@return the Any
@throws DevFailed | [
"Set",
"a",
"value",
"in",
"an",
"any"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/server/src/main/java/org/tango/server/idl/CleverAnyAttribute.java#L148-L180 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Logging.java | Logging.get_logging_properties | public LoggingProperties get_logging_properties (Logger logger, Database db)
{
//- Instanciate the returned value
LoggingProperties properties = new LoggingProperties();
//- Check input
if (logger == null) {
return properties;
}
try {
//- Be sure the specified Database is valid
... | java | public LoggingProperties get_logging_properties (Logger logger, Database db)
{
//- Instanciate the returned value
LoggingProperties properties = new LoggingProperties();
//- Check input
if (logger == null) {
return properties;
}
try {
//- Be sure the specified Database is valid
... | [
"public",
"LoggingProperties",
"get_logging_properties",
"(",
"Logger",
"logger",
",",
"Database",
"db",
")",
"{",
"//- Instanciate the returned value",
"LoggingProperties",
"properties",
"=",
"new",
"LoggingProperties",
"(",
")",
";",
"//- Check input",
"if",
"(",
"log... | Reads logging properties from TANGO database | [
"Reads",
"logging",
"properties",
"from",
"TANGO",
"database"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Logging.java#L246-L298 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Logging.java | Logging.set_logging_level | public void set_logging_level (DevVarLongStringArray dvlsa) throws DevFailed {
//- Check input
if (dvlsa.svalue.length != dvlsa.svalue.length) {
String desc = "Imcompatible command argument type, long and string arrays must have the same length";
Except.throw_exception("API_IncompatibleCmdArgumentTy... | java | public void set_logging_level (DevVarLongStringArray dvlsa) throws DevFailed {
//- Check input
if (dvlsa.svalue.length != dvlsa.svalue.length) {
String desc = "Imcompatible command argument type, long and string arrays must have the same length";
Except.throw_exception("API_IncompatibleCmdArgumentTy... | [
"public",
"void",
"set_logging_level",
"(",
"DevVarLongStringArray",
"dvlsa",
")",
"throws",
"DevFailed",
"{",
"//- Check input",
"if",
"(",
"dvlsa",
".",
"svalue",
".",
"length",
"!=",
"dvlsa",
".",
"svalue",
".",
"length",
")",
"{",
"String",
"desc",
"=",
... | Set logging level for the specified devices
@param dvlsa A Tango.DevVarLongStringArray containing device-names and logging levels | [
"Set",
"logging",
"level",
"for",
"the",
"specified",
"devices"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Logging.java#L576-L603 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Logging.java | Logging.get_logging_level | public DevVarLongStringArray get_logging_level (String[] dvsa) throws DevFailed {
//- Temp vector
int i;
Iterator it;
Vector tmp_name = new Vector();
Vector tmp_level = new Vector();
//- For each entry in dvsa
for (i = 0; i < dvsa.length; i++) {
//- Get devices which name matches the p... | java | public DevVarLongStringArray get_logging_level (String[] dvsa) throws DevFailed {
//- Temp vector
int i;
Iterator it;
Vector tmp_name = new Vector();
Vector tmp_level = new Vector();
//- For each entry in dvsa
for (i = 0; i < dvsa.length; i++) {
//- Get devices which name matches the p... | [
"public",
"DevVarLongStringArray",
"get_logging_level",
"(",
"String",
"[",
"]",
"dvsa",
")",
"throws",
"DevFailed",
"{",
"//- Temp vector",
"int",
"i",
";",
"Iterator",
"it",
";",
"Vector",
"tmp_name",
"=",
"new",
"Vector",
"(",
")",
";",
"Vector",
"tmp_level... | Get logging level for the specified devices
@param dvsa A Tango.DevVarStringArray containing device names | [
"Get",
"logging",
"level",
"for",
"the",
"specified",
"devices"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Logging.java#L610-L641 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Logging.java | Logging.get_logging_target | public String[] get_logging_target (String dev_name) throws DevFailed {
//- Get device by name
DeviceImpl dev = Util.instance().get_device_by_name(dev_name);
//- Get device targets (i.e appenders)
Enumeration all_appenders = dev.get_logger().getAllAppenders();
//- Instanciate returned value
... | java | public String[] get_logging_target (String dev_name) throws DevFailed {
//- Get device by name
DeviceImpl dev = Util.instance().get_device_by_name(dev_name);
//- Get device targets (i.e appenders)
Enumeration all_appenders = dev.get_logger().getAllAppenders();
//- Instanciate returned value
... | [
"public",
"String",
"[",
"]",
"get_logging_target",
"(",
"String",
"dev_name",
")",
"throws",
"DevFailed",
"{",
"//- Get device by name",
"DeviceImpl",
"dev",
"=",
"Util",
".",
"instance",
"(",
")",
".",
"get_device_by_name",
"(",
"dev_name",
")",
";",
"//- Get ... | Get logging target for the specified devices
@param dev_name The device names | [
"Get",
"logging",
"target",
"for",
"the",
"specified",
"devices"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Logging.java#L648-L668 | train |
tango-controls/JTango | dao/src/main/java/fr/esrf/TangoDs/Logging.java | Logging.stop_logging | public void stop_logging () {
Vector dl = Util.instance().get_device_list("*");
for (Object aDl : dl) {
((DeviceImpl) aDl).stop_logging();
}
} | java | public void stop_logging () {
Vector dl = Util.instance().get_device_list("*");
for (Object aDl : dl) {
((DeviceImpl) aDl).stop_logging();
}
} | [
"public",
"void",
"stop_logging",
"(",
")",
"{",
"Vector",
"dl",
"=",
"Util",
".",
"instance",
"(",
")",
".",
"get_device_list",
"(",
"\"*\"",
")",
";",
"for",
"(",
"Object",
"aDl",
":",
"dl",
")",
"{",
"(",
"(",
"DeviceImpl",
")",
"aDl",
")",
".",... | For each device, save its current logging Level then set it to OFF | [
"For",
"each",
"device",
"save",
"its",
"current",
"logging",
"Level",
"then",
"set",
"it",
"to",
"OFF"
] | 1ccc9dcb83e6de2359a9f1906d170571cacf1345 | https://github.com/tango-controls/JTango/blob/1ccc9dcb83e6de2359a9f1906d170571cacf1345/dao/src/main/java/fr/esrf/TangoDs/Logging.java#L673-L678 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.