prefix-code the string store, difference-code the dependency idarrays.
[platform/upstream/libsolv.git] / src / pool.h
index bf68ed0..dcdc805 100644 (file)
@@ -1,10 +1,17 @@
 /*
+ * Copyright (c) 2007, Novell Inc.
+ *
+ * This program is licensed under the BSD license, read LICENSE.BSD
+ * for further information
+ */
+
+/*
  * pool.h
  * 
  */
 
-#ifndef POOL_H
-#define POOL_H
+#ifndef SATSOLVER_POOL_H
+#define SATSOLVER_POOL_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -12,117 +19,123 @@ extern "C" {
 
 #include "pooltypes.h"
 #include "poolid.h"
-#include "repo.h"
 #include "solvable.h"
 #include "queue.h"
+#include "strpool.h"
 
-// bool
-#ifndef __cplusplus
-#ifndef SWIG
- typedef _Bool bool;
-#endif
-#endif
 // see initpool_data[] in pool.c
 
 /* well known ids */
-#define ID_NULL                        0
-#define ID_EMPTY               1
+#define ID_NULL                        STRID_NULL
+#define ID_EMPTY               STRID_EMPTY
 #define SOLVABLE_NAME          2
 #define SOLVABLE_ARCH          3
 #define SOLVABLE_EVR           4
-#define SOLVABLE_PROVIDES      5
-#define SOLVABLE_OBSOLETES     6
-#define SOLVABLE_CONFLICTS     7
-#define SOLVABLE_REQUIRES      8
-#define SOLVABLE_RECOMMENDS    9
-#define SOLVABLE_SUGGESTS      10
-#define SOLVABLE_SUPPLEMENTS   11
-#define SOLVABLE_ENHANCES      12
-#define SOLVABLE_FRESHENS      13
-#define RPM_RPMDBID            14
-#define SOLVABLE_PREREQMARKER  15              // normal requires before this, prereqs after this
-#define SOLVABLE_FILEMARKER    16              // normal provides before this, generated file provides after this
-#define NAMESPACE_INSTALLED    17
-#define NAMESPACE_MODALIAS     18
-#define SYSTEM_SYSTEM          19
-#define ARCH_SRC               20
-#define ARCH_NOSRC             21
-#define ARCH_NOARCH            22
+#define SOLVABLE_VENDOR                5
+#define SOLVABLE_PROVIDES      6
+#define SOLVABLE_OBSOLETES     7
+#define SOLVABLE_CONFLICTS     8
+#define SOLVABLE_REQUIRES      9
+#define SOLVABLE_RECOMMENDS    10
+#define SOLVABLE_SUGGESTS      11
+#define SOLVABLE_SUPPLEMENTS   12
+#define SOLVABLE_ENHANCES      13
+#define SOLVABLE_FRESHENS      14
+#define RPM_RPMDBID            15
+#define SOLVABLE_PREREQMARKER  16              // normal requires before this, prereqs after this
+#define SOLVABLE_FILEMARKER    17              // normal provides before this, generated file provides after this
+#define NAMESPACE_INSTALLED    18
+#define NAMESPACE_MODALIAS     19
+#define SYSTEM_SYSTEM          20
+#define ARCH_SRC               21
+#define ARCH_NOSRC             22
+#define ARCH_NOARCH            23
 
 /* well known solvable */
 #define SYSTEMSOLVABLE         1
 
-//-----------------------------------------------
 
