72 lines
2.6 KiB
C
72 lines
2.6 KiB
C
|
|
/*
|
||
|
|
* Author: Brendan Le Foll <brendan.le.foll@intel.com>
|
||
|
|
* Copyright (c) 2016 Intel Corporation.
|
||
|
|
*
|
||
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||
|
|
* a copy of this software and associated documentation files (the
|
||
|
|
* "Software"), to deal in the Software without restriction, including
|
||
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
||
|
|
* the following conditions:
|
||
|
|
*
|
||
|
|
* The above copyright notice and this permission notice shall be
|
||
|
|
* included in all copies or substantial portions of the Software.
|
||
|
|
*
|
||
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <string.h>
|
||
|
|
#include <stdint.h>
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include <unistd.h>
|
||
|
|
#include <json-c/json.h>
|
||
|
|
#include <libudev.h>
|
||
|
|
|
||
|
|
#include <argp.h>
|
||
|
|
#include <error.h>
|
||
|
|
|
||
|
|
#include <mraa/uart.h>
|
||
|
|
#include <mraa/gpio.h>
|
||
|
|
#include <mraa/i2c.h>
|
||
|
|
#include <mraa/pwm.h>
|
||
|
|
|
||
|
|
#include <mraa_internal.h>
|
||
|
|
|
||
|
|
void
|
||
|
|
imraa_write_lockfile(const char* lock_file_location, const char* serialport)
|
||
|
|
{
|
||
|
|
FILE* fh;
|
||
|
|
char str[10];
|
||
|
|
json_object* platform1 = json_object_new_object();
|
||
|
|
snprintf(str, 10, "%d", MRAA_NULL_PLATFORM);
|
||
|
|
json_object_object_add(platform1, "id", json_object_new_string(str));
|
||
|
|
|
||
|
|
json_object* platform2 = json_object_new_object();
|
||
|
|
snprintf(str, 10, "%d", MRAA_GENERIC_FIRMATA);
|
||
|
|
json_object_object_add(platform2, "id", json_object_new_string(str));
|
||
|
|
json_object_object_add(platform2, "uart", json_object_new_string(serialport));
|
||
|
|
|
||
|
|
json_object* platfroms = json_object_new_array();
|
||
|
|
json_object_array_add(platfroms, platform1);
|
||
|
|
json_object_array_add(platfroms, platform2);
|
||
|
|
json_object* lock_file = json_object_new_object();
|
||
|
|
json_object_object_add(lock_file, "Platform", platfroms);
|
||
|
|
fh = fopen(lock_file_location, "w");
|
||
|
|
if (fh != NULL) {
|
||
|
|
fputs(json_object_to_json_string_ext(lock_file, JSON_C_TO_STRING_PRETTY), fh);
|
||
|
|
fclose(fh);
|
||
|
|
} else {
|
||
|
|
fprintf(stderr, "can't write to lock file\n");
|
||
|
|
}
|
||
|
|
json_object_put(lock_file);
|
||
|
|
}
|