0f0127cfcdd4024fa13b3141f4a885ea0d1d009d
[com/gs-lite.git] / include / lfta / rts_external.h
1 #ifndef RTS_STRING_H
2 #define RTS_STRING_H
3
4 /* ------------------------------------------------
5  Copyright 2014 AT&T Intellectual Property
6  Licensed under the Apache License, Version 2.0 (the "License");
7  you may not use this file except in compliance with the License.
8  You may obtain a copy of the License at
9  
10  http://www.apache.org/licenses/LICENSE-2.0
11  
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17  ------------------------------------------- */
18
19 #include <stdint.h>
20
21 #include "gsconfig.h"
22 #include "gstypes.h"
23
24 #define IS_BIG_ENDIAN (*(uint16_t *)"\0\xff" < 0x100)
25
26 //      struct string32 matches vstring32, its the packed record format.
27 //      struct gs_string is the in-memory format.
28
29 struct string32{
30         gs_int32_t length;
31         gs_int32_t offset;
32         gs_int32_t reserved;
33 };
34
35
36 /* struct gs_string has to match definition in host.h however, the data
37  types differ */
38
39 struct gs_string {
40     gs_int32_t length;
41     gs_sp_t data;
42     struct FTA * owner;    
43 };
44
45 #include "fta.h"
46 #include "rts.h"
47
48
49 /* Basic string operation */
50
51 gs_retval_t str_assign_with_copy(struct FTA *, struct gs_string * dest, struct gs_string * src);
52
53 gs_retval_t str_assign_with_copy_in_tuple(struct string32 * dest, struct gs_string * src,
54                                           gs_sp_t start, gs_sp_t buf);
55
56 #define str_destroy(s) {if ((s)->owner!=0) fta_free((s)->owner,(s)->data);}
57
58 gs_retval_t str_replace(struct FTA *,  struct gs_string * dest, struct gs_string * src );
59
60 #define str_length(s) (s)->length
61
62 /* Searching within a string */
63
64 gs_retval_t str_exists_substr( struct gs_string * str1, struct gs_string * str2);
65
66 /* String comparison */
67
68 gs_retval_t str_compare( struct gs_string * str1, struct gs_string * str2);
69
70
71 /*      Construct a string constant */
72
73 gs_retval_t str_constructor(struct gs_string *s, gs_sp_t l);
74
75
76 /* External Function definitions */
77
78 #define LLMIN(x,y) ((x)<(y)?(x):(y))
79 #define LLMAX(x,y) ((x)<(y)?(y):(x))
80 #define UMIN(x,y) ((x)<(y)?(x):(y))
81 #define UMAX(x,y) ((x)<(y)?(y):(x))
82 // type conversion
83 #define INT(c) ((int)(c))
84 #define UINT(c) ((unsigned int)(c))
85 #define ULLONG(c) ((unsigned long long)(c))
86 #define FLOAT(c) ((double)(c))
87
88 //      Cast away temporality
89 #define non_temporal(x)(x)
90
91
92
93 gs_uint32_t str_match_offset( gs_uint32_t offset, struct gs_string * s1, struct gs_string * s2);
94 gs_uint32_t byte_match_offset( gs_uint32_t offset, gs_uint32_t val, struct gs_string * s2);
95 gs_param_handle_t register_handle_for_str_regex_match_slot_1(struct FTA * f,
96                                                              struct gs_string* pattern);
97 gs_uint32_t str_regex_match(struct gs_string* str, gs_param_handle_t pattern_handle);
98 gs_retval_t deregister_handle_for_str_regex_match_slot_1(gs_param_handle_t handle);
99
100 gs_param_handle_t register_handle_for_str_partial_regex_match_slot_1(struct FTA * f,
101                                                                      struct gs_string* pattern);
102 gs_uint32_t str_partial_regex_match(struct gs_string* str,
103                                     gs_param_handle_t pattern_handle,
104                                     gs_uint32_t maxlen);
105 gs_retval_t deregister_handle_for_str_partial_regex_match_slot_1(
106                                                                  gs_param_handle_t
107                                                                  handle);
108
109 inline static gs_retval_t str_truncate(struct gs_string * result, struct gs_string *str, gs_uint32_t length) {
110         result->data=str->data;
111         result->length=(str->length<length)?str->length:length;
112         return 0;
113 }
114
115 //      constant string conversions
116 gs_param_handle_t register_handle_for_strtoi_c_slot_0(struct FTA * f, struct gs_string* istr) ;
117 gs_retval_t deregister_handle_for_strtoi_c_slot_0(gs_param_handle_t h) ;
118 #define strtoi_c(h) ((unsigned int)(h))
119
120 gs_param_handle_t register_handle_for_strtoip_c_slot_0(struct FTA * f, struct gs_string* istr) ;
121 gs_retval_t deregister_handle_for_strtoip_c_slot_0(gs_param_handle_t h) ;
122 #define strtoip_c(h) ((unsigned int)(h))
123
124
125
126 ////////////////////////////////////////////////
127 ///             IPV6
128
129 #ifndef IPV6_STR
130 #define IPV6_STR
131 struct ipv6_str{
132         gs_uint32_t v[4];
133 };
134 #endif
135
136 gs_int32_t ipv6_compare( struct ipv6_str  i1, struct ipv6_str  i2);
137 gs_int32_t Ipv6_Constructor(struct ipv6_str *s, char *l);
138 struct ipv6_str And_Ipv6(const struct ipv6_str i1, const struct ipv6_str i2);
139 struct ipv6_str Or_Ipv6(const struct ipv6_str i1, const struct ipv6_str i2);
140 struct ipv6_str hton_ipv6(struct ipv6_str s);
141 struct ipv6_str ntoh_ipv6(struct ipv6_str s);
142
143
144 ////////////////////////////////////////////////
145 ///             Regex pattern extraction based on signature library for VideoNOC
146 gs_param_handle_t register_handle_for_signaturelib_get_content_id_slot_2(struct FTA * f, struct gs_string* signature_file);
147 gs_uint32_t signaturelib_get_content_id(struct gs_string* result, struct gs_string* url, gs_uint32_t content_length, gs_param_handle_t handle);
148 gs_retval_t deregister_handle_for_signaturelib_get_content_id_slot_2(gs_param_handle_t handle);
149
150 gs_uint32_t signaturelib_get_fqdn(struct gs_string* result);
151 gs_uint32_t signaturelib_get_channel_type(struct gs_string* result);
152
153 #endif