blob: 9b4b09ee53668e3ec308c8640263c1880d77a85f [file] [log] [blame]
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +02001/* encoding.cpp
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
5 * Copyright (C) 2013 by Holger Hans Peter Freyther
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21#pragma once
22
23#include <stdint.h>
24#include <gsm_rlcmac.h>
25
26struct gprs_rlcmac_bts;
27struct gprs_rlcmac_tbf;
28struct bitvec;
Jacob Erlbeck14bb0942016-01-12 11:58:13 +010029struct gprs_llc;
30struct gprs_rlc_data_block_info;
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020031
32/**
33 * I help with encoding data into CSN1 messages.
34 * TODO: Nobody can remember a function signature like this. One should
35 * fill out a struct with the request parameters and then hand the struct
36 * to the code.
37 */
38class Encoding {
39public:
40 static int write_immediate_assignment(
41 struct gprs_rlcmac_bts *bts,
42 bitvec * dest, uint8_t downlink, uint8_t ra,
43 uint32_t ref_fn, uint8_t ta, uint16_t arfcn, uint8_t ts, uint8_t tsc,
44 uint8_t tfi, uint8_t usf, uint32_t tlli, uint8_t polling,
45 uint32_t fn, uint8_t single_block, uint8_t alpha, uint8_t gamma,
46 int8_t ta_idx);
47
48 static void write_packet_uplink_assignment(
49 struct gprs_rlcmac_bts *bts,
50 bitvec * dest, uint8_t old_tfi,
51 uint8_t old_downlink, uint32_t tlli, uint8_t use_tlli,
Daniel Willmannf55e58f2014-08-07 15:02:16 +020052 struct gprs_rlcmac_ul_tbf *tbf, uint8_t poll, uint8_t alpha,
Jacob Erlbeck76d767c2015-09-28 18:54:32 +020053 uint8_t gamma, int8_t ta_idx, int8_t use_egprs);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020054
Jacob Erlbeck166c9fc2016-01-07 16:04:29 +010055 static void write_packet_downlink_assignment(RlcMacDownlink_t * block,
56 uint8_t old_tfi, uint8_t old_downlink,
57 struct gprs_rlcmac_tbf *tbf, uint8_t poll, uint8_t alpha,
58 uint8_t gamma, int8_t ta_idx, uint8_t ta_ts,
59 bool use_egprs);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020060
Daniel Willmann5241c1a2013-12-11 14:35:29 +010061 static void encode_rbb(const char *show_rbb, uint8_t *rbb);
62
Jacob Erlbeck37005a12015-12-22 14:58:34 +010063 static void write_packet_uplink_ack(
64 struct gprs_rlcmac_bts *bts, bitvec * dest,
65 struct gprs_rlcmac_ul_tbf *tbf, bool is_final);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020066
67 static int write_paging_request(bitvec * dest, uint8_t *ptmsi, uint16_t ptmsi_len);
68
69 static unsigned write_repeated_page_info(bitvec * dest, unsigned& wp, uint8_t len,
70 uint8_t *identity, uint8_t chan_needed);
71
72 static unsigned write_packet_paging_request(bitvec * dest);
Jacob Erlbeckf0e40392016-01-08 10:07:53 +010073
74 static int rlc_write_dl_data_header(
75 const struct gprs_rlc_data_info *rlc,
76 uint8_t *data);
77 static unsigned int rlc_copy_from_aligned_buffer(
78 const struct gprs_rlc_data_info *rlc,
79 unsigned int data_block_idx,
80 uint8_t *dst, const uint8_t *buffer);
Jacob Erlbeck14bb0942016-01-12 11:58:13 +010081
82 enum AppendResult {
83 AR_NEED_MORE_BLOCKS,
84 AR_COMPLETED_SPACE_LEFT,
85 AR_COMPLETED_BLOCK_FILLED,
86 };
87
88 static AppendResult rlc_data_to_dl_append(
89 struct gprs_rlc_data_block_info *rdbi,
90 gprs_llc *llc, int *offset, int *num_chunks,
91 uint8_t *data,
92 bool is_final);
Holger Hans Peter Freyther63f29d62013-10-19 19:04:03 +020093};