How to Bitwise compare a String

拟墨画扇 提交于 2019-11-30 23:37:45

I found an interesting solution but I am unsure if how logically correct it is because I am not very familiar with how PHP handles string data. I decided to cut away everything and try to do it straight without any hashing or assigning or whatnot and just do bitwise operations on strings. It seemed to work, but I am not sure I can prove my logic true enough.

$key1 = "Access to Black Box";
$key2 = "Managing Black Box";
$key3 = "Nothing too see here";
$key3a = "Nothingg B";
$key3b = "too see";
$glob = "";

$glob = $glob | $key1;
if(($glob & $key1) == $key1){echo "<p>Key one exists in glob: " . $glob;}

$glob = $glob | $key2;
if(($glob & $key2) == $key2){echo "<p>Key one exists in glob: " . $glob;}

if(($glob & $key3) == $key3){echo "<p>Key three exists in glob: " . $glob;}
else{echo "<p>Key three does not exists in glob: " . $glob;}

$glob = $glob | $key3;
if(($glob & $key3) == $key3){echo "<p>Key three exists in glob: " . $glob;}

if(($glob & $key3a) == $key3a){echo "<p>Key three a exists in glob: " . $glob;}

if(($glob & $key3b) == $key3b){echo "<p>Key three b exists in glob: " . $glob;} 
else{echo "<p>Key three b does not exists in glob: " . $glob;}

Outputs:

Key one exists in glob: Access to Black Box
Key two exists in glob: Mcoew{nwobnmckkbox
Key three does not exists in glob: Mcoew{nwobnmckkbox
Key three exists in glob: Oomowoomsooboze
Key three a exists in glob: Oomowoomsooboze
Key three b does not exists in glob: Oomowoomsooboze

So this works, but what would I be looking at collision wise? With key3a I showed that a string that has a combination of characters that match positions with characters in other keys I can get a false positive. But can I get around it with strict rules on the permission strings? Each resource type is named and each resource type has a limited number of associated permissions. So something like "Blog....Write Post", "Blog...Publish Post", "Blog....Moderate Post", "Podcast.......Upload", "Podcast.......Publish" to compensate for the increasing probability of a collision since string length has little impact on PHP's speed.

    1

    The essential thought here is this:

    The other option would be just auto-number the permission strings and have their mask be 2^auto-number. But that would limit the number of permission strings to around 64ish.

    If your permission strings are truly independent of one another, then, obviously, whatever you do, you will need at least 1 bit to store whether or not a permission exists. There's no way around that (it is 1 bit of actual, independent, information).

    A possible solution to your issue would be to encode the permissions in a compact manner (say assign an Int16 to each), and store the list of the user's permission as a binary array of all his permissions. It's ugly-ish, but it would vaguely solve your problem. Depending on the DB you might actually have some kind of array/collection column types available that could do this for you.

      0

      Since each string is unique, why not load them from the database once into a hashtable (or similiar) and cache them for the duration of the user session?

      • Users have a list of permission strings, Groups have a list of permission strings, Users can belong to multiple groups, Groups can belong to multiple groups. To follow the chain of permissions to encapsulate all of the permissions every time the session starts has been causing the first load of the site after login to take forever. And because permissions can change during a session I need a fast way to recalculate permissions to be tested against that can be updated every page load. – Tyson of the Northwest Jun 3 '09 at 16:22
      • ah, I see. Just like windows ACLs – Mitch Wheat Jun 4 '09 at 0:42

      Your Answer

      By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

      Not the answer you're looking for? Browse other questions tagged or ask your own question.

      易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
      该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!