]> rtime.felk.cvut.cz Git - orte.git/blob - orte/libjorte/JORTEDomainPropDefaultGet.c
3913eb04cecbe55aa52cad6782f6911e4bfb8238
[orte.git] / orte / libjorte / JORTEDomainPropDefaultGet.c
1 /* JORTEDomainPropDefaultGet.c  */
2
3 /**
4   * This code provides conversion between JAVA a C environments.
5   * The C functions are calling here and results are send to JAVA
6   * native functions. It uses the header pregenerated by JAVA
7   * (by command 'javah -jni class_with_native_function')
8   *
9   * @author Lukas Pokorny (lukas_pokorny@centrum.cz)
10   * @author CTU FEE Prague - Department of Control Engineering (dce.felk.cvut.cz
11 )
12   * @author Project ORTE - OCERA Real Time Ethernet (www.ocera.org)
13   * @author dedication to Kj
14   * @version 0.1
15   *
16   *
17   * This program is free software; you can redistribute it and/or modify
18   * it under the terms of the GNU General Public License as published by
19   * the Free Software Foundation; either version 2 of the License, or
20   * (at your option) any later version.
21   *
22   * This program is distributed in the hope that it will be useful,
23   * but WITHOUT ANY WARRANTY; without even the implied warranty of
24   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25   * GNU General Public License for more details.
26   *
27   */
28
29
30 #include <stdlib.h>
31 // origin orte headers
32 #include "orte.h"
33 // pregenerated header
34 #include "jorte/org_ocera_orte_types_DomainProp.h"
35 #include "jorte/4all.h"
36
37 JNIEXPORT jlong JNICALL
38 Java_org_ocera_orte_types_DomainProp_jORTEDomainPropDefaultGet
39 (JNIEnv *env, jclass cls)
40 {
41   ORTEDomainProp *dprop;
42
43   // memory allocation
44   dprop = (ORTEDomainProp *) malloc(sizeof(ORTEDomainProp));
45   if (dprop == NULL)
46   {
47      printf(":!c: not enough memory to alocate DomainProp!");
48      return 0;
49   }
50   // call ORTE function
51   if (!ORTEDomainPropDefaultGet(dprop))
52   {
53     printf(":!c: ORTEDomainPropDefaultGet() failed.. \n");
54     free(dprop);
55     return 0;
56   }
57   #ifdef TEST_STAGE
58     printf(":c: default domain properties created.. \n");
59   #endif
60   return ((jlong) dprop);
61 }