Skip to content
Snippets Groups Projects
Select Git revision
  • 1eae8dbcdfb56fecea20df44543f132cd5bc64ec
  • without_tipselection default
  • develop protected
  • fix/grafana-local-dashboard
  • wasp
  • fix/dashboard-explorer-freeze
  • master
  • feat/timerqueue
  • test/sync_debug_and_650
  • feat/sync_revamp_inv
  • wip/sync
  • tool/db-recovery
  • portcheck/fix
  • fix/synchronization
  • feat/new-dashboard-analysis
  • feat/refactored-analysis-dashboard
  • feat/new-analysis-dashboard
  • test/demo-prometheus-fpc
  • prometheus_metrics
  • wip/analysis-server
  • merge/fpc-test-value-transfer
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
28 results

bc_ternary_multiplexer.go

Blame
  • xaal_jc.h 1.77 KiB
    /* libxaal_jc
     * Auxiliary json2cbor & cbor2json transcoders for xAAL
     *
     * (c) 2019 Christophe Lohr <christophe.lohr@imt-atlantique.fr>
     *
     * This program is free software: you can redistribute it and/or modify it
     * under the terms of the GNU Lesser General Public License as published by
     * the Free Software Foundation, either version 3 of the License, or (at
     * your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU Lesser General Public License for more details.
     *
     * You should have received a copy of the GNU Lesser General Public License
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     */
    
    
    #ifndef LIBXAAL_JC
    #define LIBXAAL_JC
    
    #define xAAL_JC_VERSION	"0.2"
    
    #include <cbor.h>
    #include <json-c/json.h>
    
    /*
     * cbor2json
     */
    
    /* Transcode a cbor bytestring into json string, with hexadecimal notation
     * Except bytestring[16] that are encoded as uuid (i.e. hexa with dash) */
    json_object *xAAL_bytestring2json(cbor_item_t *item);
    
    /* Do its best to transcode cbor data into json
     * Strings are converted as above, tags are ignored */
    json_object *xAAL_cbor2json(cbor_item_t *item);
    
    
    /*
     * json2cbor
     */
    
    /* Transcode a json string into cbor
     * Note: if the string represents an uuid, parse it and return a bytestring[16],
     * else return a cbor string */
    cbor_item_t *xAAL_jsonstring2cbor(json_object *jobj);
    
    /* Do its best to transcode json data into cbor
     * Strings are converted as above */
    cbor_item_t *xAAL_json2cbor(json_object *jobj);
    
    /* Explicitly transcode a base64 data json string into a cbor bytestring */
    cbor_item_t *xAAL_jsonb64_to_bytestring(json_object *jobj);
    
    
    #endif