Initial commit
Showing
.drone.yml
0 → 100644
.gitreview
0 → 100644
.readthedocs.yaml
0 → 100644
Dockerfile
0 → 100755
Dockerfile-Unit-Tests
0 → 100755
INFO.yaml
0 → 100644
--- | ||
project: 'ric_app_hw' | ||
project_creation_date: '2020-03-10' | ||
project_category: '' | ||
lifecycle_state: 'Incubation' | ||
project_lead: &oran_ric_app_hw_ptl | ||
name: 'Matti Hiltunen' | ||
email: '[email protected]' | ||
id: 'MattiHiltunen' | ||
company: 'AT&T Labs-Research' | ||
timezone: 'America/New_York' | ||
primary_contact: *oran_ric_app_hw_ptl | ||
issue_tracking: | ||
type: 'jira' | ||
url: 'https://jira.o-ran-sc.org/projects/' | ||
key: 'ric_app_hw' | ||
mailing_list: | ||
type: 'groups.io' | ||
url: 'https://lists.o-ran-sc.org/g/main' | ||
tag: '[]' | ||
realtime_discussion: | ||
type: 'irc' | ||
server: 'freenode.net' | ||
channel: '#oran' | ||
meetings: | ||
- type: 'gotomeeting+irc' | ||
agenda: 'https://wiki.o-ran-sc.org/display/' | ||
url: '' | ||
server: 'freenode.net' | ||
channel: '#oran' | ||
repeats: '' | ||
time: '' | ||
repositories: | ||
- ric-app/hw | ||
committers: | ||
- <<: *oran_ric_app_hw_ptl | ||
- name: 'Scott Daniels' | ||
email: '[email protected]' | ||
company: 'ATT' | ||
id: 'escottdaniels' | ||
timezone: 'America/New_York' | ||
- name: 'Ron Shacham' | ||
email: '[email protected]' | ||
company: 'ATT' | ||
id: 'rshacham' | ||
timezone: 'America/New_York' | ||
- name: 'Shraboni Jana' | ||
email: '[email protected]' | ||
company: 'ATT' | ||
id: 'sjana' | ||
timezone: 'America/New_York' | ||
tsc: | ||
# yamllint disable rule:line-length | ||
approval: 'https://wiki.o-ran-sc.org/display/TOC#ORANSCTechnicalOversightCommittee(TOC)-20200304' | ||
changes: | ||
- type: '' | ||
name: '' | ||
link: '' |
README
0 → 100644
container-tag.yaml
0 → 100644
defs_hwe2sm/BIT_STRING.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/BIT_STRING.h
0 → 100644
/*- | ||
* Copyright (c) 2003-2017 Lev Walkin <[email protected]>. All rights reserved. | ||
* Redistribution and modifications are permitted subject to BSD license. | ||
*/ | ||
#ifndef _BIT_STRING_H_ | ||
#define _BIT_STRING_H_ | ||
#include <OCTET_STRING.h> /* Some help from OCTET STRING */ | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
typedef struct BIT_STRING_s { | ||
uint8_t *buf; /* BIT STRING body */ | ||
size_t size; /* Size of the above buffer */ | ||
int bits_unused;/* Unused trailing bits in the last octet (0..7) */ | ||
asn_struct_ctx_t _asn_ctx; /* Parsing across buffer boundaries */ | ||
} BIT_STRING_t; | ||
extern asn_TYPE_descriptor_t asn_DEF_BIT_STRING; | ||
extern asn_TYPE_operation_t asn_OP_BIT_STRING; | ||
extern asn_OCTET_STRING_specifics_t asn_SPC_BIT_STRING_specs; | ||
asn_struct_print_f BIT_STRING_print; /* Human-readable output */ | ||
asn_struct_compare_f BIT_STRING_compare; | ||
asn_constr_check_f BIT_STRING_constraint; | ||
xer_type_encoder_f BIT_STRING_encode_xer; | ||
oer_type_decoder_f BIT_STRING_decode_oer; | ||
oer_type_encoder_f BIT_STRING_encode_oer; | ||
per_type_decoder_f BIT_STRING_decode_uper; | ||
per_type_encoder_f BIT_STRING_encode_uper; | ||
asn_random_fill_f BIT_STRING_random_fill; | ||
#define BIT_STRING_free OCTET_STRING_free | ||
#define BIT_STRING_decode_ber OCTET_STRING_decode_ber | ||
#define BIT_STRING_encode_der OCTET_STRING_encode_der | ||
#define BIT_STRING_decode_xer OCTET_STRING_decode_xer_binary | ||
#define BIT_STRING_decode_aper OCTET_STRING_decode_aper | ||
#define BIT_STRING_encode_aper OCTET_STRING_encode_aper | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* _BIT_STRING_H_ */ |
defs_hwe2sm/HW-Header.c
0 → 100644
defs_hwe2sm/HW-Header.h
0 → 100644
defs_hwe2sm/HW-Message.c
0 → 100644
defs_hwe2sm/HW-Message.h
0 → 100644
defs_hwe2sm/INTEGER.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/INTEGER.h
0 → 100644
/*- | ||
* Copyright (c) 2003-2017 Lev Walkin <[email protected]>. All rights reserved. | ||
* Redistribution and modifications are permitted subject to BSD license. | ||
*/ | ||
#ifndef _INTEGER_H_ | ||
#define _INTEGER_H_ | ||
#include <asn_application.h> | ||
#include <asn_codecs_prim.h> | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
typedef ASN__PRIMITIVE_TYPE_t INTEGER_t; | ||
extern asn_TYPE_descriptor_t asn_DEF_INTEGER; | ||
extern asn_TYPE_operation_t asn_OP_INTEGER; | ||
/* Map with <tag> to integer value association */ | ||
typedef struct asn_INTEGER_enum_map_s { | ||
long nat_value; /* associated native integer value */ | ||
size_t enum_len; /* strlen("tag") */ | ||
const char *enum_name; /* "tag" */ | ||
} asn_INTEGER_enum_map_t; | ||
/* This type describes an enumeration for INTEGER and ENUMERATED types */ | ||
typedef struct asn_INTEGER_specifics_s { | ||
const asn_INTEGER_enum_map_t *value2enum; /* N -> "tag"; sorted by N */ | ||
const unsigned int *enum2value; /* "tag" => N; sorted by tag */ | ||
int map_count; /* Elements in either map */ | ||
int extension; /* This map is extensible */ | ||
int strict_enumeration; /* Enumeration set is fixed */ | ||
int field_width; /* Size of native integer */ | ||
int field_unsigned; /* Signed=0, unsigned=1 */ | ||
} asn_INTEGER_specifics_t; | ||
#define INTEGER_free ASN__PRIMITIVE_TYPE_free | ||
#define INTEGER_decode_ber ber_decode_primitive | ||
#define INTEGER_constraint asn_generic_no_constraint | ||
asn_struct_print_f INTEGER_print; | ||
asn_struct_compare_f INTEGER_compare; | ||
der_type_encoder_f INTEGER_encode_der; | ||
xer_type_decoder_f INTEGER_decode_xer; | ||
xer_type_encoder_f INTEGER_encode_xer; | ||
oer_type_decoder_f INTEGER_decode_oer; | ||
oer_type_encoder_f INTEGER_encode_oer; | ||
per_type_decoder_f INTEGER_decode_uper; | ||
per_type_encoder_f INTEGER_encode_uper; | ||
per_type_decoder_f INTEGER_decode_aper; | ||
per_type_encoder_f INTEGER_encode_aper; | ||
asn_random_fill_f INTEGER_random_fill; | ||
/*********************************** | ||
* Some handy conversion routines. * | ||
***********************************/ | ||
/* | ||
* Natiwe size-independent conversion of native integers to/from INTEGER. | ||
* (l_size) is in bytes. | ||
* Returns 0 if it was possible to convert, -1 otherwise. | ||
* -1/EINVAL: Mandatory argument missing | ||
* -1/ERANGE: Value encoded is out of range for long representation | ||
* -1/ENOMEM: Memory allocation failed (in asn_*2INTEGER()). | ||
*/ | ||
int asn_INTEGER2imax(const INTEGER_t *i, intmax_t *l); | ||
int asn_INTEGER2umax(const INTEGER_t *i, uintmax_t *l); | ||
int asn_imax2INTEGER(INTEGER_t *i, intmax_t l); | ||
int asn_umax2INTEGER(INTEGER_t *i, uintmax_t l); | ||
/* | ||
* Size-specific conversion helpers. | ||
*/ | ||
int asn_INTEGER2long(const INTEGER_t *i, long *l); | ||
int asn_INTEGER2ulong(const INTEGER_t *i, unsigned long *l); | ||
int asn_long2INTEGER(INTEGER_t *i, long l); | ||
int asn_ulong2INTEGER(INTEGER_t *i, unsigned long l); | ||
int asn_int642INTEGER(INTEGER_t *i, int64_t l); | ||
int asn_uint642INTEGER(INTEGER_t *i, uint64_t l); | ||
/* A version of strtol/strtoimax(3) with nicer error reporting. */ | ||
enum asn_strtox_result_e { | ||
ASN_STRTOX_ERROR_RANGE = -3, /* Input outside of supported numeric range */ | ||
ASN_STRTOX_ERROR_INVAL = -2, /* Invalid data encountered (e.g., "+-") */ | ||
ASN_STRTOX_EXPECT_MORE = -1, /* More data expected (e.g. "+") */ | ||
ASN_STRTOX_OK = 0, /* Conversion succeded, number ends at (*end) */ | ||
ASN_STRTOX_EXTRA_DATA = 1 /* Conversion succeded, but the string has extra stuff */ | ||
}; | ||
enum asn_strtox_result_e asn_strtol_lim(const char *str, const char **end, | ||
long *l); | ||
enum asn_strtox_result_e asn_strtoul_lim(const char *str, const char **end, | ||
unsigned long *l); | ||
enum asn_strtox_result_e asn_strtoimax_lim(const char *str, const char **end, | ||
intmax_t *l); | ||
enum asn_strtox_result_e asn_strtoumax_lim(const char *str, const char **end, | ||
uintmax_t *l); | ||
/* | ||
* Convert the integer value into the corresponding enumeration map entry. | ||
*/ | ||
const asn_INTEGER_enum_map_t *INTEGER_map_value2enum( | ||
const asn_INTEGER_specifics_t *specs, long value); | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* _INTEGER_H_ */ |
This diff is collapsed.
/* | ||
* Copyright (c) 2004-2017 Lev Walkin <[email protected]>. All rights reserved. | ||
* Redistribution and modifications are permitted subject to BSD license. | ||
*/ | ||
/* | ||
* This type differs from the standard ENUMERATED in that it is modelled using | ||
* the fixed machine type (long, int, short), so it can hold only values of | ||
* limited length. There is no type (i.e., NativeEnumerated_t, any integer type | ||
* will do). | ||
* This type may be used when integer range is limited by subtype constraints. | ||
*/ | ||
#ifndef _NativeEnumerated_H_ | ||
#define _NativeEnumerated_H_ | ||
#include <NativeInteger.h> | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
extern asn_TYPE_descriptor_t asn_DEF_NativeEnumerated; | ||
extern asn_TYPE_operation_t asn_OP_NativeEnumerated; | ||
xer_type_encoder_f NativeEnumerated_encode_xer; | ||
oer_type_decoder_f NativeEnumerated_decode_oer; | ||
oer_type_encoder_f NativeEnumerated_encode_oer; | ||
per_type_decoder_f NativeEnumerated_decode_uper; | ||
per_type_encoder_f NativeEnumerated_encode_uper; | ||
per_type_decoder_f NativeEnumerated_decode_aper; | ||
per_type_encoder_f NativeEnumerated_encode_aper; | ||
#define NativeEnumerated_free NativeInteger_free | ||
#define NativeEnumerated_print NativeInteger_print | ||
#define NativeEnumerated_compare NativeInteger_compare | ||
#define NativeEnumerated_random_fill NativeInteger_random_fill | ||
#define NativeEnumerated_constraint asn_generic_no_constraint | ||
#define NativeEnumerated_decode_ber NativeInteger_decode_ber | ||
#define NativeEnumerated_encode_der NativeInteger_encode_der | ||
#define NativeEnumerated_decode_xer NativeInteger_decode_xer | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* _NativeEnumerated_H_ */ |
defs_hwe2sm/NativeInteger.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/NativeInteger.h
0 → 100644
/*- | ||
* Copyright (c) 2004-2017 Lev Walkin <[email protected]>. All rights reserved. | ||
* Redistribution and modifications are permitted subject to BSD license. | ||
*/ | ||
/* | ||
* This type differs from the standard INTEGER in that it is modelled using | ||
* the fixed machine type (long, int, short), so it can hold only values of | ||
* limited length. There is no type (i.e., NativeInteger_t, any integer type | ||
* will do). | ||
* This type may be used when integer range is limited by subtype constraints. | ||
*/ | ||
#ifndef _NativeInteger_H_ | ||
#define _NativeInteger_H_ | ||
#include <asn_application.h> | ||
#include <INTEGER.h> | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
extern asn_TYPE_descriptor_t asn_DEF_NativeInteger; | ||
extern asn_TYPE_operation_t asn_OP_NativeInteger; | ||
asn_struct_free_f NativeInteger_free; | ||
asn_struct_print_f NativeInteger_print; | ||
asn_struct_compare_f NativeInteger_compare; | ||
ber_type_decoder_f NativeInteger_decode_ber; | ||
der_type_encoder_f NativeInteger_encode_der; | ||
xer_type_decoder_f NativeInteger_decode_xer; | ||
xer_type_encoder_f NativeInteger_encode_xer; | ||
oer_type_decoder_f NativeInteger_decode_oer; | ||
oer_type_encoder_f NativeInteger_encode_oer; | ||
per_type_decoder_f NativeInteger_decode_uper; | ||
per_type_encoder_f NativeInteger_encode_uper; | ||
per_type_decoder_f NativeInteger_decode_aper; | ||
per_type_encoder_f NativeInteger_encode_aper; | ||
asn_random_fill_f NativeInteger_random_fill; | ||
#define NativeInteger_constraint asn_generic_no_constraint | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* _NativeInteger_H_ */ |
defs_hwe2sm/OCTET_STRING.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/OCTET_STRING.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/OPEN_TYPE.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/OPEN_TYPE.h
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
defs_hwe2sm/asn_SET_OF.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/asn_SET_OF.h
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
defs_hwe2sm/asn_bit_data.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/asn_bit_data.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/asn_codecs.h
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
defs_hwe2sm/asn_constant.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/asn_internal.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/asn_internal.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/asn_ioc.h
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
defs_hwe2sm/asn_system.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/ber_decoder.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/ber_decoder.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/ber_tlv_length.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/ber_tlv_length.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/ber_tlv_tag.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/ber_tlv_tag.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/constr_CHOICE.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/constr_CHOICE.h
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
defs_hwe2sm/constr_SET_OF.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/constr_SET_OF.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/constr_TYPE.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/constr_TYPE.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/constraints.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/constraints.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/der_encoder.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/der_encoder.h
0 → 100644
This diff is collapsed.
This diff is collapsed.
defs_hwe2sm/pdu_collection.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_decoder.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_decoder.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_encoder.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_encoder.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_opentype.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_opentype.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_support.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/per_support.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/xer_decoder.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/xer_decoder.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/xer_encoder.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/xer_encoder.h
0 → 100644
This diff is collapsed.
defs_hwe2sm/xer_support.c
0 → 100644
This diff is collapsed.
defs_hwe2sm/xer_support.h
0 → 100644
This diff is collapsed.
docs/_static/logo.png
0 → 100644
This diff is collapsed.
docs/conf.py
0 → 100644
This diff is collapsed.
docs/conf.yaml
0 → 100644
This diff is collapsed.
This diff is collapsed.
docs/favicon.ico
0 → 100644
This diff is collapsed.
docs/index.rst
0 → 100644
This diff is collapsed.
docs/installation-guide.rst
0 → 100755
This diff is collapsed.
docs/overview.rst
0 → 100644
This diff is collapsed.
docs/release-notes.rst
0 → 100644
This diff is collapsed.
docs/requirements-docs.txt
0 → 100644
This diff is collapsed.
docs/user-guide.rst
0 → 100755
This diff is collapsed.
init/config-file.json
0 → 100644
This diff is collapsed.
init/init_script.py
0 → 100644
This diff is collapsed.
init/routes.txt
0 → 100644
This diff is collapsed.
init/schema.json
0 → 100644
This diff is collapsed.
This diff is collapsed.
rmr-version.yaml
0 → 100644
This diff is collapsed.
schemas/hwxapp-policy.json
0 → 100644
This diff is collapsed.
schemas/hwxapp-ves.json
0 → 100644
This diff is collapsed.
src/.routes.txt.swp
0 → 100644
This diff is collapsed.
src/Makefile
0 → 100755
This diff is collapsed.
src/README
0 → 100644
This diff is collapsed.
src/hw_xapp_main.cc
0 → 100644
This diff is collapsed.
src/routes.txt
0 → 100755
This diff is collapsed.
src/run_xapp.sh
0 → 100755
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
src/xapp-mgmt/a1_helper.hpp
0 → 100644
This diff is collapsed.
src/xapp-mgmt/msgs_proc.cc
0 → 100644
This diff is collapsed.
src/xapp-mgmt/msgs_proc.hpp
0 → 100644
This diff is collapsed.
src/xapp-mgmt/subs_mgmt.cc
0 → 100644
This diff is collapsed.
src/xapp-mgmt/subs_mgmt.hpp
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
src/xapp-utils/xapp_rmr.cc
0 → 100755
This diff is collapsed.
src/xapp-utils/xapp_rmr.hpp
0 → 100755
This diff is collapsed.
src/xapp-utils/xapp_sdl.cc
0 → 100644
This diff is collapsed.
src/xapp-utils/xapp_sdl.hpp
0 → 100644
This diff is collapsed.
src/xapp.cc
0 → 100644
This diff is collapsed.
src/xapp.hpp
0 → 100644
This diff is collapsed.
src/xapp_env.sh
0 → 100755
This diff is collapsed.
test/Makefile
0 → 100644
This diff is collapsed.
test/hw_unit_tests.cc
0 → 100644
This diff is collapsed.
test/routes.txt
0 → 100644
This diff is collapsed.
test/test_cntrl.h
0 → 100644
This diff is collapsed.
test/test_db.h
0 → 100644
This diff is collapsed.
test/test_e2ap.h
0 → 100644
This diff is collapsed.
test/test_hc.h
0 → 100644
This diff is collapsed.
test/test_indc.h
0 → 100644
This diff is collapsed.
test/test_rmr.h
0 → 100644
This diff is collapsed.
test/test_subs.h
0 → 100644
This diff is collapsed.
test/xapp_env.sh
0 → 100755
This diff is collapsed.
tox.ini
0 → 100644
This diff is collapsed.
Please register or sign in to comment