| /* |
| * Copyright (c) 2014 Netflix, Inc. |
| * All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are met: |
| * |
| * Redistributions of source code must retain the above copyright notice, this |
| * list of conditions and the following disclaimer. |
| * Redistributions in binary form must reproduce the above copyright notice, |
| * this list of conditions and the following disclaimer in the documentation |
| * and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY NETFLIX, INC. AND CONTRIBUTORS "AS IS" AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| * DISCLAIMED. IN NO EVENT SHALL NETFLIX OR CONTRIBUTORS BE LIABLE FOR ANY |
| * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| /* |
| * Functions related to storing/retrieving and manipulating DIAL data. |
| */ |
| #include "dial_data.h" |
| #include <stddef.h> |
| #include <stdlib.h> |
| #include <stdio.h> |
| #include <string.h> |
| |
| /** |
| * Returns the path where data is stored for the given app. |
| */ |
| static char* getAppPath(char app_name[]) { |
| size_t name_size = strlen(app_name) + sizeof(DIAL_DATA_DIR) + 1; |
| char* filename = (char*) malloc(name_size); |
| filename[0] = 0; |
| strncat(filename, DIAL_DATA_DIR, name_size); |
| strncat(filename, app_name, name_size - sizeof(DIAL_DATA_DIR)); |
| return filename; |
| } |
| |
| void store_dial_data(char app_name[], DIALData *data) { |
| char* filename = getAppPath(app_name); |
| FILE *f = fopen(filename, "w"); |
| if (f == NULL) { |
| printf("Cannot open DIAL data output file: %s\n", filename); |
| exit(1); |
| } |
| for (DIALData *first = data; first != NULL; first = first->next) { |
| fprintf(f, "%s %s\n", first->key, first->value); |
| } |
| fclose(f); |
| } |
| |
| DIALData *retrieve_dial_data(char *app_name) { |
| char* filename = getAppPath(app_name); |
| FILE *f = fopen(filename, "r"); |
| if (f == NULL) { |
| return NULL; // no dial data found, that's fine |
| } |
| DIALData *result = NULL; |
| char key[256]; |
| char value[256]; |
| while (fscanf(f, "%255s %255s\n", key, value) != EOF) { |
| DIALData *newNode = (DIALData *) malloc(sizeof(DIALData)); |
| newNode->key = strdup(key); |
| newNode->value = strdup(value); |
| newNode->next = result; |
| result = newNode; |
| } |
| fclose(f); |
| return result; |
| } |
| |