-struct _Pool {
-  int verbose;         // pool is used everywhere, so put the verbose flag here
+/* how many strings to maintain (round robin) */
+#define DEP2STRBUF 16
+
+//-----------------------------------------------
 
-  Offset *strings;            // table of offsets into stringspace, indexed by Id: Id -> Offset
-  int nstrings;               // number of unique strings in stringspace
-  char *stringspace;          // space for all unique strings: stringspace + Offset = string
-  Offset sstrings;            // next free pos in stringspace
+struct _Repo;
 
-  Hashtable stringhashtbl;    // hash table: (string ->) Hash -> Id
-  Hashmask stringhashmask;    // modulo value for hash table (size of table - 1)
+struct _Pool {
+  struct _Stringpool ss;
 
   Reldep *rels;               // table of rels: Id -> Reldep
   int nrels;                  // number of unique rels
   Hashtable relhashtbl;       // hash table: (name,evr,op ->) Hash -> Id
   Hashmask relhashmask;
 
-  Repo **repos;
+  struct _Repo **repos;
   int nrepos;
 
   Solvable *solvables;
   int nsolvables;
 
-  bool promoteepoch;
+  int promoteepoch;             /* 0/1  */
 
   Id *id2arch;                 /* map arch ids to scores */
   Id lastarch;                 /* last valid entry in id2arch */
+  Queue vendormap;             /* map vendor to vendorclasses mask */
 
   /* providers data, as two-step indirect list
    * whatprovides[Id] -> Offset into whatprovidesdata for name
    * whatprovidesdata[Offset] -> ID_NULL-terminated list of solvables providing Id
    */
   Offset *whatprovides;                /* Offset to providers of a specific name, Id -> Offset  */
+  Offset *whatprovides_rel;    /* Offset to providers of a specific relation, Id -> Offset  */
+
   Id *whatprovidesdata;                /* Ids of solvable providing Id */
   Offset whatprovidesdataoff;  /* next free slot within whatprovidesdata */
   int whatprovidesdataleft;    /* number of 'free slots' within whatprovidesdata */
 
   Id (*nscallback)(struct _Pool *, void *data, Id name, Id evr);
   void *nscallbackdata;
+
+  /* our dep2str string space */
+  char *dep2strbuf[DEP2STRBUF];
+  int   dep2strlen[DEP2STRBUF];
+  int   dep2strn;
+
+  /* debug mask and callback */
+  int  debugmask;
+  void (*debugcallback)(struct _Pool *, void *data, int type, const char *str);
+  void *debugcallbackdata;
 };
 
+#define SAT_FATAL                      (1<<0)
+#define SAT_ERROR                      (1<<1)
+#define SAT_WARN                       (1<<2)
+#define SAT_DEBUG_STATS                        (1<<3)
+#define SAT_DEBUG_RULE_CREATION                (1<<4)
+#define SAT_DEBUG_PROPAGATE            (1<<5)
+#define SAT_DEBUG_ANALYZE              (1<<6)
+#define SAT_DEBUG_UNSOLVABLE           (1<<7)
+#define SAT_DEBUG_SOLUTIONS            (1<<8)
+#define SAT_DEBUG_POLICY               (1<<9)
+#define SAT_DEBUG_RESULT               (1<<10)
+#define SAT_DEBUG_JOB                  (1<<11)
+#define SAT_DEBUG_SCHUBI               (1<<12)
+
 #define TYPE_ID                        1
 #define TYPE_IDARRAY           2
 #define TYPE_STR               3
 #define TYPE_U32               4
-#define TYPE_BITMAP            128
+#define TYPE_REL_IDARRAY       5
 
 
 //-----------------------------------------------
 
-// whatprovides
-//  "foo" -> Id -> lookup in table, returns offset into whatprovidesdata where array of Ids providing 'foo' are located, 0-terminated
-
-
-#define GET_PROVIDESP(d, v) (ISRELDEP(d) ?                             \
-             (v = GETRELID(pool, d), pool->whatprovides[v] ?           \
-               pool->whatprovidesdata + pool->whatprovides[v] :                \
-              pool_addrelproviders(pool, d)                            \
-             ) :                                                       \
-             (pool->whatprovidesdata + pool->whatprovides[d]))
-
-/* loop over all providers of d */
-#define FOR_PROVIDES(v, vp, d)                                                 \
-  for (vp = GET_PROVIDESP(d, v) ; (v = *vp++) != ID_NULL; )
 
 /* mark dependencies with relation by setting bit31 */
 
 #define MAKERELDEP(id) ((id) | 0x80000000)
 #define ISRELDEP(id) (((id) & 0x80000000) != 0)
