Apply coding rule
[platform/core/connectivity/smartcard-service.git] / common / AccessCondition.cpp
index 86819b0..58e2a73 100644 (file)
@@ -45,35 +45,30 @@ namespace smartcard_service_api
                if (command.getBuffer() == NULL)
                        return false;
 
-               if (listFilters.size() > 0)
-               {
+               if (listFilters.size() > 0) {
                        unsigned int cmd, mask, rule;
                        vector<pair<ByteArray, ByteArray> >::const_iterator item;
 
                        cmd = *(unsigned int *)command.getBuffer();
-                       for (item = listFilters.begin(); item != listFilters.end(); item++)
-                       {
+                       for (item = listFilters.begin(); item != listFilters.end(); item++) {
                                unsigned int *temp1 = NULL;
                                unsigned int *temp2 = NULL;
 
                                temp1 = (unsigned int *)item->second.getBuffer();
                                temp2 = (unsigned int *)item->first.getBuffer();
 
-                               if(temp1 == NULL || temp2 == NULL)
+                               if (temp1 == NULL || temp2 == NULL)
                                        continue;
 
                                mask = *temp1;
                                rule = *temp2;
 
-                               if ((cmd & mask) == rule)
-                               {
+                               if ((cmd & mask) == rule) {
                                        result = true;
                                        break;
                                }
                        }
-               }
-               else
-               {
+               } else {
                        /* no filter entry. if permission is true, all access will be granted, if not, all access will be denied */
                        result = apduRule;
                }
@@ -83,23 +78,19 @@ namespace smartcard_service_api
 
        void AccessRule::printAccessRules() const
        {
-               if (listFilters.size() > 0)
-               {
+               if (listFilters.size() > 0) {
                        vector<pair<ByteArray, ByteArray> >::const_iterator item;
 
                        _DBG("         +---- Granted APDUs");
 
-                       for (item = listFilters.begin(); item != listFilters.end(); item++)
-                       {
-                               _DBG("         +----- APDU : %s, Mask : %s", item->first.toString().c_str(), item->second.toString().c_str());
+                       for (item = listFilters.begin(); item != listFilters.end(); item++) {
+                               _DBG("         +----- APDU: %s, Mask: %s", item->first.toString().c_str(), item->second.toString().c_str());
                        }
-               }
-               else
-               {
-                       _DBG("         +---- APDU Access ALLOW : %s", apduRule ? "ALWAYS" : "NEVER");
+               } else {
+                       _DBG("         +---- APDU Access ALLOW: %s", apduRule ? "ALWAYS": "NEVER");
                }
 
-               _DBG("         +---- NFC  Access ALLOW : %s", nfcRule ? "ALWAYS" : "NEVER");
+               _DBG("         +---- NFC  Access ALLOW: %s", nfcRule ? "ALWAYS": "NEVER");
        }
 
        bool AccessRule::isAuthorizedNFCAccess(void) const
@@ -174,20 +165,16 @@ namespace smartcard_service_api
        {
                _DBG("   +-- Access Condition");
 
-               if (mapRules.size() > 0)
-               {
+               if (mapRules.size() > 0) {
                        map<ByteArray, AccessRule>::const_iterator item;
 
-                       for (item = mapRules.begin(); item != mapRules.end(); item++)
-                       {
+                       for (item = mapRules.begin(); item != mapRules.end(); item++) {
                                ByteArray temp = item->first;
 
-                               _DBG("   +--- hash : %s", (temp == AccessControlList::ALL_DEVICE_APPS) ? "All device applications" : temp.toString().c_str());
+                               _DBG("   +--- hash: %s", (temp == AccessControlList::ALL_DEVICE_APPS) ? "All device applications": temp.toString().c_str());
                                item->second.printAccessRules();
                        }
-               }
-               else
-               {
+               } else {
                        _DBG("   +--- no rule found");
                }
        }