Updated license
[anna.git] / include / anna / diameter / codec / functions.hpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
6 //
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
9 // are met:
10 //
11 //     * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 //     * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
16 // distribution.
17 //     * Neither the name of Google Inc. nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
20 //
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 #ifndef anna_diameter_codec_functions_hpp
38 #define anna_diameter_codec_functions_hpp
39
40
41 // Local
42 #include <anna/diameter/defines.hpp>
43
44 #include <anna/core/RuntimeException.hpp>
45
46 // STL
47 #include <string>
48
49 //------------------------------------------------------------------------------
50 //---------------------------------------------------------------------- #define
51 //------------------------------------------------------------------------------
52
53 // Diameter words are four-byte size. Store n bytes requires 1 word more than former multiple of 4:
54 #define REQUIRED_WORDS(bytes)  ((bytes)/4+((((bytes)%4)!=0)?1:0 ))
55
56
57
58 namespace anna {
59 class DataBlock;
60 }
61
62
63 namespace anna {
64
65 namespace diameter {
66
67 namespace codec {
68
69
70 struct functions {
71
72   // getters & helpers
73   static CommandId getCommandId(const anna::DataBlock &) throw(anna::RuntimeException);
74   static ApplicationId getApplicationId(const anna::DataBlock &) throw(anna::RuntimeException);
75   static HopByHop getHopByHop(const anna::DataBlock &) throw(anna::RuntimeException);
76   static EndToEnd getEndToEnd(const anna::DataBlock &) throw(anna::RuntimeException);
77
78   static bool isRequest(const CommandId & cid) throw() { return (cid.second); }
79   static bool isRequest(const anna::DataBlock &) throw(anna::RuntimeException);
80
81   static bool isAnswer(const CommandId & cid) throw() { return (!isRequest(cid)); }
82   static bool isAnswer(const anna::DataBlock & db) throw(anna::RuntimeException) { return (!isRequest(db)); }
83
84   /**
85   * Decodes a Command Header. This helper cannot check boundaries. start pointer must be a valid command context.
86   *
87   * @param start Must be a valid command start (point to the command version byte).
88   * @param version Diameter version.
89   * @param length Message length.
90   * @param flags Command flags.
91   * @param id Command identification (code, request<true,false>).
92   * @param appId Application-ID.
93   * @param hbh Hop-by-Hop Identifier.
94   * @param ete End-to-End Identifier.
95   */
96   static void decodeCommandHeader(const char *start, char & version, U24 & length, char & flags, CommandId & id, int & appId, int & hbh, int & ete) throw(anna::RuntimeException);
97
98   /**
99   * Decodes an AVP. This helper cannot check boundaries. start pointer must be a valid avp context.
100   *
101   * @param start Must be a valid avp start (point to the 32-bits avp code word).
102   * @param id Avp identification (code, vendorId).
103   * @param flags Avp flags byte.
104   * @param length Avp length (includes code, flags, length itself, vendorId if exists and data length).
105   * @param data Avp data part.
106   */
107   static void decodeAVP(const char *start, AvpId & id, char & flags, int & length, std::string & data) throw(anna::RuntimeException);
108
109   /**
110   * Gets the next AVP pointer reference starting from a first-avp datablock. It could be the first avp within
111   * a command, or within an grouped avp.
112   *
113   * @param avpsDB AVPs set as datablock
114   * @param start Point to start the search. Must be a valid avp start (point to the 32-bits avp code word).
115   *
116   * @return Pointer to the next AVP found. NULL if no more.
117   */
118   static const char * nextAVP(const anna::DataBlock & avpsDB, const char *start) throw(anna::RuntimeException);
119
120   /**
121   * Gets the next AVP pointer reference within an AVPs set datablock with a certain AVP identification.
122   *
123   * @param avpsDB AVPs set as datablock
124   * @param id Avp identification (code, vendorId).
125   * @param n Ocurrence number (first avp, second avp, etc.)
126   *
127   * @return Pointer to first AVP found with identification provided. NULL if not found.
128   */
129   static const char * findAVP(const anna::DataBlock & avpsDB, const AvpId & id, int n = 1) throw(anna::RuntimeException);
130
131
132
133   // modifiers
134   static void setHopByHop(anna::DataBlock &, HopByHop) throw(anna::RuntimeException);
135   static void setEndToEnd(anna::DataBlock &, EndToEnd) throw(anna::RuntimeException);
136 };
137
138
139 }
140 }
141 }
142
143
144 #endif
145