-#define GETRELID(pool, id) ((pool)->nstrings + ((id) ^ 0x80000000))     /* returns Id  */
+#define GETRELID(id) ((id) ^ 0x80000000)                               /* returns Id */
 #define GETRELDEP(pool, id) ((pool)->rels + ((id) ^ 0x80000000))       /* returns Reldep* */
 
 #define REL_GT         1
@@ -134,6 +147,10 @@ struct _Pool {
 #define REL_WITH       18
 #define REL_NAMESPACE  19
 
+#if !defined(__GNUC__) && !defined(__attribute__)
+# define __attribute__(x)
+#endif
+
 /**
  * Creates a new pool
  */
@@ -142,30 +159,75 @@ extern Pool *pool_create(void);
  * Delete a pool
  */
 extern void pool_free(Pool *pool);
+
+extern void pool_debug(Pool *pool, int type, const char *format, ...) __attribute__((format(printf, 3, 4)));
+
 /**
- * ????
+ * Solvable management
  */
-extern void pool_freerepo(Pool *pool, Repo *repo);
+extern Id pool_add_solvable(Pool *pool);
+extern Id pool_add_solvable_block(Pool *pool, int count);
+
+extern void pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids);
+static inline Solvable *pool_id2solvable(Pool *pool, Id p)
+{
+  return pool->solvables + p;
+}
+extern const char *solvable2str(Pool *pool, Solvable *s);
+
+
 /**
  * Prepares a pool for solving
  */
-extern void pool_prepare(Pool *pool);
+extern void pool_createwhatprovides(Pool *pool);
 extern void pool_freewhatprovides(Pool *pool);
 extern Id pool_queuetowhatprovides(Pool *pool, Queue *q);
 
-extern Id *pool_addrelproviders(Pool *pool, Id d);
-
 static inline int pool_installable(Pool *pool, Solvable *s)
 {
-  if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
+  if (!s->arch || s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
     return 0;
   if (pool->id2arch && (s->arch > pool->lastarch || !pool->id2arch[s->arch]))
     return 0;
   return 1;
 }
 
+extern Id *pool_addrelproviders(Pool *pool, Id d);
+
+static inline Id *pool_whatprovides(Pool *pool, Id d)
+{
+  Id v;
+  if (!ISRELDEP(d))
+    return pool->whatprovidesdata + pool->whatprovides[d];
+  v = GETRELID(d);
+  if (pool->whatprovides_rel[v])
+    return pool->whatprovidesdata + pool->whatprovides_rel[v];
+  return pool_addrelproviders(pool, d);
+}
+
+extern void pool_setdebuglevel(Pool *pool, int level);
+
+static inline void pool_setdebugcallback(Pool *pool, void (*debugcallback)(struct _Pool *, void *data, int type, const char *str), void *debugcallbackdata)
+{
+  pool->debugcallback = debugcallback;
+  pool->debugcallbackdata = debugcallbackdata;
+}
+
+static inline void pool_setdebugmask(Pool *pool, int mask)
+{
+  pool->debugmask = mask;
+}
+
+/* loop over all providers of d */
+#define FOR_PROVIDES(v, vp, d)                                                 \
+  for (vp = pool_whatprovides(pool, d) ; (v = *vp++) != 0; )
+
+#define POOL_DEBUG(type, ...) do {if ((pool->debugmask & (type)) != 0) pool_debug(pool, (type), __VA_ARGS__);} while (0)
+#define IF_POOLDEBUG(type) if ((pool->debugmask & (type)) != 0)
+
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* POOL_H */
+
+#endif /* SATSOLVER_POOL_H */