Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • b6434de0cd094572d60e00216b4b2d77ce45b304
  • master par défaut protégée
  • devel
  • v5.2.6
  • v5.2.5
5 résultats

Action.pm

Blame
    • ElTata's avatar
      b6434de0
      new classes · b6434de0
      ElTata a rédigé
      commands showing player info also show alignment
      tabulation homogenized
      b6434de0
      Historique
      new classes
      ElTata a rédigé
      commands showing player info also show alignment
      tabulation homogenized
    module_repo.c 27,38 Kio
    #define _POSIX_C_SOURCE 200809L
    
    #define __LKT_MODULE_MAIN_SOURCE__
    #include <lektor/lktmodule.h>
    
    #include "worker.h"
    
    #include <pthread.h>
    #include <errno.h>
    #include <stdio.h>
    #include <unistd.h>
    #include <string.h>
    #include <strings.h>
    #include <limits.h>
    #include <stdlib.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <time.h>
    #include <stdarg.h>
    
    /* Different kinds of updates */
    #define REPO_UPDATE_KARA (1 << 1)   /* Downloading or rescanning the bakabase */
    #define REPO_UPDATE_FAV  (1 << 2)   /* Downloading the favorites */
    #define REPO_UPDATE_TYPE_COUNT 2    /* Different kinds of download, for some sizes... */
    
    /***********
     * Globals *
     ***********/
    
    static volatile unsigned int __curl_init = false;
    
    /*********************
     * Private structure *
     *********************/
    
    struct module_repo_internal;
    
    struct kara {
        int ignored_count;
        int update_count;
        volatile sqlite3 *db;
        struct module_repo_internal *repo;
        long id;
        long unix_timestamp;
        struct kara_metadata mdt;
        char mkvpropedit[LKT_LINE_MAX];
        char url[LKT_LINE_MAX];
        char database_filepath[PATH_MAX];
        char filename[PATH_MAX];
    };
    
    struct module_repo_internal {
        /* Just the repo */
        char *name;
        char *base_url;
        char *kara_dir;
        char *get_all_json;
        char *get_id_json;
        char *get_id_file;
        char *get_fav_json;
        const uint64_t version;
    
        /* Worker threads */
        struct worker_pool workers;
        pthread_mutex_t mtx; /* Protect the updating field */
        // *INDENT-OFF*
        volatile unsigned int updating : REPO_UPDATE_TYPE_COUNT; /* The correct size */
        // *INDENT-ON*