ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/cfperl.xs
(Generate patch)

Comparing deliantra/server/server/cfperl.xs (file contents):
Revision 1.131 by root, Mon Jan 8 18:18:35 2007 UTC vs.
Revision 1.150 by root, Tue Jan 23 01:05:18 2007 UTC

101 101
102unordered_vector<attachable *> attachable::mortals; 102unordered_vector<attachable *> attachable::mortals;
103 103
104attachable::~attachable () 104attachable::~attachable ()
105{ 105{
106 assert (!(flags & F_BORROWED)); 106 assert (!self);
107} 107}
108 108
109int 109int
110attachable::refcnt_cnt () const 110attachable::refcnt_cnt () const
111{ 111{
117{ 117{
118 if (self 118 if (self
119 && SvREFCNT (self) == 1 119 && SvREFCNT (self) == 1
120 && !HvTOTALKEYS (self)) 120 && !HvTOTALKEYS (self))
121 { 121 {
122 flags &= ~F_BORROWED;
123 refcnt_inc (); 122 refcnt_inc ();
124 SvREFCNT_dec ((SV *)self); 123 SvREFCNT_dec ((SV *)self);
125 } 124 }
126} 125}
127 126
128// check wether the object really is dead 127// check wether the object really is dead
129void 128void
130attachable::do_check () 129attachable::do_check ()
131{ 130{
132 if (refcnt > 0) 131 if (refcnt > 0 || refcnt_cnt () > 0)
133 return; 132 return;
134 133
135 optimise (); 134 destroy ();
136 135
137 if (self) 136 if (self)
138 { 137 {
139 if (refcnt + SvREFCNT (self) > 0) 138 hv_clear (self);
140 return; 139 sv_unmagic ((SV *)self, PERL_MAGIC_ext);
141
142 assert (flags & F_BORROWED);
143
144 flags &= ~F_BORROWED;
145 refcnt_inc ();
146 SvREFCNT_dec (self); 140 SvREFCNT_dec (self);
147 self = 0; 141 self = 0;
148 } 142 }
149
150 if (refcnt > 0)
151 return;
152
153 destroy ();
154} 143}
155 144
156void 145void
157attachable::do_destroy () 146attachable::do_destroy ()
158{ 147{
175} 164}
176 165
177void 166void
178attachable::check_mortals () 167attachable::check_mortals ()
179{ 168{
180 for (int i = 0; i < mortals.size (); ) 169 static int i = 0;
170
171 for (;;)
181 { 172 {
173 if (i >= mortals.size ())
174 {
175 i = 0;
176
177 if (mortals.size () > 1000)
178 fprintf (stderr, "mortal queue size (%d) exceeds 1000.\n", mortals.size ());
179
180 break;
181 }
182
182 attachable *obj = mortals [i]; 183 attachable *obj = mortals [i];
183 184
184 obj->refcnt_chk (); // unborrow from perl, if necessary 185 obj->refcnt_chk (); // unborrow from perl, if necessary
185 186
186 if (obj->refcnt || obj->self) 187 if (obj->refcnt > 0 || obj->self)
187 { 188 {
188#if 0 189//printf ("%p rc %d\n", obj, obj->refcnt_cnt ());//D
189 if (mortals.size() > 5)fprintf (stderr, "%d delaying %d:%p:%s %d (self %p:%d)\n", time(0),i, obj, typeid (*obj).name (),
190 obj->refcnt, obj->self, obj->self ? SvREFCNT(obj->self): - 1);//D
191#endif
192
193 ++i; // further delay freeing 190 ++i; // further delay freeing
191
192 if (!(i & 0x3ff))
193 break;
194 }//D 194 }
195 else 195 else
196 { 196 {
197 //Dfprintf (stderr, "deleteing %d:%p:%s\n", i, obj,typeid (*obj).name ());//D
198 mortals.erase (i); 197 mortals.erase (i);
199 delete obj; 198 delete obj;
200 } 199 }
201 } 200 }
202} 201}
227 226
228static int 227static int
229attachable_free (pTHX_ SV *sv, MAGIC *mg) 228attachable_free (pTHX_ SV *sv, MAGIC *mg)
230{ 229{
231 attachable *at = (attachable *)mg->mg_ptr; 230 attachable *at = (attachable *)mg->mg_ptr;
232 assert (!(at->flags & attachable::F_BORROWED));
233 at->self = 0; 231 at->self = 0;
234 // next line makes sense, but most objects still have refcnt 0 by default 232 // next line makes sense, but most objects still have refcnt 0 by default
235 //at->refcnt_chk (); 233 //at->refcnt_chk ();
236 return 0; 234 return 0;
237} 235}
248 { 246 {
249 obj->self = newHV (); 247 obj->self = newHV ();
250 sv_magicext ((SV *)obj->self, 0, PERL_MAGIC_ext, &attachable::vtbl, (char *)obj, 0); 248 sv_magicext ((SV *)obj->self, 0, PERL_MAGIC_ext, &attachable::vtbl, (char *)obj, 0);
251 249
252 // borrow the refcnt from the object 250 // borrow the refcnt from the object
253 obj->flags |= attachable::F_BORROWED; 251 // it is important thta no refcnt_chk is being executed here
254 obj->refcnt_dec (); 252 obj->refcnt_dec ();
255 253
256 // now bless the object _once_ 254 // now bless the object _once_
257 return sv_bless (newRV_inc ((SV *)obj->self), stash); 255 return sv_bless (newRV_inc ((SV *)obj->self), stash);
258 } 256 }
259 else 257 else
258 {
260 return newRV_inc ((SV *)obj->self); 259 SV *sv = newRV_inc ((SV *)obj->self);
260
261 if (Gv_AMG (stash)) // handle overload correctly, as the perl core does not
262 SvAMAGIC_on (sv);
263
264 return sv;
265 }
261} 266}
262 267
263static void 268static void
264clearSVptr (SV *sv) 269clearSVptr (SV *sv)
265{ 270{
318inline SV *to_sv (living * v) { return newSVptr (v, stash_cf_living_wrap); } 323inline SV *to_sv (living * v) { return newSVptr (v, stash_cf_living_wrap); }
319 324
320inline SV *to_sv (object & v) { return to_sv (&v); } 325inline SV *to_sv (object & v) { return to_sv (&v); }
321inline SV *to_sv (living & v) { return to_sv (&v); } 326inline SV *to_sv (living & v) { return to_sv (&v); }
322 327
323//TODO:
324inline SV *to_sv (New_Face * v) { return to_sv (v->name); } 328inline SV *to_sv (facetile * v) { return to_sv (v->name); }
325inline SV *to_sv (treasurelist * v) { return to_sv (v->name); } 329inline SV *to_sv (treasurelist * v) { return to_sv (v->name); }
326 330
327inline SV *to_sv (UUID v) 331inline SV *to_sv (UUID v)
328{ 332{
329 char buf[128]; 333 char buf[128];
354inline void sv_to (SV *sv, attachable * &v) { v = (attachable *)SvPTR_ornull (sv, "cf::attachable"); } 358inline void sv_to (SV *sv, attachable * &v) { v = (attachable *)SvPTR_ornull (sv, "cf::attachable"); }
355inline void sv_to (SV *sv, partylist * &v) { v = (partylist *)SvPTR_ornull (sv, "cf::party"); } 359inline void sv_to (SV *sv, partylist * &v) { v = (partylist *)SvPTR_ornull (sv, "cf::party"); }
356inline void sv_to (SV *sv, region * &v) { v = (region *)SvPTR_ornull (sv, "cf::region"); } 360inline void sv_to (SV *sv, region * &v) { v = (region *)SvPTR_ornull (sv, "cf::region"); }
357inline void sv_to (SV *sv, living * &v) { v = (living *)SvPTR_ornull (sv, "cf::living"); } 361inline void sv_to (SV *sv, living * &v) { v = (living *)SvPTR_ornull (sv, "cf::living"); }
358 362
359inline void sv_to (SV *sv, New_Face * &v) { v = &new_faces[FindFace (SvPV_nolen (sv), 0)]; } //TODO 363inline void sv_to (SV *sv, facetile * &v) { v = &new_faces[FindFace (SvPV_nolen (sv), 0)]; }
360inline void sv_to (SV *sv, treasurelist * &v) { v = find_treasurelist (SvPV_nolen (sv)); } // TODO 364inline void sv_to (SV *sv, treasurelist * &v) { v = find_treasurelist (SvPV_nolen (sv)); }
361 365
362template<class T> 366template<class T>
363inline void sv_to (SV *sv, refptr<T> &v) { T *tmp; sv_to (sv, tmp); v = tmp; } 367inline void sv_to (SV *sv, refptr<T> &v) { T *tmp; sv_to (sv, tmp); v = tmp; }
364 368
365template<int N> 369template<int N>
501 if (!ext->cb) 505 if (!ext->cb)
502 ext->cb = newAV (); 506 ext->cb = newAV ();
503 507
504 return newRV_inc ((SV *)ext->cb); 508 return newRV_inc ((SV *)ext->cb);
505} 509}
506
507#if 0
508void attachable::clear ()
509{
510 if (self)
511 {
512 // disconnect Perl from C, to avoid crashes
513 sv_unmagic (SvRV ((SV *)self), PERL_MAGIC_ext);
514
515 // clear the perl hash, might or might not be a good idea
516 hv_clear ((HV *)SvRV ((SV *)self));
517
518 SvREFCNT_dec (self);
519 self = 0;
520 }
521
522 if (cb)
523 {
524 SvREFCNT_dec (cb);
525 cb = 0;
526 }
527
528 attach = 0;
529}
530#endif
531 510
532///////////////////////////////////////////////////////////////////////////// 511/////////////////////////////////////////////////////////////////////////////
533 512
534extern "C" int cfperl_initPlugin (const char *iversion, f_plug_api gethooksptr) 513extern "C" int cfperl_initPlugin (const char *iversion, f_plug_api gethooksptr)
535{ 514{
830} 809}
831 810
832///////////////////////////////////////////////////////////////////////////// 811/////////////////////////////////////////////////////////////////////////////
833 812
834void 813void
835maptile::emergency_save () 814cfperl_emergency_save ()
836{ 815{
837 CALL_BEGIN (0); 816 CALL_BEGIN (0);
838 CALL_CALL ("cf::map::emergency_save", G_VOID); 817 CALL_CALL ("cf::emergency_save", G_VOID);
839 CALL_END; 818 CALL_END;
840} 819}
841 820
842maptile * 821maptile *
843maptile::find_sync (const char *path, maptile *origin) 822maptile::find_sync (const char *path, maptile *origin)
844{ 823{
845 CALL_BEGIN (2); 824 CALL_BEGIN (2);
846 CALL_ARG (path); 825 CALL_ARG (path);
847 CALL_ARG (origin); 826 CALL_ARG (origin);
848 CALL_CALL ("cf::map::find_sync", G_SCALAR); 827 CALL_CALL ("cf::map::find_sync", G_SCALAR);
828
829 maptile *retval;
830
831 if (count)
832 sv_to (POPs, retval);
833 else
834 retval = 0;
835
836 CALL_END;
837
838 return retval;
839}
840
841maptile *
842maptile::find_async (const char *path, maptile *origin)
843{
844 CALL_BEGIN (2);
845 CALL_ARG (path);
846 CALL_ARG (origin);
847 CALL_CALL ("cf::map::find_async", G_SCALAR);
849 848
850 maptile *retval; 849 maptile *retval;
851 850
852 if (count) 851 if (count)
853 sv_to (POPs, retval); 852 sv_to (POPs, retval);
906void 905void
907iw::alloc () 906iw::alloc ()
908{ 907{
909 pe = GEventAPI->new_idle (0, 0); 908 pe = GEventAPI->new_idle (0, 0);
910 909
910 WaREENTRANT_off (pe);
911 pe->base.callback = (void *)iw_dispatch; 911 pe->base.callback = (void *)iw_dispatch;
912 pe->base.ext_data = (void *)this; 912 pe->base.ext_data = (void *)this;
913} 913}
914 914
915static void iow_dispatch (pe_event *ev) 915static void iow_dispatch (pe_event *ev)
921void 921void
922iow::alloc () 922iow::alloc ()
923{ 923{
924 pe = GEventAPI->new_io (0, 0); 924 pe = GEventAPI->new_io (0, 0);
925 925
926 WaREENTRANT_off (pe);
926 pe->base.callback = (void *)iow_dispatch; 927 pe->base.callback = (void *)iow_dispatch;
927 pe->base.ext_data = (void *)this; 928 pe->base.ext_data = (void *)this;
928 929
929 pe->fd = -1; 930 pe->fd = -1;
930 pe->poll = 0; 931 pe->poll = 0;
1258 const_iv (FLAG_ACTIVATE_ON_RELEASE) 1259 const_iv (FLAG_ACTIVATE_ON_RELEASE)
1259 const_iv (FLAG_IS_WATER) 1260 const_iv (FLAG_IS_WATER)
1260 const_iv (FLAG_CONTENT_ON_GEN) 1261 const_iv (FLAG_CONTENT_ON_GEN)
1261 const_iv (FLAG_IS_A_TEMPLATE) 1262 const_iv (FLAG_IS_A_TEMPLATE)
1262 const_iv (FLAG_IS_BUILDABLE) 1263 const_iv (FLAG_IS_BUILDABLE)
1264 const_iv (FLAG_DESTROY_ON_DEATH)
1265 const_iv (FLAG_NO_MAP_SAVE)
1263 1266
1264 const_iv (NDI_BLACK) 1267 const_iv (NDI_BLACK)
1265 const_iv (NDI_WHITE) 1268 const_iv (NDI_WHITE)
1266 const_iv (NDI_NAVY) 1269 const_iv (NDI_NAVY)
1267 const_iv (NDI_RED) 1270 const_iv (NDI_RED)
1452 const_iv (ATNR_BLIND) 1455 const_iv (ATNR_BLIND)
1453 const_iv (ATNR_INTERNAL) 1456 const_iv (ATNR_INTERNAL)
1454 const_iv (ATNR_LIFE_STEALING) 1457 const_iv (ATNR_LIFE_STEALING)
1455 const_iv (ATNR_DISEASE) 1458 const_iv (ATNR_DISEASE)
1456 1459
1457 const_iv (MAP_FLUSH)
1458 const_iv (MAP_PLAYER_UNIQUE)
1459 const_iv (MAP_BLOCK)
1460 const_iv (MAP_STYLE)
1461 const_iv (MAP_OVERLAY)
1462
1463 const_iv (MAP_IN_MEMORY) 1460 const_iv (MAP_IN_MEMORY)
1464 const_iv (MAP_SWAPPED) 1461 const_iv (MAP_SWAPPED)
1465 const_iv (MAP_LOADING) 1462 const_iv (MAP_LOADING)
1466 const_iv (MAP_SAVING) 1463 const_iv (MAP_SAVING)
1467 1464
1560} 1557}
1561 1558
1562NV floor (NV x) 1559NV floor (NV x)
1563 1560
1564NV ceil (NV x) 1561NV ceil (NV x)
1562
1563NV rndm (...)
1564 CODE:
1565 switch (items)
1566 {
1567 case 0: RETVAL = rndm (); break;
1568 case 1: RETVAL = rndm (SvUV (ST (0))); break;
1569 case 2: RETVAL = rndm (SvIV (ST (0)), SvIV (ST (1))); break;
1570 default: croak ("cf::rndm requires none, one or two parameters."); break;
1571 }
1572 OUTPUT:
1573 RETVAL
1565 1574
1566void server_tick () 1575void server_tick ()
1567 CODE: 1576 CODE:
1568 runtime = SvNVx (sv_runtime); 1577 runtime = SvNVx (sv_runtime);
1569 server_tick (); 1578 server_tick ();
1616 } 1625 }
1617 OUTPUT: RETVAL 1626 OUTPUT: RETVAL
1618 1627
1619void abort () 1628void abort ()
1620 1629
1630void fork_abort (char *cause = "cf::fork_abort")
1631
1632void cleanup (const char *cause, bool make_core = false)
1633
1621void emergency_save () 1634void emergency_save ()
1635
1636UV sv_2watcher (SV *w)
1637 CODE:
1638 RETVAL = (UV)GEventAPI->sv_2watcher (w);
1639 OUTPUT:
1640 RETVAL
1622 1641
1623void _exit (int status = 0) 1642void _exit (int status = 0)
1624 1643
1625#if _POSIX_MEMLOCK 1644#if _POSIX_MEMLOCK
1626 1645
1715 PPCODE: 1734 PPCODE:
1716 EXTEND (SP, object::mortals.size ()); 1735 EXTEND (SP, object::mortals.size ());
1717 for (AUTODECL (i, object::mortals.begin ()); i != object::mortals.end (); ++i) 1736 for (AUTODECL (i, object::mortals.begin ()); i != object::mortals.end (); ++i)
1718 PUSHs (to_sv (*i)); 1737 PUSHs (to_sv (*i));
1719 1738
1720object *first () 1739int objects_size ()
1721 CODE: 1740 CODE:
1722 RETVAL = object::first; 1741 RETVAL = objects.size ();
1742 OUTPUT: RETVAL
1743
1744object *objects (U32 index)
1745 CODE:
1746 RETVAL = index < objects.size () ? objects [index] : 0;
1747 OUTPUT: RETVAL
1748
1749int actives_size ()
1750 CODE:
1751 RETVAL = actives.size ();
1752 OUTPUT: RETVAL
1753
1754object *actives (U32 index)
1755 CODE:
1756 RETVAL = index < actives.size () ? actives [index] : 0;
1723 OUTPUT: RETVAL 1757 OUTPUT: RETVAL
1724 1758
1725# missing properties 1759# missing properties
1726 1760
1727object *head (object *op) 1761object *head (object *op)
1728 PROTOTYPE: $ 1762 PROTOTYPE: $
1729 CODE: 1763 CODE:
1730 RETVAL = op->head ? op->head : op; 1764 RETVAL = op->head_ ();
1731 OUTPUT: RETVAL 1765 OUTPUT: RETVAL
1732 1766
1733int is_head (object *op) 1767int is_head (object *op)
1734 PROTOTYPE: $ 1768 PROTOTYPE: $
1735 CODE: 1769 CODE:
1736 RETVAL = !op->head; 1770 RETVAL = op->head_ () == op;
1737 OUTPUT: RETVAL 1771 OUTPUT: RETVAL
1738 1772
1739void 1773void
1740inv (object *obj) 1774inv (object *obj)
1741 PROTOTYPE: $ 1775 PROTOTYPE: $
1832 1866
1833void drop (object *who, object *op) 1867void drop (object *who, object *op)
1834 1868
1835void pick_up (object *who, object *op) 1869void pick_up (object *who, object *op)
1836 1870
1837object *cf_object_insert_object (object *op, object *container)
1838
1839object *cf_object_insert_in_ob (object *ob, object *where)
1840
1841int cf_object_teleport (object *op, maptile *map, int x, int y) 1871int cf_object_teleport (object *op, maptile *map, int x, int y)
1842 1872
1843void update_object (object *op, int action) 1873void update_object (object *op, int action)
1844 1874
1845object *cf_create_object_by_name (const char *name) 1875object *cf_create_object_by_name (const char *name)
1963 1993
1964void esrv_update_item (object *op, int what, object *item) 1994void esrv_update_item (object *op, int what, object *item)
1965 C_ARGS: what, op, item 1995 C_ARGS: what, op, item
1966 1996
1967void clear_los (object *op) 1997void clear_los (object *op)
1968
1969int command_teleport (object *op, char *params)
1970 1998
1971int command_summon (object *op, char *params) 1999int command_summon (object *op, char *params)
1972 2000
1973int command_arrest (object *op, char *params) 2001int command_arrest (object *op, char *params)
1974 2002
2117 2145
2118object* cf_map_present_arch_by_name (maptile *map, const char* str, int nx, int ny) 2146object* cf_map_present_arch_by_name (maptile *map, const char* str, int nx, int ny)
2119 C_ARGS: str, map, nx, ny 2147 C_ARGS: str, map, nx, ny
2120 2148
2121void 2149void
2122cf_map_normalise (maptile *map, int x, int y) 2150get_map_flags (maptile *map, int x, int y)
2123 PPCODE: 2151 PPCODE:
2124{ 2152{
2125 maptile *nmap = 0; 2153 maptile *nmap = 0;
2126 I16 nx = 0, ny = 0; 2154 I16 nx = 0, ny = 0;
2127 int flags = get_map_flags (map, &nmap, x, y, &nx, &ny); 2155 int flags = get_map_flags (map, &nmap, x, y, &nx, &ny);
2189 CODE: 2217 CODE:
2190 RETVAL = get_name_of_region_for_map (m); 2218 RETVAL = get_name_of_region_for_map (m);
2191 OUTPUT: RETVAL 2219 OUTPUT: RETVAL
2192 2220
2193# worst xs function of my life 2221# worst xs function of my life
2194maptile * 2222bool
2195_create_random_map (\ 2223_create_random_map (\
2196 char *path,\ 2224 maptile *self,\
2197 char *wallstyle,\ 2225 char *wallstyle,\
2198 char *wall_name,\ 2226 char *wall_name,\
2199 char *floorstyle,\ 2227 char *floorstyle,\
2200 char *monsterstyle,\ 2228 char *monsterstyle,\
2201 char *treasurestyle,\ 2229 char *treasurestyle,\
2205 char *origin_map,\ 2233 char *origin_map,\
2206 char *final_map,\ 2234 char *final_map,\
2207 char *exitstyle,\ 2235 char *exitstyle,\
2208 char *this_map,\ 2236 char *this_map,\
2209 char *exit_on_final_map,\ 2237 char *exit_on_final_map,\
2210 int Xsize,\ 2238 int xsize,\
2211 int Ysize,\ 2239 int ysize,\
2212 int expand2x,\ 2240 int expand2x,\
2213 int layoutoptions1,\ 2241 int layoutoptions1,\
2214 int layoutoptions2,\ 2242 int layoutoptions2,\
2215 int layoutoptions3,\ 2243 int layoutoptions3,\
2216 int symmetry,\ 2244 int symmetry,\
2221 int dungeon_depth,\ 2249 int dungeon_depth,\
2222 int decoroptions,\ 2250 int decoroptions,\
2223 int orientation,\ 2251 int orientation,\
2224 int origin_y,\ 2252 int origin_y,\
2225 int origin_x,\ 2253 int origin_x,\
2226 int random_seed,\ 2254 U32 random_seed,\
2227 val64 total_map_hp,\ 2255 val64 total_map_hp,\
2228 int map_layout_style,\ 2256 int map_layout_style,\
2229 int treasureoptions,\ 2257 int treasureoptions,\
2230 int symmetry_used,\ 2258 int symmetry_used,\
2231 region *region\ 2259 region *region,\
2260 char *custom\
2232) 2261)
2233 CODE: 2262 CODE:
2234{ 2263{
2235 random_map_params rmp; 2264 random_map_params rmp;
2236 2265
2246 assign (rmp.exit_on_final_map, exit_on_final_map); 2275 assign (rmp.exit_on_final_map, exit_on_final_map);
2247 2276
2248 rmp.origin_map = origin_map; 2277 rmp.origin_map = origin_map;
2249 rmp.final_map = final_map; 2278 rmp.final_map = final_map;
2250 rmp.this_map = this_map; 2279 rmp.this_map = this_map;
2251 rmp.Xsize = Xsize; 2280 rmp.xsize = xsize;
2252 rmp.Ysize = Ysize; 2281 rmp.ysize = ysize;
2253 rmp.expand2x = expand2x; 2282 rmp.expand2x = expand2x;
2254 rmp.layoutoptions1 = layoutoptions1; 2283 rmp.layoutoptions1 = layoutoptions1;
2255 rmp.layoutoptions2 = layoutoptions2; 2284 rmp.layoutoptions2 = layoutoptions2;
2256 rmp.layoutoptions3 = layoutoptions3; 2285 rmp.layoutoptions3 = layoutoptions3;
2257 rmp.symmetry = symmetry; 2286 rmp.symmetry = symmetry;
2268 rmp.total_map_hp = total_map_hp; 2297 rmp.total_map_hp = total_map_hp;
2269 rmp.map_layout_style = map_layout_style; 2298 rmp.map_layout_style = map_layout_style;
2270 rmp.treasureoptions = treasureoptions; 2299 rmp.treasureoptions = treasureoptions;
2271 rmp.symmetry_used = symmetry_used; 2300 rmp.symmetry_used = symmetry_used;
2272 rmp.region = region; 2301 rmp.region = region;
2302 rmp.custom = custom;
2273 2303
2274 RETVAL = generate_random_map (path, &rmp); 2304 RETVAL = self->generate_random_map (&rmp);
2275} 2305}
2276 OUTPUT: 2306 OUTPUT:
2277 RETVAL 2307 RETVAL
2278 2308
2279MODULE = cf PACKAGE = cf::arch 2309MODULE = cf PACKAGE = cf::arch

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines