summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heim <phreak@gentoo.org>2006-06-05 20:00:03 +0000
committerChristian Heim <phreak@gentoo.org>2006-06-05 20:00:03 +0000
commitdd6984872d04dd19e76aa7cdc847bde886c47ece (patch)
tree6572b979e97ec9bf806bf5547bed692bc69fe2c3 /src/core/librcscripts/api/parse.h
parentMerging r2079 (diff)
downloadbaselayout-vserver-dd6984872d04dd19e76aa7cdc847bde886c47ece.tar.gz
baselayout-vserver-dd6984872d04dd19e76aa7cdc847bde886c47ece.tar.bz2
baselayout-vserver-dd6984872d04dd19e76aa7cdc847bde886c47ece.zip
Syncing trunk with upstream (as in deleting files)HEADmaster
svn path=/baselayout-vserver/trunk/; revision=373
Diffstat (limited to 'src/core/librcscripts/api/parse.h')
-rw-r--r--src/core/librcscripts/api/parse.h84
1 files changed, 0 insertions, 84 deletions
diff --git a/src/core/librcscripts/api/parse.h b/src/core/librcscripts/api/parse.h
deleted file mode 100644
index b5e07fa..0000000
--- a/src/core/librcscripts/api/parse.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * parse.h
- *
- * Parser for Gentoo style rc-scripts.
- *
- * Copyright (C) 2004,2005 Martin Schlemmer <azarah@nosferatu.za.org>
- *
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 of the License.
- *
- * 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
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * $Header$
- */
-
-#ifndef __PARSE_H__
-#define __PARSE_H__
-
-#define LEGACY_CACHE_FILE_NAME "deptree"
-
-#define FIELD_RCSCRIPT "RCSCRIPT"
-#define FIELD_NEED "NEED"
-#define FIELD_USE "USE"
-#define FIELD_BEFORE "BEFORE"
-#define FIELD_AFTER "AFTER"
-#define FIELD_PROVIDE "PROVIDE"
-#define FIELD_FAILED "FAILED"
-
-size_t generate_stage1 (dyn_buf_t *data);
-size_t generate_stage2 (dyn_buf_t *data);
-size_t read_stage2 (char **data);
-int write_stage2 (FILE * outfile);
-size_t generate_stage3 (char **data);
-size_t read_stage3 (char **data);
-int write_stage3 (FILE * outfile);
-int write_legacy_stage3 (FILE * output);
-int parse_cache (const dyn_buf_t *data);
-
-/*
- * get_rcscripts()
- * |
- * V
- * check_rcscripts_mtime() ------------------------------> read_stage3()
- * | |
- * | |
- * V V
- * generate_stage1() (Called by generate_stage2()) parse_cache()
- * | |
- * | |
- * V |
- * generate_stage2() ----> write_stage2() (Debugging) |
- * | |
- * | |
- * | === parse_cache() |
- * V | | |
- * generate_stage3() ==| | |
- * | | | |
- * | | V |
- * | === service_resolve_dependencies() |
- * | |
- * | |
- * |-------> write_legacy_stage3() (Proof of Concept |
- * | or Debugging) |
- * | |
- * V |
- * write_stage3() |
- * | |
- * | V
- * |<-------------------------------------------------------
- * |
- * V
- *
- */
-
-#endif /* __PARSE_H__ */