service.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
  3. * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License version 2.1
  7. * as published by the Free Software Foundation
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __PROCD_SERVICE_H
  15. #define __PROCD_SERVICE_H
  16. #include <libubox/avl.h>
  17. #include <libubox/vlist.h>
  18. #include <libubox/list.h>
  19. #include "../utils/utils.h"
  20. extern struct avl_tree services;
  21. extern struct avl_tree containers;
  22. struct vrule {
  23. struct avl_node avl;
  24. char *option;
  25. char *rule;
  26. };
  27. struct validate {
  28. struct avl_node avl;
  29. struct list_head list;
  30. char *package;
  31. char *type;
  32. struct avl_tree rules;
  33. };
  34. struct service {
  35. struct avl_node avl;
  36. const char *name;
  37. bool deleted;
  38. bool autostart;
  39. struct blob_attr *trigger;
  40. struct vlist_tree instances;
  41. struct list_head validators;
  42. struct blob_attr *data;
  43. struct blobmsg_list data_blob;
  44. };
  45. void service_validate_add(struct service *s, struct blob_attr *attr);
  46. void service_validate_dump(struct blob_buf *b, struct service *s);
  47. void service_validate_dump_all(struct blob_buf *b, char *p, char *s);
  48. int service_start_early(char *name, char *cmdline, char *user, char *group);
  49. void service_stopped(struct service *s);
  50. void service_validate_del(struct service *s);
  51. void service_event(const char *type, const char *service, const char *instance);
  52. #endif